/* =============================================================
   AI FUN LAB — Landing Page Styles
   Clean, modern, warm · Singapore kids AI workshop
   ============================================================= */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand Colours */
  --brand-teal:      #00ABBD;
  --brand-teal-dark: #008C9A;
  --brand-orange:    #F6921E;
  --brand-orange-dark:#D97E12;

  /* Purple + Light Page Atmosphere */
  --page-purple:        #635BFF;
  --page-purple-dark:   #5146E5;
  --page-purple-light:  #F1EEFF;
  --primary-light:      #F1EEFF;
  --secondary-light:    #FFF9E5;

  /* Neutrals */
  --dark:           #1C1E2E;
  --dark-2:         #2D3054;
  --text:           #2C2E3E;
  --text-muted:     #717590;
  --light:          #FFF9F5;
  --light-2:        #FFF0E5;
  --white:          #FFFFFF;
  --border:         #EAE0D8;
  --border-light:   #F3EDE6;

  /* Utility */
  --success:        #22C55E;
  --shadow-sm:      0 1px 4px rgba(28,30,46,0.06), 0 1px 2px rgba(28,30,46,0.04);
  --shadow-md:      0 4px 20px rgba(28,30,46,0.09), 0 2px 6px rgba(28,30,46,0.05);
  --shadow-lg:      0 12px 48px rgba(28,30,46,0.14), 0 4px 12px rgba(28,30,46,0.07);

  /* Radii */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-pill: 999px;

  /* Typography */
  --font-display: 'Manrope', sans-serif;
  --font-body:    'Manrope', sans-serif;

  /* Motion */
  --ease: 0.22s ease;
}

/* ---- Reset ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { max-width: 100%; display: block; }
a        { text-decoration: none; color: inherit; }
ul       { list-style: none; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 800;
  border: 2px solid transparent;
  cursor: pointer;
  border-radius: var(--r-pill);
  transition: all var(--ease);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-primary {
  background: var(--brand-teal);
  color: var(--white);
  padding: 14px 28px;
  font-size: 1rem;
  border-color: var(--brand-teal);
}
.btn-primary:hover {
  background: var(--brand-teal-dark);
  border-color: var(--brand-teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 171, 189, 0.32);
}

.btn-ghost {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 14px 28px;
  font-size: 1rem;
  border-color: rgba(255,255,255,0.28);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--brand-teal);
  padding: 14px 28px;
  font-size: 1rem;
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}

.btn-sm  { padding: 10px 20px;  font-size: 0.875rem; }
.btn-lg  { padding: 18px 36px;  font-size: 1.1rem;   }
.btn-submit {
  width: 100%;
  padding: 18px;
  font-size: 1.1rem;
  margin-top: 4px;
}

/* =============================================================
   SECTION COMMON
   ============================================================= */
.section { padding: 96px 0; }

.section-label {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-teal);
  margin-bottom: 10px;
}
.section-label--light { color: rgba(255,255,255,0.6); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.18;
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ---- Payment Badges ---- */
.payment-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
}

.payment-secure {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.check-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  background: var(--success);
  border-radius: 50%;
  color: white;
  font-size: 0.72rem;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* =============================================================
   STICKY HEADER
   ============================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(28, 30, 46, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-mark { color: var(--brand-orange); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--ease);
}
.nav-link:hover { color: var(--white); }

/* =============================================================
   HERO
   ============================================================= */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 100px 0 0;
}

/* Glow effects */
.hero::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 680px;
  height: 680px;
  background: radial-gradient(circle, rgba(255, 85, 51, 0.2) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 60px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255, 176, 32, 0.13) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 80px;
  position: relative;
  z-index: 2;
}

.badge-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  border-radius: var(--r-pill);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
}
.badge-orange {
  background: rgba(255, 85, 51, 0.22);
  color: #FF8060;
  border: 1px solid rgba(255, 85, 51, 0.32);
}
.badge-outline {
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.14);
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.13;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  margin-bottom: 28px;
  max-width: 520px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.82);
  transition: background var(--ease);
}
.pill:hover { background: rgba(255,255,255,0.12); }

.hero-cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-microcopy {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 440px;
}

.payment-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.payment-badges .payment-badge {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
}

