/* ── RESET & ROOT ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --saffron: #FF6B00;
  --saffron-light: #FF8C3A;
  --saffron-pale: #FFF3E8;
  --navy: #0D1B3E;
  --navy-mid: #1A2E5A;
  --navy-light: #233870;
  --accent-green: #2ECC71;
  --accent-teal: #0ABFA3;
  --white: #ffffff;
  --gray-light: #F5F6FA;
  --gray-mid: #8892A4;
  --font-head: 'Baloo 2', cursive;
  --font-body: 'Noto Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--navy);
  overflow-x: hidden;
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(13, 27, 62, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,107,0,0.25);
  padding: 0 2.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--saffron), #FF3D00);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: #fff;
  line-height: 1.1;
}

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

.logo-sub {
  font-size: 0.62rem;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
}

.nav-links li a:not(.btn-buy-pass) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 13px;
  border-radius: 5px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.35);
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.nav-links li a.disabled {
  cursor: not-allowed;
  opacity: 0.4;
  pointer-events: none;
  border-color: transparent;
  background: transparent;
}

.nav-links li a:not(.disabled):not(.btn-buy-pass):hover {
  background: rgba(0,0,0,0.5);
  border-color: rgba(255,107,0,0.4);
  color: var(--saffron-light);
}

.nav-links li a.active {
  color: var(--saffron);
  border-color: var(--saffron);
  background: rgba(0,0,0,0.45);
}

.coming-soon-badge {
  font-size: 0.55rem;
  background: rgba(255,107,0,0.2);
  color: var(--saffron);
  border-radius: 4px;
  padding: 1px 5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-right a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 6px 13px;
  border-radius: 7px;
  font-weight: 500;
  transition: all 0.2s;
}

.nav-right a:hover { background: rgba(255,255,255,0.08); color: #fff; }

.btn-nav-cta {
  background: var(--saffron) !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 8px 20px !important;
  border-radius: 8px !important;
  transition: background 0.2s, transform 0.15s !important;
}

.btn-nav-cta:hover {
  background: var(--saffron-light) !important;
  transform: translateY(-1px);
}

/* ── BUY PASS BUTTON ── */
.btn-buy-pass {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 0.82rem;
  padding: 7px 15px !important;
  border-radius: 20px !important;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-buy-pass:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 5px 16px rgba(239, 68, 68, 0.45) !important;
  background: linear-gradient(135deg, #fbbf24, #dc2626) !important;
  color: #fff !important;
}

/* Mobile drawer Buy Pass */
.btn-buy-pass-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #fff !important;
  font-weight: 700;
  padding: 14px 16px !important;
  border-radius: 10px !important;
  text-decoration: none;
  border: none !important;
  box-shadow: 0 2px 10px rgba(239, 68, 68, 0.3);
  transition: opacity 0.2s, transform 0.2s;
}

.btn-buy-pass-mobile:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  background: linear-gradient(135deg, #f59e0b, #ef4444) !important;
  color: #fff !important;
}

/* ── HAMBURGER BUTTON ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 110;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

/* Animated X state */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── MOBILE NAV DRAWER ── */
.mobile-nav {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(13, 27, 62, 0.98);
  backdrop-filter: blur(16px);
  z-index: 99;
  flex-direction: column;
  padding: 1.5rem 1.75rem 2rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 2rem;
}

.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.2s;
  border: 1px solid transparent;
}

.mobile-nav-links li a:active,
.mobile-nav-links li a:hover {
  background: rgba(255,107,0,0.12);
  color: var(--saffron-light);
  border-color: rgba(255,107,0,0.2);
}

.mobile-nav-links li a.active {
  color: var(--saffron);
  background: rgba(255,107,0,0.1);
}

.mobile-nav-links li a.disabled {
  opacity: 0.4;
  pointer-events: none;
}

.mobile-nav-divider {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0.5rem 0 1.5rem;
}

.mobile-nav-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav-cta .btn-primary,
.mobile-nav-cta .btn-outline {
  width: 100%;
  justify-content: center;
  font-size: 0.95rem;
  padding: 14px 20px;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 68px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(13,27,62,0.96) 0%, rgba(13,27,62,0.88) 50%, rgba(13,27,62,0.75) 100%),
    url('https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1600&q=80') center/cover no-repeat;
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,107,0,0.12) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.6;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,107,0,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero-glow2 {
  position: absolute;
  bottom: -15%;
  left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(10,191,163,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,107,0,0.12);
  border: 1px solid rgba(255,107,0,0.3);
  color: var(--saffron-light);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-h1 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.25rem;
}

.hero-h1 .highlight { color: var(--saffron); position: relative; }
.hero-h1 .highlight2 { color: var(--accent-teal); }

.hero-desc {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-desc strong { color: #fff; }

.hero-steps {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
  flex-wrap: wrap;
}

.hero-step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 0.88rem;
  font-weight: 500;
}

.step-dot {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--saffron);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.step-dot.green { background: var(--accent-green); }

.hero-cta-row {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--saffron);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-primary:hover { background: #ff8420; transform: translateY(-2px); }
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.3);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.06); }
.btn-outline:active { background: rgba(255,255,255,0.1); }

