:root {
  --blue: #1E3A5F;
  --dark: #0F253D;
  --teal: #006F78;
  --sand: #F7F3EA;
  --white: #FFFFFF;
  --ink: #243447;
  --muted: #6B7787;
  --coral: #EB5B60;
  --coral-dark: #B44A4F;
  --ochre: #D88A3D;
  --ochre-dark: #A6632A;
  --sage: #4F7F5A;
  --sage-dark: #466F50;
  --line: rgba(30, 58, 95, .12);
  --shadow: 0 24px 70px rgba(15, 37, 61, .10);
  --shadow-strong: 0 35px 100px rgba(15, 37, 61, .20);
  --radius: 32px;
  --radius-lg: 56px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

p,
ul,
ol,
h1,
h2,
h3 {
  margin: 0;
}

ul,
ol {
  padding: 0;
}

::selection {
  background: rgba(235, 91, 96, .25);
}

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

.navbar {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  color: var(--white);
  transition: background .25s ease, border .25s ease, box-shadow .25s ease;
}

.navbar.scrolled,
.navbar.open {
  background: rgba(15, 37, 61, .94);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 50px rgba(15, 37, 61, .20);
}

.nav-inner {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.04em;
  white-space: nowrap;
}

.logo span {
  color: var(--coral);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: .92rem;
  font-weight: 800;
  color: rgba(255, 255, 255, .76);
}

.nav-links a,
.mobile-menu a,
.footer a {
  transition: color .18s ease, opacity .18s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.mobile-menu a:hover,
.footer a:hover {
  color: var(--white);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  color: var(--white);
  cursor: pointer;
}

.menu-button span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .22s ease, opacity .22s ease;
}

.navbar.open .menu-button span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar.open .menu-button span:nth-child(2) {
  opacity: 0;
}

.navbar.open .menu-button span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 22px;
  background: rgba(15, 37, 61, .98);
  box-shadow: var(--shadow-strong);
}

.mobile-menu.open {
  display: grid;
  gap: 8px;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: rgba(255, 255, 255, .08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 900;
  line-height: 1.1;
  text-align: center;
  transition: transform .22s ease, background .22s ease, color .22s ease, border .22s ease, box-shadow .22s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--coral-dark);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(180, 74, 79, .24);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--coral);
  box-shadow: 0 18px 38px rgba(180, 74, 79, .32);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, .22);
  background: rgba(255, 255, 255, .08);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(255, 255, 255, .14);
}

.btn-outline {
  color: var(--blue);
  border-color: rgba(30, 58, 95, .18);
  background: rgba(30, 58, 95, .04);
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--blue);
  color: var(--white);
}

.full {
  width: 100%;
}

.section {
  padding-block: clamp(76px, 9vw, 132px);
  position: relative;
}

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

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

.section-dark {
  background: var(--dark);
  color: var(--white);
}

.soft-grid {
  background-image:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: 120px 80px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(0, 111, 120, .32), transparent 34%),
    radial-gradient(circle at 88% 10%, rgba(216, 138, 61, .15), transparent 28%),
    linear-gradient(135deg, rgba(15, 37, 61, 1), rgba(15, 37, 61, .88));
}

.shape {
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.shape-1 {
  right: -180px;
  top: 120px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 255, 255, .14);
}

.shape-2 {
  right: 120px;
  bottom: 80px;
  width: 230px;
  height: 230px;
  background: rgba(79, 127, 90, .18);
  filter: blur(60px);
}

.shape-3 {
  left: -120px;
  bottom: -120px;
  width: 360px;
  height: 360px;
  background: rgba(235, 91, 96, .12);
  filter: blur(70px);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, .72fr);
  align-items: center;
  gap: clamp(36px, 7vw, 86px);
}

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

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--teal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .20em;
  text-transform: uppercase;
}

.eyebrow {
  color: rgba(255, 255, 255, .86);
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
}

h1,
h2,
h3 {
  font-family: Manrope, Inter, sans-serif;
  margin: 0;
  font-weight: 900;
  letter-spacing: -.055em;
}

h1 {
  max-width: 920px;
  color: var(--white);
  font-size: clamp(2.2rem, 4.6vw, 4.4rem);
  line-height: .92;
  text-transform: uppercase;
}

h2 {
  max-width: 940px;
  color: var(--blue);
  font-size: clamp(1.65rem, 3.2vw, 2.9rem);
  line-height: .96;
}

.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

h3 {
  color: var(--blue);
  font-size: clamp(1.05rem, 1.35vw, 1.35rem);
  line-height: 1.04;
}

