/* ============================================================
   Aspira — UX Career Masterclass Landing Page
   Implemented from Figma (node 333:3). Dark theme.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&display=swap');

:root {
  --bg:            #0a0a0f;
  --bg-2:          #14141a;
  --bg-card:       #141419;
  --surface:       rgba(20, 20, 25, 0.5);
  --accent:        #5d00d5;
  --accent-soft:   rgba(93, 0, 213, 0.3);
  --accent-fade:   rgba(93, 0, 213, 0.2);
  --text:          #f5f5f7;
  --text-muted:    #a0a0ab;
  --border:        rgba(255, 255, 255, 0.05);
  --grad-blue:     #5D00D5;
  --grad-pink:     #51A2FF;
  --grad-amber:    #ffd400;
  --radius:        16px;
  --radius-sm:     10px;
  --maxw:          1280px;
  --font-display:  'Outfit', system-ui, sans-serif;
  --font-body:     'Inter', system-ui, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- Shared helpers ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.gradient-text {
  background: linear-gradient(90deg, var(--grad-blue), var(--grad-pink));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.section { padding: 80px 0; position: relative; }

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.08;
  text-align: center;
}

.section-sub {
  color: var(--text-muted);
  font-size: clamp(15px, 2.2vw, 18px);
  text-align: center;
  margin-top: 16px;
}

/* ambient glow blobs */
.glow {
  position: absolute;
  width: 288px; height: 288px;
  border-radius: 50%;
  filter: blur(64px);
  background: linear-gradient(135deg, rgba(93,0,213,0.3) 0%, rgba(255,212,0,0.2) 100%);
  pointer-events: none;
  z-index: 0;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #6f15e6; transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.btn-lg {
  font-size: 16px;
  padding: 16px 32px;
  box-shadow: 0 10px 18px rgba(93,0,213,0.3), 0 4px 8px rgba(93,0,213,0.3);
}
.btn-xl {
  font-size: 18px;
  padding: 20px 40px; 
  box-shadow: 0 10px 18px rgba(93,0,213,0.3), 0 4px 8px rgba(93,0,213,0.3);;
}
.btn-sm { font-size: 14px; padding: 8px 20px; }
.btn .icon { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  padding: 0 24px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.header-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #5d00d5 0%, #4a00aa 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.brand-mark svg { width: 24px; height: 24px; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
}
.brand-tag { color: var(--text-muted); font-size: 12px; line-height: 1.3; }

/* ============================================================
   Hero
   ============================================================ */
.hero { overflow: hidden; padding-top: 80px; padding-bottom: 0; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}
.hero h1 .line-2 { color: var(--text); }
.hero-lead {
  color: var(--text-muted);
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.55;
  margin-top: 24px;
  max-width: 580px;
}
.hero-badges {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 16px;
  margin-top: 32px;
  max-width: 560px;
}
.hero-badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text);
}
.check-dot {
  width: 20px; height: 20px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.check-dot svg { width: 12px; height: 12px; color: #fff; }
.hero-cta { margin-top: 40px; }
.hero-image {
  border: 1px solid var(--accent-fade);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(93,0,213,0.2);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 616 / 409; }

/* ============================================================
   Problem section
   ============================================================ */
.problem {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(31,31,40,0.2) 100%);
}
.problem-list {
  max-width: 672px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.problem-item {
  display: flex; align-items: center; gap: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.problem-item .q-icon {
  width: 20px; height: 20px; flex-shrink: 0; color: var(--grad-pink);
}
.problem-item p { font-size: 16px; color: var(--text); }
.problem-foot {
  text-align: center;
  margin-top: 48px;
  font-size: clamp(15px, 2.2vw, 18px);
  color: var(--text-muted);
}
.problem-foot strong { color: var(--accent); font-weight: 600; }

/* ============================================================
   Experience section (2x2 cards)
   ============================================================ */
.exp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 64px;
}
.exp-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: transform .2s ease, border-color .2s ease;
}
.exp-card:hover { transform: translateY(-4px); border-color: var(--accent-fade); }
.icon-tile {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(93,0,213,0.2) 0%, rgba(255,212,0,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--grad-blue);
  margin-bottom: 16px;
}
.icon-tile svg { width: 24px; height: 24px; }
.exp-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  margin-bottom: 12px;
}
.exp-card p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* ============================================================
   Beginner-friendly section
   ============================================================ */