/* ---- Hero Visual (CSS Illustration) ---- */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.visual-card {
  position: relative;
  width: 340px;
  height: 380px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.vc-shape {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.shape-1 {
  width: 220px; height: 220px;
  background: var(--page-purple);
  opacity: 0.1;
  top: -60px; right: -60px;
}
.shape-2 {
  width: 140px; height: 140px;
  background: var(--brand-orange);
  opacity: 0.12;
  bottom: -30px; left: -30px;
}

.vc-bot {
  position: relative;
  width: 120px;
  height: 120px;
  background: linear-gradient(145deg, var(--brand-orange), #FFB14C);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(246, 146, 30, 0.35);
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}

.bot-antenna {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 20px;
  background: rgba(255,255,255,0.55);
  border-radius: 2px;
}
.bot-antenna::after {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: var(--brand-orange);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(255, 176, 32, 0.8);
}

.bot-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 4px;
}

.bot-eyes {
  display: flex;
  gap: 18px;
}

.bot-eye {
  width: 13px;
  height: 13px;
  background: white;
  border-radius: 50%;
  animation: blink 4s ease-in-out infinite;
}
.bot-eye.right { animation-delay: 0.1s; }

@keyframes blink {
  0%, 90%, 100% { transform: scaleY(1); }
  95%            { transform: scaleY(0.1); }
}

.bot-smile {
  width: 30px;
  height: 14px;
  border: 3px solid white;
  border-top: none;
  border-radius: 0 0 22px 22px;
}

/* Chat bubbles */
.vc-bubble {
  position: absolute;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  white-space: nowrap;
  z-index: 3;
}
.bubble-1 { top: 44px;  right: -12px; animation: float 4s ease-in-out infinite 0.6s; }
.bubble-2 { bottom: 86px; left: -20px; animation: float 4s ease-in-out infinite 1.1s; }
.bubble-3 { top: 68px;  left: 14px;  animation: float 4s ease-in-out infinite 1.7s; }

/* Stars */
.vc-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.star {
  position: absolute;
  color: var(--brand-orange);
  animation: twinkle 2.4s ease-in-out infinite;
}
.s1 { top: 22px;  left: 32px;  font-size: 1rem;  animation-delay: 0s;   }
.s2 { top: 32px;  right: 32px; font-size: 0.8rem; animation-delay: 0.5s; }
.s3 { bottom: 44px; right: 44px; font-size: 1.2rem; animation-delay: 1s; }
.s4 { bottom: 32px; left: 24px; font-size: 0.7rem; animation-delay: 1.5s; }

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

/* Sparkles */
.vc-sparkle {
  position: absolute;
  color: var(--brand-orange);
  font-size: 1.4rem;
  animation: twinkle 3s ease-in-out infinite;
  z-index: 1;
  opacity: 0.5;
}
.sp1 { top: 50%; right: 18px; animation-delay: 0.3s; }
.sp2 { top: 50%; left: 18px;  animation-delay: 1.3s; }

/* Hero wave separator */
.hero-wave {
  position: relative;
  height: 80px;
  overflow: hidden;
}
.hero-wave svg {
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 100%;
}

/* =============================================================
   WHY SECTION
   ============================================================= */
.why-section { background: var(--light); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.why-text p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.why-text .btn { margin-top: 8px; }

.why-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.why-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--ease);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.why-card-icon  { font-size: 1.9rem; margin-bottom: 12px; }
.why-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================================
   BUILD SECTION
   ============================================================= */
.build-section {
  background: var(--dark);
  padding: 96px 0;
}
.build-section .section-label    { color: var(--brand-orange); }
.build-section .section-headline { color: var(--white); }
.build-section .section-intro    { color: rgba(255,255,255,0.55); }

.build-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.build-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-md);
  padding: 28px 22px;
  transition: all var(--ease);
}
.build-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  transform: translateY(-4px);
}
.build-card--featured {
  background: linear-gradient(135deg, rgba(255, 85, 51, 0.22), rgba(255, 85, 51, 0.06));
  border-color: rgba(255, 85, 51, 0.32);
}

.build-card-number {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--brand-teal);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.build-card-icon { font-size: 2rem; margin-bottom: 12px; }

.build-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}

.build-card p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

.build-note {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-weight: 700;
  color: rgba(255,255,255,0.78);
  font-size: 0.95rem;
}

/* =============================================================
   VALUE SECTION
   ============================================================= */
.value-section { background: var(--light); }

.value-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.value-text p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 20px;
}

.value-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.value-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--r-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: all var(--ease);
}
.value-highlight:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.vh-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(246, 146, 30, 0.14);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.vh-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.vh-text strong {
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
}
.vh-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* =============================================================
   WHO SECTION
   ============================================================= */