.hero-text,
.lead {
  margin-top: 24px;
  color: rgba(36, 52, 71, .76);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.82;
}

.hero-text {
  max-width: 740px;
  color: rgba(255, 255, 255, .78);
  font-size: clamp(1.08rem, 1.5vw, 1.28rem);
}

.lead.light {
  color: rgba(255, 255, 255, .74);
}

.hero-actions,
.cta-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-proof span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .10);
  font-weight: 800;
}

.hero-panel {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-strong);
}

.panel-topline {
  padding: 10px 12px 18px;
  color: rgba(255, 255, 255, .74);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.panel-card {
  padding: 30px;
  border-radius: 40px;
  background: var(--white);
  color: var(--ink);
}

.panel-icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--coral-dark);
  font-weight: 900;
}

.panel-card h2 {
  color: var(--blue);
  font-size: clamp(1.75rem, 3vw, 3rem);
}

.panel-card p {
  margin-top: 20px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.7;
}

.panel-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.mini-card {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  color: var(--ink);
}

.mini-card strong {
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.1rem;
}

.mini-card span {
  color: rgba(36, 52, 71, .66);
  font-size: .92rem;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(34px, 7vw, 82px);
}

.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
}

.section-head {
  max-width: 930px;
}

.problem-list {
  display: grid;
  gap: 14px;
}

.problem,
.trust-card,
.service,
.cost-card,
.step,
.result,
.offer,
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.problem {
  padding: 20px 24px;
  color: var(--blue);
  font-weight: 900;
}

.cards-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-card {
  padding: 28px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
}

.trust-card p {
  margin-top: 18px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.72;
}

.trust-icon {
  margin-bottom: 38px;
  color: var(--coral-dark);
  font-size: 2rem;
  line-height: 1;
}

.teal {
  color: var(--teal) !important;
}

.sage,
.sage-label {
  color: var(--sage-dark) !important;
}

.ochre {
  color: var(--ochre-dark) !important;
}

.coral {
  color: var(--coral) !important;
}

.service-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.service {
  min-height: 260px;
  padding: 24px;
  background: rgba(255, 255, 255, .94);
  transition: transform .25s ease, box-shadow .25s ease, border .25s ease;
}

.service:hover,
.offer:hover,
.trust-card:hover,
.result:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-strong);
}

.service span,
.step span {
  color: var(--teal);
  font-weight: 900;
  font-size: .84rem;
  letter-spacing: .10em;
}

.service h3 {
  margin-top: 42px;
  color: var(--blue);
}

.service p,
.step p,
.result p,
.offer li,
.faq p {
  margin-top: 16px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.72;
}

.comparison-card {
  padding: clamp(26px, 4vw, 46px);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
}

.comparison-grid {
  display: grid;
  gap: 18px;
}

.cost-card {
  padding: 28px;
}

.cost-card-dark {
  background: var(--dark);
  color: var(--white);
  border-color: rgba(255, 255, 255, .10);
}

.cost-card-dark h3,
.cost-card-dark li {
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--ochre-dark);
  color: var(--white);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.badge-light {
  background: rgba(255, 255, 255, .12);
}

.badge-reco {
  background: var(--coral-dark);
}

.cost-card h3 {
  margin-top: 22px;
  font-size: clamp(1.16rem, 1.55vw, 1.55rem);
}

.cost-card ul,
.offer ul {
  margin-top: 24px;
  display: grid;
  gap: 12px;
  list-style: none;
}

.cost-card li,
.offer li {
  position: relative;
  padding-left: 24px;
}

.cost-card li::before,
.offer li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--coral-dark);
}

.cost-card-dark li::before {
  background: var(--coral);
}

