@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ── Design Tokens ── */
:root {
  --navy: #32509F;
  --navy-dark: #243B78;
  --navy-deeper: #1A2D5E;
  --tint: #DDE6FF;
  --tint-light: #EEF2FF;
  --tint-ultra: #F5F7FF;
  --orange: #F77F00;
  --orange-hover: #E57200;
  --orange-light: #FFF3E0;
  --white: #FFFFFF;
  --off-white: #FAFBFE;
  --gray-50: #F8FAFC;
  --gray-100: #F1F5F9;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --gray-400: #94A3B8;
  --gray-500: #64748B;
  --gray-600: #475569;
  --gray-700: #334155;
  --gray-800: #1E293B;
  --text-primary: #1A2D5E;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --shadow-sm: 0 1px 2px rgba(50,80,159,0.05);
  --shadow-md: 0 4px 16px rgba(50,80,159,0.08);
  --shadow-lg: 0 8px 32px rgba(50,80,159,0.1);
  --shadow-xl: 0 16px 48px rgba(50,80,159,0.12);
  --shadow-card: 0 2px 12px rgba(50,80,159,0.06);
  --shadow-card-hover: 0 8px 28px rgba(50,80,159,0.12);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-2xl: 24px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body {
  font-family: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  color: var(--text-primary);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--navy);
  background: var(--tint); padding: 6px 16px;
  border-radius: var(--radius-full); margin-bottom: 16px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800;
  line-height: 1.2; color: var(--text-primary); margin-bottom: 16px;
}
.section-subtitle {
  font-size: clamp(16px, 2vw, 18px); color: var(--text-secondary);
  max-width: 640px; line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 700; font-size: 15px; border-radius: var(--radius-full);
  padding: 14px 32px; transition: var(--transition); position: relative;
  overflow: hidden; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: var(--white);
  box-shadow: 0 4px 16px rgba(247,127,0,0.3);
}
.btn-primary:hover {
  background: var(--orange-hover); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(247,127,0,0.4);
}
.btn-secondary {
  background: var(--white); color: var(--navy);
  border: 2px solid var(--tint); box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--navy); background: var(--tint-ultra);
  transform: translateY(-1px);
}
.btn-navy {
  background: var(--navy); color: var(--white);
  box-shadow: 0 4px 16px rgba(50,80,159,0.3);
}
.btn-navy:hover {
  background: var(--navy-dark); transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(50,80,159,0.4);
}
.btn-ghost {
  background: transparent; color: var(--navy); padding: 14px 24px;
}
.btn-ghost:hover { background: var(--tint-light); }
.btn-sm { padding: 10px 20px; font-size: 14px; }
.btn-lg { padding: 18px 40px; font-size: 16px; }
.btn svg, .btn .btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(50,80,159,0.06);
  transition: var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: var(--max-width); margin: 0 auto; padding: 0 24px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  height: 40px; width: auto;
}
.logo-mark {
  width: 38px; height: 38px; background: var(--tint-light);
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  overflow: hidden; flex-shrink: 0;
}
.logo-mark svg { width: 24px; height: 24px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 1px; }
.logo-text span { color: var(--orange); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
  transition: var(--transition); position: relative;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.hamburger {
  display: none; background: none; border: none;
  flex-direction: column; gap: 5px; padding: 4px; cursor: pointer;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--navy);
  border-radius: 2px; transition: var(--transition);
}

