:root {
  --ink: #0b1a2e;
  --navy: #142c46;
  --text: #263442;
  --muted: #5c6b78;
  --brand: #087d6e;
  --brand-dark: #05675b;
  --brand-light: #dff7f1;
  --paper: #ffffff;
  --soft: #f3f8f7;
  --line: #d8e4e1;
  --danger: #9a3f38;
  --success: #176b52;
  --shadow: 0 20px 54px rgba(11, 26, 46, .12);
  --radius: 18px;
  --content: 1160px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: "Figtree", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

a { color: var(--brand-dark); }
a:hover { color: var(--ink); }

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

h1, h2, h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 720;
  letter-spacing: -.025em;
  line-height: 1.12;
}

h1 { font-size: clamp(2.45rem, 6vw, 4.7rem); }
h2 { font-size: clamp(1.85rem, 4vw, 3rem); }
h3 { font-size: clamp(1.15rem, 2.1vw, 1.35rem); }

p { margin: 0; }

.container, .wrap {
  width: min(var(--content), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--paper);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }
.anchor-alias { display: block; position: relative; top: -88px; height: 0; visibility: hidden; }

:focus-visible {
  outline: 3px solid #f4b942;
  outline-offset: 3px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--brand-dark);
  font-size: .78rem;
  font-weight: 780;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 2px;
  content: "";
  background: currentColor;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(216, 228, 225, .9);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 4px 18px rgba(11, 26, 46, .04);
}

.nav {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand, .logo {
  flex: 0 0 auto;
  color: var(--ink);
  text-decoration: none;
}

.brand img, .logo img { width: 154px; height: auto; }

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 2.2vw, 30px);
}

.nav-links > a:not(.button) {
  color: var(--text);
  font-size: .94rem;
  font-weight: 650;
  text-decoration: none;
}

.nav-links > a[aria-current="page"] { color: var(--brand-dark); }

.nav-phone {
  white-space: nowrap;
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  min-width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.menu-toggle:not(:has(span)) { width: auto; padding-inline: 13px; font-weight: 720; }

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
  transition: transform .2s ease;
}

.menu-toggle span { position: relative; }
.menu-toggle span::before { position: absolute; transform: translateY(-7px); }
.menu-toggle span::after { position: absolute; transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg); }

.button, .btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 23px;
  border: 2px solid var(--brand);
  border-radius: 999px;
  color: var(--paper);
  background: var(--brand);
  box-shadow: 0 10px 25px rgba(8, 125, 110, .18);
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.button:hover, .btn:hover {
  color: var(--paper);
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.button-secondary, .btn-secondary, .btn-fantome {
  color: var(--ink);
  border-color: #afc3be;
  background: var(--paper);
  box-shadow: none;
}

.button-secondary:hover, .btn-secondary:hover, .btn-fantome:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: var(--soft);
}