.steps {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.step {
  min-height: 230px;
  padding: 24px;
  box-shadow: none;
}

.step strong {
  display: block;
  margin-top: 36px;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.24rem;
  line-height: 1.04;
}

.result-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.result {
  min-height: 230px;
  padding: 28px;
  box-shadow: none;
}

.result h3 {
  color: var(--sage-dark);
  font-size: clamp(1.28rem, 2vw, 1.85rem);
}

.offers {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.offer {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px;
  overflow: hidden;
}

.offer::after {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: rgba(0, 111, 120, .08);
}

.offer-highlight {
  border: 2px solid var(--coral-dark);
  transform: translateY(-12px);
  box-shadow: var(--shadow-strong);
}

.offer h3 {
  margin-top: 28px;
  position: relative;
  z-index: 1;
  font-size: clamp(1.22rem, 1.75vw, 1.65rem);
}

.offer-description {
  margin-top: 18px;
  color: rgba(36, 52, 71, .72);
  line-height: 1.7;
}

.price {
  margin-top: 24px;
  color: var(--blue);
  font-family: Manrope, Inter, system-ui, sans-serif;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  line-height: 1.05;
  letter-spacing: -.03em;
}

.price-main {
  white-space: nowrap;
  font-size: clamp(1.65rem, 2.1vw, 2.15rem);
  font-weight: 900;
}

.price-prefix {
  flex-basis: 100%;
  color: var(--muted);
  font-family: Inter, system-ui, sans-serif;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: 0;
}

.price-period {
  color: rgba(36, 52, 71, .58);
  font-family: Inter, system-ui, sans-serif;
  font-size: .9rem;
  letter-spacing: 0;
  font-weight: 800;
  white-space: nowrap;
}

.pricing-note {
  max-width: 760px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.7;
  text-align: center;
}

.offer .btn {
  margin-top: auto;
}

.faq-list {
  margin-top: 48px;
  display: grid;
  gap: 14px;
}

.faq {
  padding: 22px 26px;
  background: var(--sand);
  box-shadow: none;
}

.faq summary {
  cursor: pointer;
  color: var(--blue);
  font-family: Manrope, Inter, sans-serif;
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: -.025em;
}

.faq summary::marker {
  color: var(--coral-dark);
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 7vw, 78px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 86% 20%, rgba(235, 91, 96, .22), transparent 28%),
    linear-gradient(135deg, var(--blue), var(--dark));
  box-shadow: var(--shadow-strong);
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p:not(.section-label) {
  max-width: 780px;
  margin-top: 22px;
  color: rgba(255, 255, 255, .76);
  font-size: 1.12rem;
  line-height: 1.8;
}

.contact-line {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-line a,
.contact-line span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .84);
  border: 1px solid rgba(255, 255, 255, .12);
  font-weight: 800;
}

.signature {
  font-family: Manrope, Inter, sans-serif;
  font-weight: 900;
  letter-spacing: -.03em;
}

.footer {
  padding-block: 48px;
  background: var(--dark);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 34px;
}

.footer p,
.footer a {
  color: rgba(255, 255, 255, .68);
  line-height: 1.7;
}

.footer strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
}

.footer a {
  display: block;
  margin-top: 8px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.22, 1, .36, 1), transform .75s cubic-bezier(.22, 1, .36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: .12s;
}


.legal-page .navbar {
  position: sticky;
  top: 0;
}

.legal-hero {
  min-height: 42vh;
  padding-top: 120px;
}

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 980px;
}

.legal-block {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(24px, 4vw, 42px);
  box-shadow: var(--shadow);
}

.legal-block h2 {
  font-size: clamp(1.28rem, 2vw, 1.85rem);
  margin-bottom: 20px;
}

.legal-block p {
  color: rgba(36, 52, 71, .78);
  line-height: 1.75;
}

.legal-block p + p {
  margin-top: 10px;
}

.legal-block a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1120px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: inline-flex;
  }

  .hero-grid,
  .split,
  .reverse {
    grid-template-columns: 1fr;
  }

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

  .hero-panel {
    max-width: 660px;
  }

  .cards-4,
  .service-grid,
  .steps,
  .result-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .offer-highlight {
    transform: none;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .nav-inner {
    height: 72px;
  }

  .logo {
    font-size: 1.18rem;
  }

  .hero {
    padding-block: 104px 62px;
  }

  h1 {
    font-size: clamp(1.78rem, 8.6vw, 2.65rem);
  }

  h2 {
    font-size: clamp(1.42rem, 6.8vw, 2rem);
  }

  .price-main {
    font-size: clamp(1.55rem, 8vw, 1.95rem);
  }

  .price-period {
    font-size: .82rem;
  }

  .hero-actions,
  .cta-actions,
  .contact-line {
    align-items: stretch;
    flex-direction: column;
  }

  .btn,
  .contact-line a,
  .contact-line span {
    width: 100%;
  }

  .panel-grid,
  .cards-4,
  .service-grid,
  .steps,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .panel-card,
  .cta-box {
    border-radius: 30px;
  }

  .section {
    padding-block: 68px;
  }

  .trust-card,
  .service,
  .step,
  .result,
  .offer,
  .comparison-card,
  .cost-card {
    border-radius: 24px;
  }

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