/* ── Hero ── */
.hero {
  padding: 140px 0 80px; background: linear-gradient(180deg, var(--white) 0%, var(--tint-ultra) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(50,80,159,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--tint); padding: 8px 16px;
  border-radius: var(--radius-full); font-size: 13px;
  font-weight: 600; color: var(--navy); margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px; background: #22C55E;
  border-radius: 50%; animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-title {
  font-size: clamp(36px, 5vw, 56px); font-weight: 900;
  line-height: 1.1; color: var(--text-primary); margin-bottom: 20px;
}
.hero-title .highlight {
  color: var(--navy);
  background: linear-gradient(135deg, var(--tint) 0%, rgba(221,230,255,0.4) 100%);
  padding: 2px 8px; border-radius: 6px;
}
.hero-title .accent { color: var(--orange); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 19px); color: var(--text-secondary);
  line-height: 1.7; margin-bottom: 32px; max-width: 520px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-proof {
  display: flex; gap: 24px; flex-wrap: wrap;
}
.proof-chip {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: var(--text-secondary);
}
.proof-chip svg { width: 16px; height: 16px; color: var(--navy); flex-shrink: 0; }
.hero-visual {
  position: relative; display: flex; justify-content: center; align-items: center;
}
.hero-image {
  width: 100%; max-width: 480px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}
.hero-float-card {
  position: absolute; background: var(--white); border-radius: var(--radius-md);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}
.hero-float-card.card-1 { top: 10%; right: -20px; animation-delay: -1s; }
.hero-float-card.card-2 { bottom: 15%; left: -20px; animation-delay: -3s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-card-label { font-size: 11px; color: var(--text-muted); font-weight: 600; }
.float-card-value { font-size: 16px; font-weight: 800; color: var(--navy); }
.float-card-value.green { color: #22C55E; }

/* ── Trust Strip ── */
.trust-strip {
  padding: 40px 0; background: var(--white);
  border-top: 1px solid var(--gray-100); border-bottom: 1px solid var(--gray-100);
}
.trust-strip-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 600; color: var(--text-secondary);
}
.trust-icon {
  width: 40px; height: 40px; background: var(--tint-light);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
}
.trust-icon svg { width: 20px; height: 20px; color: var(--navy); }

/* ── Pain Points ── */
.pain-section { background: var(--white); }
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-top: 48px;
}
.pain-list { display: flex; flex-direction: column; gap: 16px; }
.pain-item {
  display: flex; gap: 14px; padding: 18px 20px;
  background: var(--gray-50); border-radius: var(--radius-md);
  border-left: 3px solid var(--gray-300); transition: var(--transition);
}
.pain-item:hover { border-left-color: var(--orange); background: var(--orange-light); }
.pain-icon { font-size: 22px; flex-shrink: 0; line-height: 1; }
.pain-text { font-size: 15px; color: var(--text-secondary); font-weight: 500; }
.relief-list { display: flex; flex-direction: column; gap: 16px; }
.relief-item {
  display: flex; gap: 14px; padding: 18px 20px;
  background: var(--tint-ultra); border-radius: var(--radius-md);
  border-left: 3px solid var(--navy); transition: var(--transition);
}
.relief-item:hover { background: var(--tint-light); }
.relief-icon {
  width: 24px; height: 24px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.relief-icon svg { width: 14px; height: 14px; color: var(--white); }
.relief-text { font-size: 15px; color: var(--text-primary); font-weight: 600; }
.pain-col-title {
  font-size: 20px; font-weight: 800; margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.pain-col-title.problem { color: var(--gray-600); }
.pain-col-title.solution { color: var(--navy); }

/* ── Persona Cards ── */
.persona-section { background: var(--off-white); }
.persona-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.persona-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; box-shadow: var(--shadow-card);
  transition: var(--transition); border: 1px solid transparent;
  display: flex; flex-direction: column;
}
.persona-card:hover {
  box-shadow: var(--shadow-card-hover); border-color: var(--tint);
  transform: translateY(-4px);
}
.persona-emoji {
  width: 52px; height: 52px; background: var(--tint-light);
  border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
}
.persona-title { font-size: 18px; font-weight: 800; margin-bottom: 8px; color: var(--text-primary); }
.persona-problem { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.6; }
.persona-solution { font-size: 14px; color: var(--navy); font-weight: 600; margin-bottom: 20px; line-height: 1.6; }
.persona-card .btn { margin-top: auto; width: 100%; }

/* ── How It Works ── */
.how-section { background: var(--white); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; margin-top: 48px; position: relative;
}
.steps-grid::before {
  content: ''; position: absolute; top: 40px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--tint) 0%, var(--navy) 50%, var(--tint) 100%);
  z-index: 0;
}
.step-card {
  text-align: center; position: relative; z-index: 1;
}
.step-number {
  width: 56px; height: 56px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 20px; font-weight: 800;
  color: var(--white); margin: 0 auto 20px;
  box-shadow: 0 4px 16px rgba(50,80,159,0.25);
  border: 4px solid var(--white); position: relative;
}
.step-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Plans ── */
.plans-section { background: linear-gradient(180deg, var(--off-white) 0%, var(--tint-ultra) 100%); }
.plans-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.plan-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px 24px; box-shadow: var(--shadow-card);
  transition: var(--transition); border: 2px solid transparent;
  display: flex; flex-direction: column; position: relative;
}
.plan-card:hover {
  box-shadow: var(--shadow-card-hover); transform: translateY(-4px);
}
.plan-card.popular {
  border-color: var(--orange);
  box-shadow: 0 8px 32px rgba(247,127,0,0.12);
}
.plan-badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--orange); color: var(--white); font-size: 11px;
  font-weight: 700; padding: 4px 16px; border-radius: var(--radius-full);
  text-transform: uppercase; letter-spacing: 1px; white-space: nowrap;
}
.plan-icon {
  width: 44px; height: 44px; background: var(--tint-light);
  border-radius: var(--radius-md); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.plan-title { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.plan-for { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; line-height: 1.5; min-height: 40px; }
.plan-price {
  font-size: 28px; font-weight: 900; color: var(--navy); margin-bottom: 2px;
}
.plan-price span { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.plan-gst { font-size: 12px; color: var(--text-muted); margin-bottom: 14px; font-weight: 500; }
.plan-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; flex: 1; }
.plan-feature {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 13px; color: var(--text-secondary);
}
.plan-feature svg { width: 15px; height: 15px; color: var(--navy); flex-shrink: 0; margin-top: 2px; }
.plan-feature.excluded svg { color: var(--gray-300); }
.plan-feature.excluded { color: var(--text-muted); }
.plan-card .btn { width: 100%; }

/* Special & Support Plan Sections */
.plans-special {
  margin-top: 32px; display: grid;
  grid-template-columns: 1fr 1fr; gap: 24px;
}
.plan-card-special {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 28px 24px; box-shadow: var(--shadow-card);
  transition: var(--transition); border: 1px solid var(--gray-200);
  display: flex; flex-direction: column;
}
.plan-card-special:hover {
  box-shadow: var(--shadow-card-hover); transform: translateY(-2px);
}
.plan-card-special .plan-title { font-size: 17px; }
.plan-card-special .plan-price { font-size: 26px; }
.plans-support {
  margin-top: 24px;
}
.support-banner {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 28px 32px; box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.support-banner-left { flex: 1; min-width: 280px; }
.support-banner-left h3 { font-size: 18px; font-weight: 800; margin-bottom: 4px; }
.support-banner-left p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }
.support-banner-right {
  display: flex; align-items: center; gap: 16px; flex-shrink: 0;
}
.support-banner-price { font-size: 24px; font-weight: 900; color: var(--navy); white-space: nowrap; }
.support-banner-price span { font-size: 12px; font-weight: 500; color: var(--text-muted); display: block; }

/* ── Why Better ── */
.why-section { background: var(--navy); color: var(--white); }
.why-section .section-label { background: rgba(255,255,255,0.1); color: var(--tint); }
.why-section .section-title { color: var(--white); }
.why-section .section-subtitle { color: rgba(255,255,255,0.7); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.why-card {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-lg);
  padding: 28px 24px; border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.15); transform: translateY(-2px);
}
.why-card-icon {
  width: 44px; height: 44px; background: rgba(247,127,0,0.15);
  border-radius: var(--radius-sm); display: flex;
  align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.why-card-title { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card-desc { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.7; }

/* ── Trust Section ── */
.credibility-section { background: var(--white); }
.cred-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 48px;
}
.cred-card {
  padding: 28px 24px; background: var(--gray-50);
  border-radius: var(--radius-lg); border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.cred-card:hover { box-shadow: var(--shadow-md); border-color: var(--tint); }
.cred-icon { font-size: 28px; margin-bottom: 14px; }
.cred-title { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.cred-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── Testimonials ── */
.testimonials-section { background: var(--off-white); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px; margin-top: 48px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-card);
  border: 1px solid var(--gray-100);
}
.testimonial-stars { color: var(--orange); font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--tint); display: flex; align-items: center;
  justify-content: center; font-weight: 700; color: var(--navy); font-size: 16px;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--text-primary); }
.testimonial-role { font-size: 12px; color: var(--text-muted); }

/* ── FAQ ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 780px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--gray-50); border-radius: var(--radius-md);
  border: 1px solid var(--gray-100); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { background: var(--tint-ultra); border-color: var(--tint); }
.faq-question {
  padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; cursor: pointer;
  font-size: 15px; font-weight: 700; color: var(--text-primary);
  transition: var(--transition); gap: 16px;
}
.faq-question:hover { color: var(--navy); }
.faq-toggle {
  width: 28px; height: 28px; background: var(--tint-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: var(--transition);
}
.faq-item.open .faq-toggle { background: var(--navy); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}

/* ── Final CTA ── */
.final-cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deeper) 100%);
  color: var(--white); padding: 96px 0;
  position: relative; overflow: hidden;
}
.final-cta-section::before {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(247,127,0,0.08); pointer-events: none;
}
.final-cta-content { max-width: 640px; margin: 0 auto; text-align: center; position: relative; z-index: 1; }
.final-cta-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 900;
  line-height: 1.2; margin-bottom: 16px;
}
.final-cta-sub { font-size: 17px; color: rgba(255,255,255,0.7); margin-bottom: 36px; line-height: 1.7; }
.final-cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.final-cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }

