:root {
  --ink: #102139;
  --ink-soft: #31435b;
  --muted: #647286;
  --line: #d9e1ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --blue: #2056c8;
  --blue-dark: #173f94;
  --green: #0f8b62;
  --green-dark: #0a6b4b;
  --amber: #c77816;
  --radius: 6px;
  --shadow: 0 18px 48px rgba(16, 33, 57, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open,
body.cookie-banner-open {
  overflow-x: hidden;
}

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(32, 86, 200, 0.28);
  outline-offset: 3px;
}

.wrap {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 72px;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--ink);
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-copy {
  display: grid;
  line-height: 1.15;
}

.brand-copy strong {
  font-size: 16px;
}

.brand-copy small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 650;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 680;
}

.nav-links a {
  padding: 8px 0;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--blue);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 750;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 17px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  font-weight: 760;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: var(--blue-dark);
  box-shadow: 0 10px 24px rgba(32, 86, 200, 0.2);
}

.button.primary {
  background: var(--green);
}

.button.primary:hover {
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(15, 139, 98, 0.2);
}

.button.secondary {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}

.button.secondary:hover {
  background: var(--soft);
  box-shadow: none;
}

.button.light {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: #fff;
}

.button.light:hover {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.hero {
  padding: 68px 0 38px;
  background: #fff;
}

.hero-content {
  max-width: 930px;
}

.kicker {
  margin: 0 0 15px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
  line-height: 1.12;
}

h1 {
  max-width: 940px;
  font-size: 56px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

.lead {
  max-width: 780px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 38px 0 0;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.trust-list li {
  padding: 0 22px;
  border-right: 1px solid var(--line);
}

.trust-list li:first-child {
  padding-left: 0;
}

.trust-list li:last-child {
  padding-right: 0;
  border-right: 0;
}

.trust-list strong,
.trust-list span {
  display: block;
}

.trust-list strong {
  font-size: 15px;
}

.trust-list span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.alert-strip {
  background: var(--ink);
  color: #fff;
}

.alert-strip .wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 92px;
  padding-top: 15px;
  padding-bottom: 15px;
}

.alert-label {
  color: #8ee5c1;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.alert-copy strong,
.alert-copy span {
  display: block;
}

.alert-copy strong {
  font-size: 17px;
}

.alert-copy span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.section {
  padding: 72px 0;
}

.section.compact {
  padding: 52px 0;
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  background: var(--ink);
  color: #fff;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 32px;
}

.section-head > div {
  max-width: 760px;
}

.section-head p,
.section-intro {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.section.dark .section-head p,
.section.dark .section-intro {
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.section.dark .eyebrow,
.contact-band .eyebrow {
  color: #8ee5c1;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 18px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.service-card {
  min-width: 0;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.service-card {
  display: flex;
  min-height: 270px;
  flex-direction: column;
}

.service-card.featured {
  border-top: 4px solid var(--green);
  padding-top: 22px;
}

.card h3,
.service-card h3 {
  margin-top: 13px;
}

.card p,
.service-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.service-card .more {
  margin-top: auto;
  padding-top: 22px;
}

.tag,
.status {
  display: inline-block;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 830;
  text-transform: uppercase;
}

.status.monitorizare {
  color: var(--amber);
}

.status.restrictie {
  color: #a33f59;
}

.more,
.source-link {
  display: inline-flex;
  color: var(--blue);
  font-weight: 780;
  text-decoration: none;
}

.more:hover,
.source-link:hover {
  text-decoration: underline;
}

.inline-links {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.inline-links a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.inline-links a:hover {
  text-decoration: underline;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  align-items: start;
  gap: 54px;
}

.simple-list,
.document-list,
.check-list {
  display: grid;
  gap: 11px;
  margin: 21px 0 0;
  padding: 0;
  list-style: none;
}

.simple-list li,
.document-list li,
.check-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-soft);
}

.simple-list li::before,
.document-list li::before,
.check-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.section.dark .simple-list li,
.section.dark .check-list li {
  color: rgba(255, 255, 255, 0.78);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-step {
  min-height: 220px;
  padding: 26px 24px;
  border-right: 1px solid var(--line);
}

.process-step:last-child {
  border-right: 0;
}

.step-number {
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
}

.process-step h3 {
  margin-top: 40px;
}

.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.callout {
  padding: 24px 26px;
  border-left: 4px solid var(--green);
  background: var(--soft);
}

.callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 18px;
}

.callout p {
  margin: 0;
  color: var(--ink-soft);
}

.callout.warning {
  border-left-color: var(--amber);
  background: #fff8ec;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.metric {
  min-height: 132px;
  padding: 22px;
  background: #fff;
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: 18px;
}

.metric span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 14px;
}

.page-hero {
  padding: 58px 0 48px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.page-hero .wrap {
  max-width: 1140px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: 48px;
}

.page-hero .lead {
  max-width: 820px;
}

.page-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 14px;
}

.page-meta strong {
  color: var(--ink);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 20px 34px 20px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 760;
}

.faq-list details p {
  max-width: 820px;
  margin: -5px 0 20px;
  color: var(--muted);
}

.contact-band {
  background: var(--ink);
  color: #fff;
}

.contact-band .wrap {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(380px, 0.72fr);
  align-items: start;
  gap: 56px;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-direct {
  display: grid;
  gap: 8px;
  margin-top: 24px;
}

.contact-direct a {
  width: fit-content;
  color: #fff;
  font-weight: 760;
  text-decoration: none;
}

.contact-form {
  display: grid;
  gap: 13px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 13px;
  font-weight: 720;
}

input,
select,
textarea {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

textarea {
  min-height: 112px;
  resize: vertical;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-message {
  min-height: 22px;
  color: #ffd4dd;
  font-size: 13px;
}

.form-message.ok {
  color: #aaf0d1;
}

.footer {
  padding: 38px 0 26px;
  background: #0b1626;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 36px;
}

.footer strong {
  color: #fff;
}

.footer p {
  max-width: 480px;
}

.footer a,
.footer-link-button {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-link-button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.footer a:hover,
.footer-link-button:hover {
  color: #fff;
  text-decoration: underline;
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.copyright {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 34;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: #168a56;
  color: #fff;
  font-size: 14px;
  font-weight: 820;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(12, 72, 45, 0.25);
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 60;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  max-width: 940px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid #35465e;
  border-radius: var(--radius);
  background: #0b1626;
  color: #fff;
  box-shadow: var(--shadow);
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.cookie-banner a {
  color: #fff;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  min-height: 40px;
  padding: 8px 13px;
}

body.cookie-banner-open .whatsapp-float {
  bottom: 120px;
}

@media (max-width: 980px) {
  .nav {
    grid-template-columns: auto 1fr auto;
    gap: 14px;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-links {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 8px 20px 18px;
    border-bottom: 1px solid var(--line);
    background: #fff;
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-actions {
    display: none;
  }

  .grid-4,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-step:nth-child(2) {
    border-right: 0;
  }

  .process-step:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .split,
  .contact-band .wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: calc(100% - 28px);
  }

  .nav {
    min-height: 66px;
  }

  .brand-copy small {
    display: none;
  }

  .nav-links {
    top: 66px;
  }

  .hero {
    padding: 46px 0 28px;
  }

  h1,
  .page-hero h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .lead {
    font-size: 17px;
  }

  .trust-list,
  .metric-row,
  .grid-3,
  .grid-2,
  .grid-4,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-list {
    gap: 14px;
  }

  .trust-list li,
  .trust-list li:first-child,
  .trust-list li:last-child {
    padding: 0 0 14px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-list li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .alert-strip .wrap {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .alert-strip .button {
    width: fit-content;
  }

  .section {
    padding: 56px 0;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .service-card {
    min-height: 0;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step,
  .process-step:nth-child(2) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .process-step:last-child {
    border-bottom: 0;
  }

  .process-step h3 {
    margin-top: 22px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-band .wrap {
    gap: 30px;
  }

  .contact-form {
    padding: 18px;
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    left: 10px;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  body.cookie-banner-open .whatsapp-float {
    display: none;
  }

  .whatsapp-float {
    display: none;
  }
}

@media (max-width: 420px) {
  h1,
  .page-hero h1 {
    font-size: 34px;
  }

  .hero-actions .button,
  .contact-form .button {
    width: 100%;
  }
}
