:root {
  --bg: #f6f9fc;
  --surface: rgba(255,255,255,0.82);
  --text: #0f172a;
  --muted: #5b6473;
  --primary: #0ea5e9;
  --primary-2: #4f46e5;
  --accent: #06b6d4;
  --shadow: 0 20px 60px rgba(15, 23, 42, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.page-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -2;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: 0.65;
}

.orb-1 {
  width: 360px;
  height: 360px;
  left: -100px;
  top: -70px;
  background: #b6ecff;
}

.orb-2 {
  width: 360px;
  height: 360px;
  right: -90px;
  top: 120px;
  background: #c9d2ff;
}

.orb-3 {
  width: 420px;
  height: 420px;
  left: 50%;
  bottom: -170px;
  transform: translateX(-50%);
  background: #d9fbff;
  opacity: 0.5;
}

.container {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-2));
  box-shadow: 0 18px 40px rgba(14, 165, 233, 0.22);
  font-size: 20px;
  font-weight: 800;
}

.eyebrow {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #64748b;
  font-weight: 700;
  margin-bottom: 4px;
}

.brand-subtitle {
  font-size: 14px;
  color: #0f172a;
  font-weight: 600;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 16px;
  border-radius: 999px;
  background: #eef9ff;
  color: #0369a1;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-image-pill {
  display: inline-flex;
  background: rgba(255,255,255,0.14);
  color: white;
  padding: 10px 14px;
  margin-bottom: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 18px 40px rgba(79, 70, 229, 0.18);
}

.btn-secondary {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(14, 165, 233, 0.18);
  color: var(--text);
}

.btn-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 14px;
}

.desktop-only { display: flex; }
.mobile-only { display: none; }

.hero {
  padding: 42px 0 26px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 110px);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.84);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.06);
  color: #0369a1;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 18px;
}

h1, h2, h3, h4, p { margin: 0; }

.hero-title {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  max-width: 780px;
}

.hero-text {
  margin-top: 20px;
  max-width: 630px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-buttons {
  margin-top: 32px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.stats-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 700px;
}

.glass-card {
  background: var(--surface);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.stat-card {
  padding: 22px;
  border-radius: var(--radius-md);
}

.stat-card strong {
  display: block;
  font-size: 30px;
  letter-spacing: -0.04em;
  margin-bottom: 6px;
}

.stat-card span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-visual { position: relative; }

.hero-stack {
  position: relative;
  display: grid;
  gap: 18px;
}

.feature-image-card {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
}

.feature-image-card .image-wrap {
  height: 330px;
  position: relative;
}

.feature-image-card img,
.image-card img,
.plan-card img,
.testimonial-image img,
.journey-visual img {
  height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.78), rgba(15, 23, 42, 0.15), transparent);
}

.image-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: white;
}

.image-caption h3 {
  font-size: 32px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 10px;
}

.image-caption p {
  max-width: 460px;
  color: rgba(255,255,255,0.84);
  font-size: 15px;
  line-height: 1.7;
}

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

.mini-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.mini-card.gradient {
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-2));
  color: white;
}

.icon-box {
  width: 50px;
  height: 50px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 20px;
  font-weight: 700;
  background: #e0f2fe;
  color: #0369a1;
}

.gradient .icon-box {
  background: rgba(255,255,255,0.16);
  color: white;
  backdrop-filter: blur(10px);
}

.mini-card .label {
  color: #64748b;
  font-size: 14px;
  margin-bottom: 8px;
}

.mini-card.gradient .label,
.mini-card.gradient .muted-light {
  color: rgba(255,255,255,0.84);
}

.mini-card strong {
  display: block;
  font-size: 34px;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}

.mini-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

.section { padding: 44px 0; }
.section-sm { padding-top: 18px; }

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 32px;
}

.section-heading .eyebrow {
  color: #0284c7;
  margin-bottom: 14px;
}

.section-heading h2,
.section-heading h3 {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.85;
}