/* ── Booking ── */
.booking-section { background: var(--tint-ultra); }
.booking-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px; align-items: start;
}
.booking-form {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; box-shadow: var(--shadow-lg);
}
.form-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 700; color: var(--text-secondary); margin-bottom: 6px; }
.form-input, .form-select {
  width: 100%; padding: 12px 16px; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: 15px;
  font-family: inherit; color: var(--text-primary);
  transition: var(--transition); background: var(--white);
}
.form-input:focus, .form-select:focus {
  outline: none; border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(50,80,159,0.1);
}
.form-input::placeholder { color: var(--text-muted); }
.booking-widget {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 36px; box-shadow: var(--shadow-lg); min-height: 400px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
}
.widget-placeholder {
  text-align: center; color: var(--text-muted);
}
.widget-placeholder svg { width: 64px; height: 64px; margin-bottom: 16px; opacity: 0.3; }
.widget-placeholder p { font-size: 14px; }
.booking-success {
  display: none; text-align: center; padding: 48px 24px;
}
.booking-success.show { display: block; }
.success-icon {
  width: 72px; height: 72px; background: #22C55E;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
}
.success-icon svg { width: 36px; height: 36px; color: var(--white); }

/* ── Footer ── */
.footer {
  background: var(--gray-800); color: rgba(255,255,255,0.6);
  padding: 48px 0 24px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 40px;
}
.footer-brand .logo-text { color: var(--white); margin-bottom: 12px; }
.footer-desc { font-size: 14px; line-height: 1.7; max-width: 280px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: var(--white); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px; text-align: center; font-size: 13px;
}