.beginner {
  background: linear-gradient(180deg, rgba(31,31,40,0.2) 0%, var(--bg) 100%);
}
.bf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin-top: 64px;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}
.bf-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.bf-bullet {
  width: 24px; height: 24px; flex-shrink: 0;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.bf-bullet svg { width: 14px; height: 14px; color: #fff; }
.bf-item span { font-size: 18px; }

/* ============================================================
   Student stories
   ============================================================ */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.story-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform .2s ease, border-color .2s ease;
}
.story-card:hover { transform: translateY(-4px); border-color: var(--accent-fade); }
.story-card .photo { aspect-ratio: 405 / 256; overflow: hidden; }
.story-card .photo img { width: 100%; height: 100%; object-fit: cover; }
.story-body { padding: 24px; }
.story-body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 8px;
}
.story-role {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}
.story-body p { color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* ============================================================
   Community section
   ============================================================ */
.community {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(31,31,40,0.2) 100%);
}
.community-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.community h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(32px, 4.5vw, 48px);
  line-height: 1.25;
}
.community-intro { color: var(--text-muted); font-size: 18px; margin: 24px 0; }
.community-tags {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.community-tag {
  display: flex; align-items: center; gap: 12px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  padding: 12px;
}
.tag-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(93,0,213,0.2) 0%, rgba(255,212,0,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--grad-blue);
}
.tag-icon svg { width: 20px; height: 20px; }
.community-tag span { font-weight: 500; font-size: 16px; }
.quote {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-top: 24px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}
.quote strong { color: var(--accent); font-weight: 600; }
.community-image {
  border: 1px solid var(--accent-fade);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(93,0,213,0.2);
}
.community-image img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 552 / 325; }

/* ============================================================
   About mentor
   ============================================================ */
.mentor-grid {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 32px;
  align-items: center;
}
.mentor-photo {
  border: 4px solid var(--accent-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(93,0,213,0.2);
  aspect-ratio: 1;
}
.mentor-photo img { width: 100%; height: 100%; object-fit: cover; }
.mentor-info h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 24px;
}
.mentor-points { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.mentor-point { display: flex; align-items: center; gap: 12px; }
.mentor-point .tag-icon { width: 40px; height: 40px; }
.mentor-point span { font-size: 16px; }

/* ============================================================
   Timeline
   ============================================================ */
.timeline {
  background: linear-gradient(180deg, rgba(31,31,40,0.2) 0%, var(--bg) 100%);
}
.timeline-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 64px;
  position: relative;
}
.tl-step { text-align: center; position: relative; }
.tl-circle {
  width: 96px; height: 96px;
  margin: 0 auto 24px;
  border-radius: 50%;
  border: 2px solid var(--accent-soft);
  background: linear-gradient(135deg, rgba(93,0,213,0.2) 0%, rgba(255,212,0,0.1) 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--grad-blue);
  position: relative;
}
.tl-circle svg { width: 40px; height: 40px; }
.tl-num {
  position: absolute;
  top: -8px; right: calc(50% - 60px);
  width: 32px; height: 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.tl-step h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 8px;
}
.tl-step p { color: var(--text-muted); font-size: 14px; }
/* connector line between circles (desktop) */
.timeline-steps .tl-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  left: calc(50% + 60px);
  width: calc(100% - 24px);
  height: 2px;
  background: linear-gradient(90deg, rgba(93,0,213,0.5), rgba(0,0,0,0));
}

/* ============================================================
   Registration form (Bigin CRM lead capture)
   ============================================================ */
.register { scroll-margin-top: 90px; }
.register-card {
  max-width: 720px;
  margin: 0 auto;
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(93,0,213,0.12) 0%, rgba(255,212,0,0.05) 50%, rgba(93,0,213,0.12) 100%),
    var(--bg-2);
  padding: clamp(28px, 5vw, 48px);
  box-shadow: 0 25px 50px -12px rgba(93,0,213,0.2);
}
.register-card .section-title { text-align: center; }
.register-card .section-sub { margin-bottom: 32px; }

/* form bridges the Bigin markup into the dark theme.
   .wf-* class hooks are kept compatible with Bigin's script. */