.who-section {
  background: var(--white);
  padding: 96px 0;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.who-items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.who-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.who-check {
  display: inline-flex;
  width: 26px;
  height: 26px;
  background: rgba(246, 146, 30, 0.14);
  color: var(--brand-orange);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 900;
  flex-shrink: 0;
}

.who-note {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.72;
  margin-bottom: 28px;
}

.who-visual {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.age-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 182px;
  height: 182px;
  background: linear-gradient(140deg, var(--brand-orange), #FFB14C);
  border-radius: 50%;
  box-shadow: 0 20px 56px rgba(246, 146, 30, 0.30);
  color: white;
  text-align: center;
}

.age-label  {
  font-size: 0.75rem;
  font-weight: 800;
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.age-number {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  margin: 5px 0;
}
.age-sub {
  font-size: 0.78rem;
  opacity: 0.72;
}

.who-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.who-tag {
  background: var(--light);
  border: 1.5px solid var(--border);
  border-radius: var(--r-pill);
  padding: 9px 18px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* =============================================================
   DETAILS SECTION
   ============================================================= */
.details-section {
  background: var(--light);
  padding: 96px 0;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.detail-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: all var(--ease);
}
.detail-card:hover { box-shadow: var(--shadow-md); }

.detail-card--highlight {
  background: var(--brand-teal);
  border-color: var(--brand-teal);
}
.detail-card--highlight .detail-label { color: rgba(255,255,255,0.72); }
.detail-card--highlight .detail-value { color: var(--white); }

.detail-icon  { font-size: 1.7rem; margin-bottom: 14px; }

.detail-label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.detail-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

.detail-price {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--white) !important;
}

.details-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(255, 176, 32, 0.1);
  border: 1px solid rgba(255, 176, 32, 0.24);
  border-radius: var(--r-md);
  padding: 18px 24px;
  margin-bottom: 22px;
}

.details-note-icon { font-size: 1.25rem; flex-shrink: 0; }
.details-note p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.6;
}

.details-payment {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.dp-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* =============================================================
   AFTER BOOKING SECTION
   ============================================================= */
.after-section {
  background: var(--white);
  padding: 96px 0;
}

.after-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
}

/* Connector line between steps (desktop only) */
.after-steps::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 21px;
  right: 21px;
  height: 2px;
  background: linear-gradient(to right, var(--brand-orange), rgba(246,146,30,0.16));
  z-index: 0;
}

.after-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 42px;
  height: 42px;
  background: var(--brand-orange);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(246, 146, 30, 0.28);
}

.step-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.step-text strong {
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
}
.step-text span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.after-note {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 18px 24px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* =============================================================
   PRICING SECTION
   ============================================================= */
.pricing-section {
  background: var(--dark-2);
  padding: 96px 0;
}
.pricing-section .section-label    { color: var(--brand-orange); }
.pricing-section .section-headline { color: var(--white); }
.pricing-section .section-intro    { color: rgba(255,255,255,0.55); }

.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 680px;
  margin: 0 auto 32px;
}

.pricing-card {
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: 40px 32px;
  text-align: center;
  transition: all var(--ease);
}
.pricing-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}
.pricing-card--featured {
  background: linear-gradient(140deg, rgba(255, 85, 51, 0.28), rgba(255, 85, 51, 0.08));
  border-color: rgba(255, 85, 51, 0.46);
}

.pricing-tag {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-orange);
  margin-bottom: 14px;
}

.pricing-amount {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1;
  letter-spacing: -0.02em;
}

.pricing-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
  line-height: 1.55;
}

.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.pricing-note .payment-badge {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.72);
}
.pricing-note .payment-secure { color: rgba(255,255,255,0.38); }

/* =============================================================
   REGISTRATION FORM SECTION
   ============================================================= */
.form-section {
  background: linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 100%);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}

.form-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255, 85, 51, 0.12) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.form-wrapper {
  max-width: 640px;
  margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-xl);
  padding: 56px 52px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.form-header {
  margin-bottom: 40px;
  text-align: center;
}
.form-headline { color: var(--white); }
.form-intro {
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
  max-width: 100%;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.required { color: var(--brand-teal); }

.form-group input,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  outline: none;
  transition: border-color var(--ease), background var(--ease);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: rgba(255,255,255,0.28);
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--brand-teal);
  background: rgba(255,255,255,0.1);
  box-shadow: 0 0 0 3px rgba(255, 85, 51, 0.18);
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='10' viewBox='0 0 16 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L8 9L15 1' stroke='rgba(255,255,255,0.35)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}

.form-group select option {
  background: var(--dark-2);
  color: var(--white);
}

/* Pricing fieldset */
.form-pricing-choice {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: none;
  padding: 0;
}