/* ── Sticky Mobile CTA ── */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 999; background: var(--white); padding: 12px 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  border-top: 1px solid var(--gray-100);
}
.sticky-cta-inner { display: flex; gap: 10px; max-width: 500px; margin: 0 auto; }
.sticky-cta .btn { flex: 1; padding: 14px 16px; font-size: 14px; }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 20px; z-index: 998;
  width: 56px; height: 56px; background: #25D366;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: var(--transition); cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; color: var(--white); }

/* ── Animations ── */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* -- Hero Deadline Counter -- */
.hero-deadline {
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, rgba(247,127,0,0.1), rgba(247,127,0,0.05));
  border: 1px solid rgba(247,127,0,0.2);
  padding: 8px 18px; border-radius: var(--radius-full);
  font-size: 14px; font-weight: 600; color: var(--orange);
  margin-bottom: 8px; animation: pulse-border 2s ease-in-out infinite;
}
.hero-deadline.urgent {
  background: linear-gradient(135deg, rgba(239,68,68,0.12), rgba(239,68,68,0.05));
  border-color: rgba(239,68,68,0.3); color: #DC2626;
}
.hero-deadline strong { font-weight: 900; font-size: 16px; }
@keyframes pulse-border {
  0%, 100% { box-shadow: 0 0 0 0 rgba(247,127,0,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(247,127,0,0); }
}

/* -- Stats Counter Strip -- */
.stats-strip { background: var(--navy); padding: 48px 0; }
.stats-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; text-align: center;
}
.stat-item { position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 15%; height: 70%;
  width: 1px; background: rgba(255,255,255,0.15);
}
.stat-number {
  font-size: clamp(32px, 4vw, 48px); font-weight: 900;
  color: var(--white); line-height: 1; font-family: 'Inter', sans-serif;
}
.stat-star { color: #FBBF24; margin-left: 2px; }
.stat-plus, .stat-pct { color: var(--orange); font-weight: 800; }
.stat-label {
  font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.6);
  margin-top: 8px; text-transform: uppercase; letter-spacing: 1px;
}

/* -- Nav Active State (Scroll Spy) -- */
.nav-links a.active { color: var(--orange); position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--orange); border-radius: 2px;
}

/* -- Plan Card Hover -- */
.plan-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.plan-card-special:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* -- Footer Social Icons -- */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08); color: var(--gray-400); transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-social a svg { fill: currentColor; }

/* -- Footer Company Info -- */
.footer-company {
  text-align: center; font-size: 12px; color: var(--gray-500);
  padding: 20px 0; border-top: 1px solid var(--gray-200);
  margin-top: 32px; line-height: 1.8;
}

/* -- Booking Grid Single -- */
.booking-grid-single { grid-template-columns: 1fr 1fr; }

/* -- Responsive -- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-grid, .booking-grid-single { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 0 60px; }
  .hero-proof { gap: 16px; }
  .pain-grid { grid-template-columns: 1fr; gap: 40px; }
  .persona-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .plans-grid { grid-template-columns: 1fr; }
  .plans-special { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .sticky-cta { display: block; }
  .whatsapp-float { bottom: 80px; }
  body { padding-bottom: 72px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item:nth-child(2)::after { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
    padding: 32px 24px; gap: 24px; z-index: 999;
  }
  .nav-links.mobile-open a { font-size: 18px; }
  .hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.active span:nth-child(2) { opacity: 0; }
  .hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .hero-proof { flex-direction: column; gap: 10px; }
  .booking-form { padding: 24px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