#aspiraLeadForm .field { margin-bottom: 20px; }
#aspiraLeadForm label,
#aspiraLeadForm .wf-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
#aspiraLeadForm .req::after { content: " *"; color: var(--grad-pink); }

.input,
#aspiraLeadForm input[type="text"],
#aspiraLeadForm input[type="email"],
#aspiraLeadForm input[type="tel"] {
  width: 100%;
  height: 52px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 0 16px;
  transition: border-color .18s ease, background-color .18s ease;
}
.input::placeholder { color: #6c6c78; }
.input:focus,
#aspiraLeadForm input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(93,0,213,0.06);
}

/* phone row: country-code dropdown (Bigin) + number */
.phone-row {
  display: flex;
  gap: 10px;
  align-items: stretch;
}
.phone-row .phone-code { flex: 0 0 auto; min-width: 116px; }
.phone-row .phone-number { flex: 1 1 auto; }

/* Style the Bigin single-select country dropdown to fit the dark theme.
   These rules target the exact markup Bigin's script builds, without
   changing its behavior. */
#phMobile.multiselect {
  position: relative;
  height: 52px;
  min-width: 116px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
#phMobile.multiselect.dropbox-active { border-color: var(--accent); background: rgba(93,0,213,0.06); }
#phMobile .dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}
/* Selected dial code shown in the closed box */
#phMobile .content-display-area {
  font-size: 16px;
  color: var(--text);
  white-space: nowrap;
}
#phMobile .content-display-area:empty::before { content: "+ —"; color: #6c6c78; }
/* caret */
#phMobile.multiselect::after {
  content: "";
  width: 8px; height: 8px;
  margin-left: auto;
  border-right: 2px solid var(--text-muted);
  border-bottom: 2px solid var(--text-muted);
  transform: rotate(45deg);
  transition: transform .2s ease;
  flex-shrink: 0;
}
#phMobile.multiselect.dropbox-active::after { transform: rotate(-135deg); }

/* The search input Bigin injects at the top of the menu */
#phMobile .dropdown-input,
#phMobile .dropdown-search-input {
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 16px;
  width: 100%;
  outline: none;
}
#phMobile .dropdown-input.dN { display: none; }

/* The menu container (a <ul>) */
#phMobile .dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 40;
  min-width: 300px;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--bg-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  overflow: hidden;
}
/* Hidden until Bigin opens it (.dropdown gets .open; closed gets .hide-dropdown) */
#phMobile .dropdown.hide-dropdown .dropdown-menu { display: none; }
#phMobile .dropdown:not(.open) .dropdown-menu { display: none; }
#phMobile .dropdown.open .dropdown-menu { display: block; }
/* When near the viewport bottom Bigin flips it upward */
#phMobile .dropdown-menu.dropdownTop { top: auto; }

/* Search box row at top of the open menu */
#phMobile .dropdown-menu .dropdown-search-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  background: rgba(255,255,255,0.03);
  border-radius: 0;
}
#phMobile .dropdown-search-input::placeholder { color: #6c6c78; }

/* Scrollable list of country options */
#phMobile .dropdown-items-wrapper {
  max-height: 240px;
  overflow-y: auto;
  padding: 6px;
}
#phMobile .dropdown-items-wrapper::-webkit-scrollbar { width: 8px; }
#phMobile .dropdown-items-wrapper::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.12); border-radius: 8px; }

#phMobile .option {
  padding: 9px 12px;
  border-radius: 6px;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
#phMobile .option:hover,
#phMobile .option[data-selected="true"] { background: rgba(93,0,213,0.25); }
#phMobile .option.opt-hide { display: none; }
#phMobile .option.no-results { color: var(--text-muted); cursor: default; }
#phMobile .option.no-results:hover { background: none; }
/* Bigin builds each option as a span.icon-text-dropdown containing
   span(country name) + span(dial code). Show both, dial code emphasised. */
#phMobile .option .icon-text-dropdown {
  display: flex;
  align-items: baseline;
  gap: 8px;
  width: 100%;
}
#phMobile .option .icon-text-dropdown span:first-child { flex: 1 1 auto; }
#phMobile .option .icon-text-dropdown span:last-child { color: var(--text-muted); }