/* ── HERO VISUAL (right side cards) ── */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}

.stat-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.25rem;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}

.stat-card:hover { transform: translateY(-4px); border-color: rgba(255,107,0,0.3); }

.stat-card.wide {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.stat-icon { font-size: 1.6rem; margin-bottom: 0.6rem; }
.stat-icon-wide { font-size: 2rem; }

.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: 0.03em;
}

.stat-card.accent-orange .stat-num { color: var(--saffron); }
.stat-card.accent-teal .stat-num   { color: var(--accent-teal); }
.stat-card.accent-green .stat-num  { color: var(--accent-green); }

.wide-title {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.wide-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
}

/* ── STATS BANNER ── */
.stats-banner {
  background: var(--navy);
  padding: 2.5rem;
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.banner-stat {
  text-align: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.banner-stat:last-child { border-right: none; }

.banner-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2rem;
  color: var(--saffron);
  display: block;
}

.banner-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── SERVICES SECTION ── */
.services {
  background: var(--gray-light);
  padding: 5rem 2.5rem;
}

.section-label {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 0.75rem;
}

.section-title {
  text-align: center;
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray-mid);
  max-width: 560px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}

.service-card {
  background: #fff;
  border: 1.5px solid #E8EBF5;
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0.72;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), #FF3D00);
  opacity: 0;
  transition: opacity 0.25s;
}

.service-card.coming:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(13,27,62,0.1);
  border-color: rgba(255,107,0,0.25);
  opacity: 0.85;
}

.service-card.coming:hover::before { opacity: 1; }

.service-emoji { font-size: 2.4rem; margin-bottom: 1rem; display: block; }

.service-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.service-desc { font-size: 0.8rem; color: var(--gray-mid); line-height: 1.6; margin-bottom: 1rem; }

.badge-soon {
  display: inline-block;
  background: var(--saffron-pale);
  color: var(--saffron);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255,107,0,0.2);
}

/* ── WHY US ── */
.why { padding: 5rem 2.5rem; background: #fff; }

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-visual {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-radius: 24px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.why-visual::after {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255,107,0,0.2) 0%, transparent 70%);
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  z-index: 1;
}

.why-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(255,107,0,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.why-feat-title { font-weight: 600; font-size: 0.9rem; color: #fff; margin-bottom: 3px; }
.why-feat-desc { font-size: 0.78rem; color: rgba(255,255,255,0.5); line-height: 1.5; }

.why-text .section-title,
.why-text .section-label { text-align: left; }
.why-text .section-sub { text-align: left; margin-left: 0; }

.why-points { list-style: none; margin-top: 1.5rem; }

.why-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--navy-mid);
  line-height: 1.6;
}

.check {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(46,204,113,0.15);
  color: var(--accent-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-cta { margin-top: 2rem; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  padding: 3rem 2.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand .logo-text { font-size: 1.2rem; }

.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }

.footer-col a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--saffron); }

.footer-col a.disabled {
  cursor: not-allowed;
  opacity: 0.35;
  pointer-events: none;
}