.form-pricing-label {
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.pricing-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.pricing-option {
  cursor: pointer;
  display: block;
}
.pricing-option input[type="radio"] { display: none; }

.pricing-option-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.05);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: var(--r-md);
  padding: 18px 20px;
  transition: all var(--ease);
  text-align: center;
}
.pricing-option:hover .pricing-option-inner {
  border-color: rgba(255,255,255,0.24);
  background: rgba(255,255,255,0.08);
}
.pricing-option input[type="radio"]:checked + .pricing-option-inner {
  border-color: var(--brand-teal);
  background: rgba(255, 85, 51, 0.15);
  box-shadow: 0 0 0 3px rgba(255, 85, 51, 0.15);
}

.po-tag {
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.po-price {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.po-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-orange);
}

/* Payment info bar */
.form-payment-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-md);
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.08);
}

.fpi-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
}
.form-payment-info .payment-badge {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.7);
}

.form-microcopy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.65;
  text-align: center;
}

/* =============================================================
   FAQ SECTION
   ============================================================= */
.faq-section { background: var(--light); }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.faq-item[open] {
  border-color: var(--brand-teal);
  box-shadow: 0 4px 20px rgba(255, 85, 51, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  user-select: none;
  transition: color var(--ease);
}
/* Remove default marker across browsers */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker               { display: none; }

.faq-item[open] > .faq-question { color: var(--brand-teal); }

.faq-icon {
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--brand-teal);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--page-purple-light);
  border-radius: 50%;
  transition: transform var(--ease);
  line-height: 1;
}
.faq-item[open] > .faq-question > .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 16px 24px 22px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  border-top: 1px solid var(--border-light);
}

/* =============================================================
   FINAL CTA
   ============================================================= */
.final-cta {
  position: relative;
  background: linear-gradient(135deg, #FDE8CC 0%, #FFF4E6 52%, #FFFFFF 100%);
  padding: 100px 0;
  overflow: hidden;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 55%);
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.final-badge {
  display: inline-block;
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--r-pill);
  padding: 8px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 24px;
}

.final-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.final-body {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 36px;
}

.final-micro {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.58);
  margin-top: 16px;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--dark);
  padding: 52px 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner { text-align: center; }

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 28px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px;
  margin-bottom: 28px;
}
.footer-links a {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.48);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--white); }

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
}

/* =============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================= */
@media (max-width: 1024px) {
  .section { padding: 72px 0; }
  .container { padding: 0 24px; }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    text-align: center;
    padding-bottom: 64px;
  }
  .hero-visual   { display: none; }
  .hero-content  { max-width: 680px; margin: 0 auto; }
  .hero-sub      { max-width: 100%; }
  .hero-pills    { justify-content: center; }
  .hero-cta-group { justify-content: center; }
  .hero-microcopy { max-width: 100%; margin-left: auto; margin-right: auto; }
  .payment-badges { justify-content: center; }
  .badge-row     { justify-content: center; }

  /* Layout grids */
  .why-grid     { grid-template-columns: 1fr; gap: 48px; }
  .value-grid   { grid-template-columns: 1fr; gap: 48px; }
  .who-grid     { grid-template-columns: 1fr; gap: 48px; }

  .build-grid   { grid-template-columns: repeat(2, 1fr); }
  .details-grid { grid-template-columns: repeat(2, 1fr); }
  .after-steps  { grid-template-columns: repeat(2, 1fr); }
  .after-steps::before { display: none; }
}

/* =============================================================
   RESPONSIVE — MOBILE (≤640px)
   ============================================================= */
@media (max-width: 640px) {
  .section    { padding: 56px 0; }
  .container  { padding: 0 18px; }

  /* Header */
  .header-nav { display: none; }
  .header-inner { gap: 0; }

  /* Hero */
  .hero { padding: 80px 0 0; }
  .hero-headline { font-size: 1.85rem; }
  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-group .btn {
    text-align: center;
    justify-content: center;
  }

  /* Grids → 1 col */
  .why-cards    { grid-template-columns: 1fr; }
  .build-grid   { grid-template-columns: 1fr; }
  .details-grid { grid-template-columns: 1fr; }
  .after-steps  { grid-template-columns: 1fr; }

  /* Pricing */
  .pricing-cards { grid-template-columns: 1fr; max-width: 100%; }

  /* Form */
  .form-wrapper  { padding: 32px 22px; }
  .form-row      { grid-template-columns: 1fr; }
  .pricing-options { grid-template-columns: 1fr; }

  /* Misc */
  .section-headline { font-size: 1.65rem; }
  .faq-question { font-size: 0.92rem; padding: 16px 18px; }
  .faq-answer   { font-size: 0.88rem; padding: 14px 18px 18px; }
  .footer-links { gap: 16px; }
  .who-visual   { align-items: center; }
}


/* Brand accents update */
.price-card--featured .price-pill,
.offer-badge,
.badge-early,
.early-bird-badge {
  background: var(--brand-orange);
  color: var(--white);
}