/* Bigin validation error styling */
#aspiraLeadForm .wf-field-error {
  display: block;
  color: #ff6b8a;
  font-size: 13px;
  margin-top: 6px;
}
#aspiraLeadForm .wf-field-error-active input,
#aspiraLeadForm .wf-field-error-active #phMobile.multiselect {
  border-color: #ff6b8a;
}

.form-submit { width: 100%; margin-top: 8px; }
.form-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 13px;
  margin-top: 16px;
}
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius-sm);
  background: rgba(93,0,213,0.08);
}
.form-success h3 { font-family: var(--font-display); font-size: 22px; margin-bottom: 8px; }
.form-success p { color: var(--text-muted); }

/* ============================================================
   Final CTA
   ============================================================ */
.final-cta-card {
  max-width: 894px;
  margin: 0 auto;
  border: 1px solid var(--accent-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(93,0,213,0.2);
  background: linear-gradient(151deg, rgba(93,0,213,0.1) 0%, rgba(255,212,0,0.05) 50%, rgba(93,0,213,0.1) 100%), var(--bg-2);
  padding: 48px;
  text-align: center;
}
.cta-checklist {
  max-width: 448px;
  margin: 32px auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cta-check {
  display: flex; align-items: center; gap: 12px;
  font-size: 16px;
}
.cta-check .bf-bullet { width: 24px; height: 24px; }
.final-cta-note { color: var(--text-muted); font-size: 14px; margin-top: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(31,31,40,0.2) 100%);
}
.faq-list {
  max-width: 768px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  text-align: left;
  cursor: pointer;
}
.faq-q .chev { width: 20px; height: 20px; flex-shrink: 0; color: var(--text-muted); transition: transform .25s ease; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease;
}
.faq-a-inner { padding: 0 24px 18px; color: var(--text-muted); font-size: 16px; line-height: 1.6; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
}
.footer-brand p { color: var(--text-muted); font-size: 14px; line-height: 1.5; margin-top: 16px; max-width: 360px; }
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { color: var(--text-muted); font-size: 14px; transition: color .15s ease; }
.footer-col ul li a:hover { color: var(--text); }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact .row { display: flex; align-items: center; gap: 8px; color: var(--text-muted); font-size: 14px; }
.footer-contact .row svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 32px;
  padding-top: 32px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
}

/* ============================================================
   Scroll reveal animation
   ============================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-image { order: -1; }
  .exp-grid { grid-template-columns: 1fr; }
  .bf-grid { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; max-width: 460px; margin-left:auto; margin-right:auto; }
  .community-grid { grid-template-columns: 1fr; gap: 32px; }
  .community-image { order: -1; }
  .mentor-grid { grid-template-columns: 1fr; justify-items: center; text-align: left; }
  .mentor-photo { max-width: 320px; }
  .timeline-steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .timeline-steps .tl-step::after { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .container { padding: 0 18px; }
  .hero-badges { grid-template-columns: 1fr; }
  .community-tags { grid-template-columns: 1fr; }
  .timeline-steps { grid-template-columns: 1fr; }
  .tl-num { right: calc(50% - 60px); }
  .brand-tag { display: none; }
  .final-cta-card { padding: 28px 20px; }
  .cta-check { font-size: 15px; }
  /* On very small screens hide "Call Now" text, keep icon only */
  .btn-outline .btn-call-text { display: none; }
}

/* ============================================================
   WhatsApp Community Floating Button
   ============================================================ */
.wa-float {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  text-decoration: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 4px 12px rgba(0,0,0,0.3);
  transition: transform .2s ease, box-shadow .2s ease, padding .2s ease;
  overflow: hidden;
  max-width: 200px;
  white-space: nowrap;
}
.wa-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37,211,102,0.55), 0 4px 12px rgba(0,0,0,0.3);
}
.wa-float svg { width: 26px; height: 26px; flex-shrink: 0; }
.wa-float-label { font-size: 14px; font-weight: 600; }

/* Pulse ring behind the button */
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25d366;
  opacity: 0.5;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);    opacity: 0.45; }
  100% { transform: scale(1.12); opacity: 0;    }
}
@media (max-width: 560px) {
  /* Pill collapses to icon-only circle on mobile */
  .wa-float { padding: 14px; border-radius: 50%; max-width: 56px; }
  .wa-float-label { display: none; }
  .wa-float::before { border-radius: 50%; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
  .wa-float:hover   { transform: none; }
}