.button-small { min-height: 42px; padding: 10px 18px; font-size: .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(70px, 10vw, 126px) 0;
  color: #d9e5ef;
  background:
    radial-gradient(circle at 82% 15%, rgba(8, 125, 110, .32), transparent 34%),
    linear-gradient(135deg, var(--ink), #102b46 72%, #103f50);
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border: 1px solid rgba(223, 247, 241, .16);
  border-radius: 50%;
  content: "";
}

.hero-compact { padding: clamp(60px, 8vw, 94px) 0; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(330px, .78fr);
  gap: clamp(44px, 7vw, 86px);
  align-items: center;
}

.hero h1 { color: var(--paper); }
.hero h1 strong { color: #73e0d0; font-weight: inherit; }
.hero .eyebrow { color: #73e0d0; }
.hero .price-card .eyebrow, .hero .form-card .eyebrow { color: var(--brand-dark); }

.hero-lead {
  max-width: 680px;
  margin-top: 24px;
  color: #c6d5e1;
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 32px;
}

.hero .button-secondary {
  color: var(--paper);
  border-color: rgba(255, 255, 255, .6);
  background: transparent;
}

.hero .button-secondary:hover {
  color: var(--ink);
  border-color: var(--paper);
  background: var(--paper);
}

.hero-note { margin-top: 18px; color: #aebfcd; font-size: .91rem; }

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.trust-line {
  margin-top: 22px;
  color: #dce8f0;
  font-size: .94rem;
  font-weight: 650;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 999px;
  color: #eaf5f3;
  background: rgba(255, 255, 255, .06);
  font-size: .88rem;
  font-weight: 650;
}

.hero-card, .form-card, .price-card {
  position: relative;
  color: var(--text);
  border: 1px solid rgba(216, 228, 225, .95);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-card, .form-card { padding: clamp(24px, 4vw, 36px); }
.hero-card h2, .form-card h2 { font-size: clamp(1.45rem, 3vw, 1.95rem); }
.hero-card > p, .form-card > p { margin-top: 10px; color: var(--muted); }

.mini-flow {
  display: grid;
  gap: 15px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.mini-flow li { display: grid; grid-template-columns: 32px 1fr; gap: 12px; align-items: start; }
.mini-flow span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-weight: 800;
}

.section { padding: clamp(70px, 9vw, 112px) 0; }
.section-alt { background: var(--soft); }
.section-tight { padding: clamp(50px, 7vw, 76px) 0; }

.section-heading { max-width: 730px; margin-bottom: 42px; }
.section-heading > p { margin-top: 17px; color: var(--muted); font-size: 1.07rem; }
.section-heading.center { margin-inline: auto; text-align: center; }

.grid { display: grid; gap: 22px; }
.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 {
  padding: clamp(24px, 3.5vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(11, 26, 46, .055);
}

.card h2 { font-size: clamp(1.35rem, 2.7vw, 1.7rem); }
.card h3 + p, .card h2 + p { margin-top: 12px; color: var(--muted); }
.card p + p { margin-top: 12px; }
.card-link { display: inline-flex; margin-top: 18px; font-weight: 760; }
.card-accent { border-top: 4px solid var(--brand); }
.narrow { max-width: 880px; }
.centered-link, .more-link { margin-top: 28px; text-align: center; }
.text-link, .more-link a {
  display: inline-flex;
  margin-top: 20px;
  font-weight: 760;
}

.icon-box {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 13px;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-size: 1.25rem;
  font-weight: 850;
}

.check-list, .plain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li { position: relative; padding-left: 30px; }
.compact-list { gap: 8px; }
.check-list li::before {
  position: absolute;
  top: .1em;
  left: 0;
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.steps { counter-reset: step; }
.steps .card { position: relative; padding-top: 74px; }
.steps .card::before {
  position: absolute;
  top: 27px;
  left: 30px;
  color: var(--brand-dark);
  content: "0" counter(step);
  counter-increment: step;
  font-size: .82rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list .card { position: relative; padding-top: 74px; }
.steps-list .step-number, .process .step-number, .card > .step-number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin: 0 0 17px;
  border-radius: 50%;
  color: var(--brand-dark);
  background: var(--brand-light);
  font-size: .87rem;
  font-weight: 850;
}
.steps-list .step-number { position: absolute; top: 25px; left: 30px; margin: 0; }
.process { margin: 0; padding: 0; }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .82fr);
  gap: clamp(34px, 6vw, 72px);
  align-items: center;
}

.price-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  gap: clamp(30px, 6vw, 72px);
  align-items: center;
}

.price-card { padding: clamp(28px, 5vw, 44px); }
.price-label {
  color: var(--brand-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.price { margin: 15px 0 8px; color: var(--muted); }
.price strong { color: var(--ink); font-size: clamp(2.6rem, 6vw, 4.2rem); line-height: 1; }
.price-tag { display: flex; align-items: baseline; gap: 7px; margin: 18px 0 6px; }
.price-tag strong { color: var(--ink); font-size: clamp(2.7rem, 6vw, 4.5rem); line-height: 1; }
.price-tag span { color: var(--muted); }
.price-card .button { width: 100%; margin-top: 26px; }
.button-block { width: 100%; }
.fine-print { margin-top: 14px; color: var(--muted); font-size: .86rem; }

.checklist-panel {
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(11, 26, 46, .055);
}

.notice {
  padding: 18px 20px;
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  color: var(--text);
  background: var(--brand-light);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 20px;
  padding: 0;
  color: var(--muted);
  font-size: .88rem;
  list-style: none;
}

.breadcrumb a { color: var(--brand-dark); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumb ol li + li::before { margin-right: 8px; color: var(--muted); content: "/"; }
.hero .breadcrumb { color: #b8c9d5; }
.hero .breadcrumb a { color: #e0eeec; }

.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 14px; }
.comparison-table { width: 100%; min-width: 660px; border-collapse: collapse; background: var(--paper); }
.comparison-table th, .comparison-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); text-align: left; }
.comparison-table th { color: var(--ink); background: var(--soft); }
.comparison-table tr:last-child td { border-bottom: 0; }
.comparison-table [data-highlight] { color: var(--ink); background: var(--brand-light); font-weight: 700; }

.sector-links { display: flex; flex-wrap: wrap; gap: 11px; }
.sector-links a {
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: var(--paper);
  font-weight: 650;
  text-decoration: none;
}
.sector-links a:hover { border-color: var(--brand); color: var(--brand-dark); }

.faq { display: grid; gap: 12px; max-width: 860px; margin-inline: auto; }
.faq details {
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--paper);
}
.faq summary {
  position: relative;
  padding: 20px 54px 20px 22px;
  color: var(--ink);
  font-weight: 730;
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  content: "+";
  color: var(--brand-dark);
  font-size: 1.5rem;
  transform: translateY(-50%);
}
.faq details[open] summary::after { content: "−"; }
.faq details p, .faq details .answer { padding: 0 22px 22px; color: var(--muted); }

.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 17px; }
.field { display: grid; gap: 7px; }
.field-wide { grid-column: 1 / -1; }
.field label { color: var(--ink); font-size: .93rem; font-weight: 700; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #aebdb9;
  border-radius: 9px;
  color: var(--text);
  background: var(--paper);
}
.field textarea { min-height: 112px; resize: vertical; }
.field input[aria-invalid="true"], .field select[aria-invalid="true"] { border-color: var(--danger); box-shadow: 0 0 0 1px var(--danger); }
.required { color: var(--danger); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.form-card .button { width: 100%; margin-top: 20px; }
.form-help { margin-top: 13px; color: var(--muted); font-size: .84rem; }
.form-status { display: none; margin-top: 17px; padding: 13px 15px; border-radius: 9px; }
.form-status.is-visible { display: block; }
.form-status.is-error { color: #7d2f29; border: 1px solid #d9aaa6; background: #fff1f0; }
.form-status.is-success { color: #125b46; border: 1px solid #9dd4c3; background: #e9f8f2; }

.cta-band {
  padding: clamp(50px, 7vw, 76px) 0;
  color: #d9e5ef;
  background: var(--ink);
}
.cta-band-grid { display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.cta-band h2 { max-width: 700px; color: var(--paper); }
.cta-band p { max-width: 660px; margin-top: 12px; color: #b9c9d5; }
.cta-band .eyebrow, .final-cta .eyebrow { color: #73e0d0; }

.final-cta {
  color: #d9e5ef;
  background: var(--ink);
  text-align: center;
}
.final-cta h2 { color: var(--paper); }
.final-cta p:not(.eyebrow) { margin-top: 14px; color: #c2d0dc; }
.final-cta .hero-actions { justify-content: center; }
.final-cta .button-secondary { color: var(--paper); border-color: #9fb2c0; background: transparent; }
.final-cta .button-secondary:hover { color: var(--ink); background: var(--paper); }

.site-footer { padding: 58px 0 92px; color: #aebfcd; background: #071422; }
.footer-grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 38px; }
.site-footer .brand img, .site-footer .logo img { width: 150px; }
.footer-brand { display: inline-flex; margin-bottom: 15px; }
.site-footer h2, .site-footer h3 { margin-bottom: 14px; color: var(--paper); font-size: 1rem; letter-spacing: 0; }
.site-footer p { max-width: 330px; }
.site-footer ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.site-footer a { color: #c7d5df; }
.footer-grid > div > a:not(.brand):not(.footer-brand) { display: block; margin-top: 8px; }
.footer-title { color: var(--paper); }
.footer-bottom { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .12); font-size: .86rem; }

.mobile-actions { display: none; }

@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 79px 0 auto;
    max-height: calc(100vh - 79px);
    display: none;
    align-items: stretch;
    padding: 22px 20px 30px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    overflow-y: auto;
  }
  .nav-links.is-open { display: grid; }
  .nav-links > a { min-height: 46px; display: flex; align-items: center; }
  .nav-links .button { justify-content: center; }
  .hero-grid, .price-layout, .split { grid-template-columns: 1fr; }
  .hero-card { max-width: 650px; }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  body { font-size: 16px; padding-bottom: 64px; }
  .container, .wrap { width: min(var(--content), calc(100% - 30px)); }
  .nav { min-height: 68px; }
  .brand img, .logo img { width: 132px; }
  .nav-links { inset-block-start: 69px; max-height: calc(100vh - 69px); }
  .hero { padding-top: 62px; }
  .hero-grid { gap: 38px; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .field-wide { grid-column: auto; }
  .cta-band-grid { align-items: stretch; flex-direction: column; }
  .cta-band .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .mobile-actions {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 8px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 -8px 24px rgba(11, 26, 46, .12);
  }
  .mobile-actions a {
    min-height: 48px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--ink);
    font-weight: 790;
    text-decoration: none;
  }
  .mobile-actions a:last-child { color: var(--paper); background: var(--brand); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

@media print {
  .site-header, .mobile-actions, .cta-band { display: none !important; }
  body { color: #000; background: #fff; }
  .hero { padding: 24px 0; color: #000; background: #fff; }
  .hero h1 { color: #000; }
  .card, .hero-card, .price-card { box-shadow: none; }
}
