:root {
  --navy: #062147;
  --navy-2: #0a3467;
  --teal: #078f99;
  --teal-2: #0ebac2;
  --sky: #eaf9fb;
  --ink: #10233f;
  --muted: #5e6c82;
  --card: #ffffff;
  --line: rgba(6, 33, 71, 0.12);
  --shadow: 0 24px 80px rgba(6, 33, 71, 0.16);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #f8fcfd;
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.section-pad { padding: 88px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px max(20px, calc((100vw - 1120px) / 2));
  background: rgba(248, 252, 253, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--navy);
}
.brand strong { color: var(--teal); }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  color: #fff;
  box-shadow: 0 10px 30px rgba(7, 143, 153, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.92rem;
}
.nav a:hover { color: var(--teal); }
.nav-cta {
  padding: 10px 16px;
  color: #fff !important;
  background: var(--navy);
  border-radius: 999px;
}
.menu-button {
  display: none;
  border: 0;
  background: var(--navy);
  color: #fff;
  border-radius: 12px;
  font-size: 1.3rem;
  width: 44px;
  height: 44px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding-top: 96px;
  background:
    radial-gradient(circle at 78% 18%, rgba(14, 186, 194, 0.18), transparent 26%),
    linear-gradient(180deg, #fff 0%, #eefbfc 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(7, 143, 153, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 65%, transparent);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.78rem;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(3rem, 7vw, 5.85rem);
  line-height: 0.92;
  letter-spacing: -0.075em;
  margin-bottom: 24px;
  color: var(--navy);
}
h2 {
  font-size: clamp(2rem, 4.8vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  color: var(--navy);
  margin-bottom: 18px;
}
h3 {
  color: var(--navy);
  line-height: 1.12;
  letter-spacing: -0.03em;
}
.lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 680px;
}
.offer-card {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin: 18px 0 26px;
  padding: 18px 22px;
  border-radius: 22px;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  box-shadow: var(--shadow);
}
.price {
  font-size: clamp(3.2rem, 8vw, 5rem);
  font-weight: 900;
  letter-spacing: -0.08em;
  line-height: 0.92;
  padding-right: 20px;
  border-right: 2px solid var(--teal-2);
}
.offer-card strong { display: block; font-size: 1.45rem; line-height: 1.1; }
.offer-card span { color: rgba(255,255,255,0.78); font-weight: 600; }
.hero-actions, .final-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-2));
  color: #fff;
  box-shadow: 0 16px 34px rgba(7, 143, 153, 0.28);
}
.button.secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy);
}
.button.secondary.light {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.22);
}
.button.wide { width: 100%; }
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.trust-row span {
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
  font-size: .86rem;
}
.hero-visual { position: relative; }
.phone-card {
  width: min(420px, 100%);
  margin-left: auto;
  padding: 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: rotate(2deg);
}
.phone-card img { border-radius: 24px; box-shadow: 0 12px 30px rgba(6,33,71,.12); }
.floating-stat {
  position: absolute;
  padding: 14px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(6,33,71,.14);
}
.floating-stat strong { display:block; font-size: 1.55rem; color: var(--teal); line-height: 1; }
.floating-stat span { color: var(--muted); font-weight: 800; font-size: .82rem; }
.stat-one { left: 0; top: 18%; }
.stat-two { right: -18px; bottom: 13%; }

.quick-strip {
  padding: 20px 0;
  background: var(--navy);
  color: #fff;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.quick-grid div {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  border-right: 1px solid rgba(255,255,255,.14);
}
.quick-grid div:last-child { border-right: 0; }
.quick-grid strong { font-size: 2rem; color: var(--teal-2); }
.quick-grid span { font-weight: 800; }

.section-heading {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.08rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.feature-card {
  min-height: 238px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(6,33,71,.06);
}
.icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--sky), #fff);
  font-size: 1.65rem;
}
.feature-card p, .step p, .value-copy p, .consult p, .faq p { color: var(--muted); }

.consult {
  background: linear-gradient(135deg, var(--navy), #05172f);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.consult::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -160px;
  top: -160px;
  border-radius: 50%;
  background: rgba(14,186,194,.16);
}
.consult-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}
.consult h2, .consult p { color: #fff; }
.consult p:not(.eyebrow) { color: rgba(255,255,255,.78); }
.consult-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  backdrop-filter: blur(12px);
}
.consult-card ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: rgba(255,255,255,.88);
  font-weight: 700;
}
.consult-card li { margin-bottom: 12px; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.step {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}
.step span {
  display: inline-block;
  margin-bottom: 26px;
  font-weight: 900;
  font-size: 2.1rem;
  letter-spacing: -0.06em;
  color: var(--teal);
}

.value-section { background: #fff; }
.value-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.check-list { list-style: none; padding: 0; margin: 26px 0 0; }
.check-list li {
  margin-bottom: 12px;
  font-weight: 800;
  color: var(--navy);
}
.check-list li::before {
  content: "✓";
  display: inline-grid;
  place-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: .85rem;
}
.mini-dashboard {
  overflow: hidden;
  border-radius: 28px;
  background: var(--navy);
  box-shadow: var(--shadow);
  color: #fff;
}
.dash-header {
  display: flex;
  gap: 8px;
  padding: 18px;
  background: rgba(255,255,255,.08);
}
.dash-header span { width: 12px; height: 12px; border-radius: 50%; background: var(--teal-2); opacity: .8; }
.dash-body { padding: 24px; }
.dash-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.dash-row:last-child { border-bottom: 0; }
.dash-row em {
  font-style: normal;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(14,186,194,.18);
  color: var(--teal-2);
  font-weight: 900;
  font-size: .8rem;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}
details {
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 20px 22px;
}
summary {
  cursor: pointer;
  color: var(--navy);
  font-weight: 900;
  font-size: 1.05rem;
}
details p { margin: 14px 0 0; }

.final-cta { padding-top: 40px; }
.final-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: 38px;
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(14,186,194,.32), transparent 30%),
    linear-gradient(135deg, var(--navy), #04172e);
  box-shadow: var(--shadow);
}
.final-card h2, .final-card p { color: #fff; }
.final-card p:not(.eyebrow) { color: rgba(255,255,255,.78); margin-bottom: 0; }

.site-footer {
  padding: 26px 0;
  background: #04172e;
  color: rgba(255,255,255,.8);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}
.footer-grid strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
}
.footer-grid span { color: rgba(255,255,255,.62); }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 800;
}
.footer-links a:hover { color: var(--teal-2); }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-grid, .consult-grid, .value-grid { grid-template-columns: 1fr; }
  .phone-card { margin: 20px auto 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .final-card { flex-direction: column; align-items: flex-start; }
  .stat-two { right: 6px; }
}

@media (max-width: 760px) {
  .menu-button { display: inline-grid; place-items: center; }
  .nav {
    position: fixed;
    top: 74px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px; }
  .section-pad { padding: 64px 0; }
  .hero { padding-top: 70px; }
  .quick-grid { grid-template-columns: repeat(2, 1fr); }
  .quick-grid div { border-right: 0; }
  .features-grid { grid-template-columns: 1fr; }
  .offer-card { width: 100%; }
  .price { font-size: 3.5rem; }
  .floating-stat { display: none; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 28px, 1120px); }
  h1 { font-size: 3.15rem; }
  .offer-card { flex-direction: column; align-items: flex-start; }
  .price { border-right: 0; border-bottom: 2px solid var(--teal-2); padding: 0 0 12px; }
  .hero-actions .button, .final-actions .button { width: 100%; }
}