.footer-bottom {
  max-width: 1200px;
  margin: 1.75rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.made-in { display: flex; align-items: center; gap: 6px; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ── RESPONSIVE: NAV COLLAPSE (≤ 1280px) ──
   The full desktop nav (logo + 8 links + About/Contact/CTA) only fits
   on one line above ~1280px. Below that the links overflowed off the
   right edge (clipped by the body's overflow-x:hidden, so it looked
   cut off rather than scrolling). Collapse to the hamburger drawer
   here instead of waiting for 900px. */
@media (max-width: 1280px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-right  { display: none; }
  .hamburger  { display: flex; }
}

/* ── RESPONSIVE: TABLET (≤ 900px) ── */
@media (max-width: 900px) {
  /* Hero */
  .hero-content {
    grid-template-columns: 1fr;
    padding: 3rem 1.5rem;
    gap: 2rem;
  }

  .hero-visual { display: none; } /* hide cards on tablet; optional: show below */

  /* Stats */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .banner-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .banner-stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .banner-stat:last-child,
  .banner-stat:nth-last-child(2):nth-child(odd) { border-bottom: none; }

  /* Why */
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .why-visual { order: -1; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

/* ── RESPONSIVE: MOBILE (≤ 600px) ── */
@media (max-width: 600px) {
  /* Nav */
  nav { padding: 0 1rem; height: 60px; }
  .hero { padding-top: 60px; }
  .mobile-nav { top: 60px; }

  /* Logo */
  .logo-icon { width: 36px; height: 36px; font-size: 16px; }
  .logo-text { font-size: 1.1rem; }

  /* Hero */
  .hero-content { padding: 2rem 1rem 3rem; }
  .hero-tag { font-size: 0.68rem; padding: 4px 12px; }

  .hero-steps {
    flex-direction: column;
    gap: 0.75rem;
  }

  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-row .btn-primary,
  .hero-cta-row .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
  }

  /* Sections */
  .services { padding: 3.5rem 1rem; }
  .services-grid { grid-template-columns: 1fr 1fr; gap: 0.9rem; }
  .service-card { padding: 1.5rem 1rem; }

  .why { padding: 3.5rem 1rem; }
  .why-visual { padding: 1.5rem; border-radius: 16px; }

  /* Stats */
  .stats-banner { padding: 2rem 1rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 0; }
  .banner-stat { padding: 1rem 0.5rem; }
  .banner-num { font-size: 1.6rem; }

  /* Footer */
  footer { padding: 2.5rem 1rem 1.5rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-tagline { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }

  /* Reduce reveal translate on mobile for snappier feel */
  .reveal { transform: translateY(14px); }
}

/* ── RESPONSIVE: VERY SMALL (≤ 380px) ── */
@media (max-width: 380px) {
  .services-grid { grid-template-columns: 1fr; }
  .stat-card-grid { grid-template-columns: 1fr; }
  .hero-h1 { font-size: 1.9rem; }
}
/* ── LEGAL/PRIVACY PAGE STYLES ── */
.legal-container {
  background: var(--gray-light);
  padding: 8rem 2.5rem 5rem; /* Large top padding to sit clear of fixed header */
  min-height: calc(100vh - 68px);
  display: flex;
  justify-content: center;
}

.legal-card {
  background: var(--white);
  border: 1.5px solid #E8EBF5;
  border-radius: 24px;
  max-width: 860px;
  width: 100%;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(13, 27, 62, 0.03);
}

.legal-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--navy);
  font-weight: 800;
  line-height: 1.2;
}

.legal-date {
  font-size: 0.9rem;
  color: var(--gray-mid);
  margin-top: 0.5rem;
  font-weight: 500;
}

.legal-divider {
  height: 1px;
  background: #E8EBF5;
  margin: 2rem 0;
}

.legal-card h2 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-mid);
  margin: 2rem 0 0.75rem;
}

.legal-card p {
  font-size: 0.95rem;
  color: #334155; /* highly readable dark grey */
  line-height: 1.75;
  margin-bottom: 1.25rem;
}

.legal-card ul {
  margin-left: 1.5rem;
  margin-bottom: 1.5rem;
  list-style-type: disc;
}

.legal-card li {
  font-size: 0.95rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 0.6rem;
}

@media (max-width: 600px) {
  .legal-container { padding: 6rem 1rem 3.5rem; }
  .legal-card { padding: 2rem 1.25rem; border-radius: 16px; }
  .legal-card h2 { font-size: 1.2rem; margin-top: 1.5rem; }
}


.ck-pass-active-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #16a34a;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 999px;
    white-space: nowrap;
 }
 .ck-pass-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6);
    animation: ck-pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
 }
 @keyframes ck-pulse {
    0%   { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.6); }
    60%  { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
 }


/* ── Typing Test – active service card ── */
a.service-card {
  text-decoration: none !important;
  opacity: 1;
  cursor: pointer;
  color: inherit !important;
}
a.service-card .service-name {
  text-decoration: none !important;
  color: var(--navy) !important;
}
a.service-card .service-desc {
  text-decoration: none !important;
  color: var(--gray-mid) !important;
}
a.service-card .service-emoji,
a.service-card .badge-live {
  text-decoration: none !important;
  color: inherit !important;
}
a.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(13,27,62,0.13);
  border-color: rgba(37,99,235,0.35);
}
a.service-card:hover::before { opacity: 1; background: linear-gradient(90deg, #2563eb, #16a34a); }

.badge-live {
  display: inline-block;
  background: #dcfce7;
  color: #16a34a;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(22,163,74,0.25);
}


/* ── Public typing pages wrapper ── */
.public-page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
  padding-top: calc(68px + 40px); /* 68px fixed navbar + 40px breathing room */
}
/* ── Other Services Dropdown ── */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  cursor: pointer;
  white-space: nowrap;
}

.nav-dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background: #1A2E5A;
  border: 1px solid rgba(255, 107, 0, 0.25);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
  min-width: 190px;
  z-index: 999;
  padding: 6px 0;
  list-style: none;
  margin: 0;
}

.nav-dropdown:hover .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu li a {
  display: block;
  padding: 10px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.2s ease;
}

.nav-dropdown-menu li a:hover {
  background: rgba(255, 107, 0, 0.12);
  color: #FF6B00;
}

/* ── Mobile Dropdown ── */
.mobile-dropdown-menu {
  display: none;
  list-style: none;
  padding: 4px 0 4px 16px;
  margin: 0;
}

.mobile-dropdown-menu.open {
  display: block;
}

.mobile-dropdown-toggle {
  cursor: pointer;
}

.mobile-dropdown-menu li a {
  display: block;
  padding: 8px 12px;
  font-size: 14px;
  color: #374151;
}