.testimonial-card {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.testimonial-image { min-height: 320px; }

.testimonial-content {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stars {
  color: #f59e0b;
  letter-spacing: 0.25em;
  font-size: 20px;
  margin-bottom: 18px;
}

.quote {
  font-size: 24px;
  line-height: 1.8;
  color: #334155;
  font-style: italic;
}

.quote-author {
  margin-top: 18px;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
}

.plans-grid,
.contact-grid,
.benefits-grid,
.reasons-grid {
  display: grid;
  gap: 20px;
}

.plans-grid { grid-template-columns: repeat(3, 1fr); }
.contact-grid { grid-template-columns: repeat(3, 1fr); }
.benefits-grid { grid-template-columns: repeat(3, 1fr); }
.reasons-grid { grid-template-columns: repeat(3, 1fr); }

.plan-card,
.contact-card,
.benefit-card,
.service-card {
  overflow: hidden;
  border-radius: 28px;
}

.plan-card .image-card { height: 210px; overflow: hidden; }
.plan-card img { transition: transform 0.5s ease; }
.plan-card:hover img { transform: scale(1.05); }

.card-body { padding: 28px; }

.card-title {
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.card-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.journey-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.journey-visual {
  overflow: hidden;
  border-radius: var(--radius-xl);
  position: relative;
  min-height: 480px;
  box-shadow: 0 25px 70px rgba(15, 23, 42, 0.14);
}

.journey-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: white;
}

.journey-caption h3 {
  font-size: 38px;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-top: 10px;
}

.service-list {
  display: grid;
  gap: 18px;
}

.service-card {
  display: grid;
  grid-template-columns: 190px 1fr;
}

.service-card .thumb {
  min-height: 100%;
}

.service-card .thumb img {
  height: 100%;
  object-fit: cover;
}

.service-card .card-body {
  padding: 24px;
}

.benefit-card .card-body,
.contact-card .card-body {
  padding: 34px 28px;
}

.benefit-card .icon-box,
.contact-card .icon-box {
  margin-bottom: 18px;
}

.reasons-wrap {
  padding: 60px 34px;
  border-radius: 36px;
  background: linear-gradient(135deg, var(--primary), var(--accent), var(--primary-2));
  color: white;
  box-shadow: 0 28px 70px rgba(14, 165, 233, 0.22);
}

.reasons-heading {
  margin-bottom: 28px;
}

.reasons-wrap .section-heading h3,
.reasons-wrap .section-heading p,
.reasons-wrap .section-heading .eyebrow {
  color: white;
}

.reason-chip {
  padding: 18px 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.6;
}

.contact-section {
  border-top: 1px solid rgba(148,163,184,0.18);
  background: rgba(255,255,255,0.45);
  backdrop-filter: blur(10px);
}

.contact-card { text-align: center; }

.contact-card .icon-box {
  margin-left: auto;
  margin-right: auto;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
}

.footer {
  background: #020617;
  color: #cbd5e1;
  padding-top: 42px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 36px;
}

.footer-title {
  color: white;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 14px;
}

.footer p,
.footer a {
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.9;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  padding: 16px 0 22px;
  font-size: 13px;
  color: #64748b;
}

.reveal,
.hero-copy > *,
.hero-visual,
.float-card {
  will-change: transform, opacity;
}

/* MOBILE FULLSCREEN POPUP */
.mobile-ad-popup {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 9999;
}

.mobile-ad-popup.active {
  display: flex;
}

.mobile-ad-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 26px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.35);
  transform: scale(0.85);
  opacity: 0;
  position: relative;
}

.mobile-ad-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: none;
  background: rgba(0,0,0,0.06);
  cursor: pointer;
  font-size: 16px;
}

.mobile-ad-inner h2 {
  font-size: 26px;
  line-height: 1.2;
  margin-bottom: 12px;
  color: #0f172a;
}

.mobile-ad-inner p {
  font-size: 14px;
  color: #5b6473;
  line-height: 1.7;
  margin-bottom: 22px;
}

.mobile-ad-badge {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef9ff;
  color: #0369a1;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

.mobile-ad-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, #0ea5e9, #4f46e5);
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25);
}

@media (max-width: 1100px) {
  .hero-grid,
  .journey-grid,
  .testimonial-card {
    grid-template-columns: 1fr;
  }

  .hero-grid { min-height: auto; }
  .plans-grid,
  .benefits-grid,
  .contact-grid,
  .reasons-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline-flex; }

  .header-inner {
    min-height: 68px;
    padding: 10px 0;
  }

  .brand {
    flex: 1;
    min-width: 0;
  }

  .brand-mark {
    flex-shrink: 0;
  }

  .eyebrow,
  .brand-subtitle {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .header .btn-small.mobile-only {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .hero { padding-top: 26px; }
  .hero-grid { gap: 30px; }
  .stats-grid,
  .plans-grid,
  .benefits-grid,
  .contact-grid,
  .reasons-grid,
  .mini-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .service-card { grid-template-columns: 1fr; }
  .journey-visual { min-height: 360px; }
  .feature-image-card .image-wrap { height: 280px; }
  .image-caption h3 { font-size: 28px; }
  .journey-caption h3 { font-size: 30px; }
  .section { padding: 30px 0; }
  .section-heading h2,
  .section-heading h3 { font-size: 34px; }
  .quote { font-size: 20px; }
  .testimonial-content { padding: 28px 22px; }
  .reasons-wrap { padding: 38px 20px; }
}

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 24px));
    padding: 0 12px;
  }

  .header {
    background: rgba(255,255,255,0.95);
  }

  .header-inner {
    min-height: 64px;
    gap: 8px;
    padding: 8px 0;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    font-size: 16px;
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.18);
  }

  .brand {
    gap: 8px;
    flex: 1;
    min-width: 0;
  }

  .eyebrow {
    font-size: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 2px;
  }

  .brand-subtitle {
    display: none;
  }

  .header .btn-small.mobile-only {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
    font-weight: 700;
    width: auto;
    flex-shrink: 0;
  }

  .hero-title { font-size: 32px; }
  .hero-text {
    font-size: 15px;
    margin-top: 16px;
  }
  .btn { width: 100%; }
  .hero-buttons {
    flex-direction: column;
    margin-top: 24px;
  }
  .feature-image-card .image-wrap { height: 240px; }
  .image-caption h3 { font-size: 22px; }
  .image-caption {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
  .card-title { font-size: 22px; }
  .card-body { padding: 22px; }
}

@media (max-width: 380px) {
  .header-inner {
    min-height: 60px;
    gap: 6px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .header .btn-small.mobile-only {
    min-height: 34px;
    padding: 0 12px;
    font-size: 11px;
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25), 0 0 0 0 rgba(14, 165, 233, 0.7);
  }
  50% {
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25), 0 0 0 15px rgba(14, 165, 233, 0);
  }
  100% {
    box-shadow: 0 20px 40px rgba(79, 70, 229, 0.25), 0 0 0 0 rgba(14, 165, 233, 0);
  }
}

.mobile-ad-btn.pulse-btn {
  animation: pulse 2s infinite;
}

@media (min-width: 769px) {
  .mobile-ad-popup {
    display: none !important;
  }
}
