/* ===== RESET & VARIABLES ===== */
:root {
  --navy: #0a1628;
  --navy-light: #142038;
  --navy-mid: #1a2d4a;
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a68a3e;
  --gold-bg: #fdf8ec;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --teal: #0ea5a0;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-600: #4b5563;
  --gray-800: #1f2937;
  --text: #374151;
  --text-light: #6b7280;
  --text-dark: #111827;
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
  --shadow-gold: 0 8px 32px rgba(201,168,76,0.2);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Plus Jakarta Sans', var(--font);
}

/* Performance: reduce layout shifts */
img { max-width: 100%; height: auto; }

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body { font-family: var(--font); color: var(--text); line-height: 1.6; background: var(--white); overflow-x: hidden; }

h1,h2,h3,h4,h5,h6 { font-family: var(--font-display); color: var(--text-dark); line-height: 1.25; font-weight: 700; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 20px; }
.section { padding: 96px 0; }

/* Skip link (accessibility) */
.skip-link {
  position: absolute; top: -100px; left: 16px; z-index: 10000;
  padding: 12px 24px; background: var(--navy); color: var(--white);
  border-radius: var(--radius-sm); font-weight: 600; font-size: 0.9rem;
  transition: top 0.3s ease;
}
.skip-link:focus { top: 16px; }

/* Reveal animations */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius-sm); font-weight: 600;
  font-size: 0.9rem; border: 2px solid transparent; cursor: pointer;
  transition: var(--transition); white-space: nowrap; letter-spacing: 0.01em;
}
.btn-gold {
  background: var(--gold); color: var(--navy); border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark); border-color: var(--gold-dark);
  box-shadow: var(--shadow-gold); transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy); color: var(--white); border-color: var(--navy);
}
.btn-navy:hover {
  background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-md);
}
.btn-ghost-white {
  background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); transform: translateY(-2px);
}
.btn-lg { padding: 16px 36px; font-size: 0.95rem; border-radius: var(--radius); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 12px 0; transition: var(--transition);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); box-shadow: var(--shadow-xs);
}
.navbar.scrolled {
  padding: 10px 0;
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
}
.logo-img { height: 70px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  padding: 8px 16px; font-size: 0.88rem; font-weight: 500; color: var(--gray-600);
  border-radius: var(--radius-sm); transition: var(--transition);
}
.nav-links a:hover { color: var(--navy); background: var(--gray-100); }
.nav-links a.active { color: var(--navy); font-weight: 600; }
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 10px 22px; font-size: 0.85rem; }

/* Nav user (logged in) */
.nav-user-btn {
  display: flex; align-items: center; gap: 8px; padding: 6px 16px 6px 6px;
  background: var(--gold-bg); border-radius: 50px; text-decoration: none;
  transition: all 0.2s ease; border: 1.5px solid rgba(201,168,76,0.3);
}
.nav-user-btn:hover { background: rgba(201,168,76,0.2); border-color: var(--gold); }
.nav-user-avatar {
  width: 30px; height: 30px; border-radius: 50%; background: var(--navy);
  color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 800;
}
.nav-user-name { font-size: 0.82rem; font-weight: 600; color: var(--navy); }

/* Mobile menu */
.menu-toggle { display: none; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: var(--radius-sm); }
.menu-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: var(--transition); position: relative; }
.menu-toggle span::before, .menu-toggle span::after {
  content: ''; position: absolute; width: 22px; height: 2px; background: var(--gray-800);
  border-radius: 2px; transition: var(--transition); left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after { top: 7px; }
.menu-toggle.active span { background: transparent; }
.menu-toggle.active span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.active span::after { top: 0; transform: rotate(-45deg); }

/* Mobile overlay */
.mobile-overlay {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4);
  z-index: 998; opacity: 0; transition: opacity 0.3s ease;
}
.mobile-overlay.active { display: block; opacity: 1; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding-top: 100px;
  background: var(--navy); position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 20%, rgba(201,168,76,0.08) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(37,99,235,0.06) 0%, transparent 50%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  position: relative; z-index: 2;
}
.hero-content { padding: 40px 0; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50px; font-size: 0.82rem; font-weight: 600; color: var(--gold-light);
  margin-bottom: 28px; letter-spacing: 0.03em;
}
.hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero h1 { font-size: 3.2rem; color: var(--white); font-weight: 800; margin-bottom: 20px; line-height: 1.15; }
.hero h1 .gold { color: var(--gold); }
.hero-desc { font-size: 1.08rem; color: var(--gray-400); margin-bottom: 36px; max-width: 560px; line-height: 1.75; margin-left: auto; margin-right: auto; }
.hero-actions { display: flex; gap: 14px; margin-bottom: 52px; flex-wrap: wrap; justify-content: center; }
.hero-stats { display: flex; gap: 40px; justify-content: center; }
.hero-stat { text-align: center; }
.hero-stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: var(--white); display: block; }
.hero-stat-label { font-size: 0.8rem; color: var(--gray-400); font-weight: 500; letter-spacing: 0.03em; }

.hero-image { position: relative; }
.hero-img-wrapper {
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: 0 32px 64px rgba(0,0,0,0.4); position: relative;
}
.hero-img-wrapper img { width: 100%; height: 520px; object-fit: cover; display: block; }
.hero-img-wrapper::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,22,40,0.3));
}
.hero-float-card {
  position: absolute; padding: 16px 20px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; font-weight: 600; color: var(--navy);
}
.hero-float-card.card-1 { bottom: 40px; left: -30px; }
.hero-float-card.card-2 { top: 40px; right: -20px; }
.float-icon {
  width: 40px; height: 40px; border-radius: 10px; display: flex;
  align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.float-icon.gold-bg { background: var(--gold-bg); }
.float-icon.blue-bg { background: #eff6ff; }

/* ===== TRUST BAR ===== */
.trust-bar {
  padding: 0; background: var(--navy); position: relative; overflow: hidden;
}
.trust-bar::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, transparent 50%, rgba(212,175,55,0.08) 100%);
  pointer-events: none;
}
.trust-items {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
}
.trust-item {
  display: flex; flex-direction: column; align-items: center; gap: 14px;
  font-size: 0.85rem; color: rgba(255,255,255,0.9); font-weight: 600;
  padding: 36px 20px; text-align: center; position: relative;
  transition: all 0.3s ease; letter-spacing: 0.02em;
}
.trust-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%;
  width: 1px; background: rgba(255,255,255,0.1);
}
.trust-item:hover { background: rgba(212,175,55,0.1); }
.trust-item:hover .trust-icon { transform: scale(1.1); box-shadow: 0 8px 32px rgba(212,175,55,0.3); }
a.trust-link { text-decoration: none; color: inherit; cursor: pointer; }
.trust-icon {
  width: 52px; height: 52px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy);
  box-shadow: 0 4px 20px rgba(212,175,55,0.25); transition: all 0.3s ease;
}
.trust-icon svg { width: 24px; height: 24px; stroke-width: 2; }

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-tag {
  display: inline-block; padding: 5px 14px; background: var(--gold-bg);
  color: var(--gold-dark); border-radius: 50px; font-size: 0.78rem;
  font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em;
}
.section-header h2 { font-size: 2.25rem; margin-bottom: 14px; }
.section-header p { font-size: 1rem; color: var(--text-light); line-height: 1.7; }

/* ===== ABOUT PREVIEW ===== */
.about-preview { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 { font-size: 2.1rem; margin-bottom: 16px; }
.about-text p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 14px; }
.about-highlights { display: flex; gap: 32px; margin-top: 28px; justify-content: center; }
.about-highlight { display: flex; align-items: flex-start; gap: 12px; }
.about-highlight-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--gold-bg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.about-highlight-icon svg { width: 24px; height: 24px; }
.about-highlight h4 { font-size: 0.9rem; margin-bottom: 2px; }
.about-highlight p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ===== SERVICES ===== */
.services-section { background: var(--off-white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px 28px;
  border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; background: var(--gold-bg); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--navy);
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ===== WHY PLEDGECA ===== */
.why-section { background: var(--navy); color: var(--white); position: relative; overflow: hidden; }
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.06) 0%, transparent 50%);
}
.why-section .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); }
.why-section .section-header h2 { color: var(--white); }
.why-section .section-header p { color: var(--gray-400); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; position: relative; z-index: 1; }
.why-card {
  display: flex; gap: 16px; padding: 28px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06); border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.08); transform: translateX(4px); }
.why-num {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  color: var(--gold); line-height: 1; min-width: 32px;
}
.why-card h3 { font-size: 0.95rem; color: var(--white); margin-bottom: 6px; }
.why-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.65; margin: 0; }
.why-highlight {
  grid-column: 1 / -1; background: linear-gradient(135deg, var(--gold-dark), var(--gold)) !important;
  border-color: transparent !important; text-align: center; justify-content: center;
  flex-direction: column; align-items: center; padding: 36px;
}
.why-highlight h3 { color: var(--navy) !important; font-size: 1.2rem; }
.why-highlight p { color: rgba(10,22,40,0.7) !important; }

/* ===== COUNSELING ===== */
.counseling-section { background: var(--white); }
.counseling-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.counseling-img img {
  width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.counseling-text .section-tag { margin-bottom: 14px; }
.counseling-text h2 { font-size: 2.1rem; margin-bottom: 16px; }
.counseling-text > p { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; margin-bottom: 32px; }
.counseling-steps { display: flex; flex-direction: column; gap: 16px; }
.c-step {
  display: flex; align-items: flex-start; gap: 16px; padding: 20px;
  border-radius: var(--radius); border: 1px solid var(--gray-200); transition: var(--transition);
}
.c-step:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.c-step-time {
  padding: 6px 14px; background: var(--navy); color: var(--gold); border-radius: 6px;
  font-size: 0.78rem; font-weight: 700; white-space: nowrap;
}
.c-step h4 { font-size: 0.92rem; margin-bottom: 2px; }
.c-step p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ===== HOW IT WORKS ===== */
.process-section { background: var(--off-white); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.process-card { text-align: center; padding: 32px 20px; position: relative; }
.process-num {
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--gray-200); line-height: 1; margin-bottom: 16px;
}
.process-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--navy); }
.process-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }
.process-arrow {
  position: absolute; top: 40px; right: -12px; color: var(--gold);
  font-size: 1.2rem; display: block;
}

/* ===== TESTIMONIALS CAROUSEL ===== */
.testimonials-section { background: var(--white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonials-grid .testi-card { width: auto; margin: 0; }

.carousel-wrapper {
  position: relative; display: flex; align-items: center; gap: 12px;
}
.carousel-viewport {
  overflow: hidden; flex: 1; border-radius: var(--radius-lg);
}
.carousel-track {
  display: flex; transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-track.no-transition { transition: none; }

.carousel-btn {
  width: 48px; height: 48px; min-width: 48px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); color: var(--navy);
  box-shadow: var(--shadow-sm); z-index: 2;
}
.carousel-btn:hover { background: var(--navy); color: var(--white); border-color: var(--navy); box-shadow: var(--shadow-md); }

.testi-card {
  padding: 32px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200); flex-shrink: 0;
  width: calc(33.333% - 16px); margin: 0 8px; box-sizing: border-box;
}
.testi-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 3px; }
.testi-card blockquote {
  font-size: 0.9rem; color: var(--text); line-height: 1.75; margin-bottom: 12px; font-style: italic;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical;
  overflow: hidden;
}
.testi-card.expanded blockquote {
  -webkit-line-clamp: unset; overflow: visible;
}
.testi-read-more {
  background: none; border: none; color: var(--gold-dark); font-size: 0.82rem;
  font-weight: 600; cursor: pointer; padding: 0; margin-bottom: 16px;
  font-family: var(--font); display: none;
}
.testi-read-more:hover { color: var(--gold); text-decoration: underline; }
.testi-card.clamped .testi-read-more { display: inline-block; }
.testi-card.expanded .testi-read-more span { display: none; }
.testi-card.expanded .testi-read-more::after { content: 'Show less'; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px; background: var(--navy); color: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.9rem;
}
.testi-author strong { display: block; font-size: 0.88rem; }
.testi-author span { font-size: 0.78rem; color: var(--text-light); }

/* ===== TEST SERIES PREVIEW ===== */
.test-preview { background: var(--off-white); }
.test-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.test-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.test-card:hover { box-shadow: var(--shadow-md); transform: translateY(-6px); }
.test-card-top {
  padding: 28px 24px; text-align: center;
  background: var(--navy); color: var(--white); position: relative;
}
.test-card.popular .test-card-top { background: linear-gradient(135deg, var(--gold-dark), var(--gold)); }
.test-card.popular .test-card-top * { color: var(--navy); }
.test-badge {
  position: absolute; top: 12px; right: 12px; padding: 3px 10px;
  background: rgba(255,255,255,0.2); border-radius: 50px; font-size: 0.7rem;
  font-weight: 700; letter-spacing: 0.03em;
}
.test-card-top h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 2px; }
.test-card-top span { font-size: 0.82rem; opacity: 0.7; }
.test-card-body { padding: 28px 24px; }
.test-card-body li {
  padding: 8px 0; font-size: 0.85rem; color: var(--text);
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--gray-100);
}
.test-card-body li:last-child { border-bottom: none; }
.test-card-body li::before { content: '✓'; color: var(--teal); font-weight: 700; font-size: 0.9rem; }
.test-card-body .btn { width: 100%; margin-top: 20px; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }
.cta-card {
  background: var(--navy); border-radius: var(--radius-xl); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-card::before {
  content: ''; position: absolute; top: -50%; right: -20%; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 70%);
}
.cta-card::after {
  content: ''; position: absolute; bottom: -50%; left: -20%; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.08) 0%, transparent 70%);
}
.cta-inner { position: relative; z-index: 1; }
.cta-card h2 { color: var(--white); font-size: 2.3rem; margin-bottom: 14px; }
.cta-card p { color: var(--gray-400); font-size: 1.05rem; max-width: 500px; margin: 0 auto 32px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); color: rgba(255,255,255,0.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-text { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: var(--white); text-decoration: none; display: inline-block; margin-bottom: 16px; letter-spacing: -0.02em; }
.footer-logo-text:hover { color: var(--gold); }
.footer-brand p { font-size: 0.88rem; line-height: 1.75; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }
.social-links svg { width: 16px; height: 16px; }
.footer h4 { color: var(--white); font-size: 0.9rem; margin-bottom: 18px; letter-spacing: 0.02em; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.footer-links a:hover { color: var(--gold); padding-left: 3px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact svg { color: var(--gold); flex-shrink: 0; width: 16px; height: 16px; }
.footer-contact a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); }

/* ===== PAGE HEADER ===== */
.page-hero {
  padding: 140px 0 72px; background: var(--navy); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
}
.page-hero h1 { font-size: 2.8rem; color: var(--white); margin-bottom: 14px; position: relative; }
.page-hero h1 .gold { color: var(--gold); }
.page-hero p { font-size: 1.05rem; color: var(--gray-400); max-width: 520px; margin: 0 auto; position: relative; }

/* ===== ABOUT PAGE ===== */
.about-full { background: var(--white); }
.about-full-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-full-img img {
  width: 100%; height: 480px; object-fit: cover; border-radius: var(--radius-xl); box-shadow: var(--shadow-md);
}
.about-full-text h2 { font-size: 2.1rem; margin-bottom: 16px; }
.about-full-text p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 14px; }

.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.value-card {
  text-align: center; padding: 36px 24px; background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--gray-200); transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon { margin-bottom: 14px; color: var(--navy); display: flex; align-items: center; justify-content: center; }
.value-icon svg { width: 32px; height: 32px; }
.value-card h3 { font-size: 1rem; margin-bottom: 6px; }
.value-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.65; }

.stats-section { background: var(--off-white); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 36px 16px; }
.stat-card .stat-num {
  font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: var(--navy); display: block;
}
.stat-card h4 { font-size: 0.92rem; margin-bottom: 4px; margin-top: 4px; }
.stat-card p { font-size: 0.82rem; color: var(--text-light); margin: 0; }

/* ===== SERVICES PAGE - SPLIT SECTIONS ===== */
.svc-split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.svc-split-reverse { direction: rtl; }
.svc-split-reverse > * { direction: ltr; }
.svc-illustration {
  background: var(--gray-50); border-radius: var(--radius-xl); padding: 24px;
  border: 1px solid var(--gray-200);
}
.svc-illustration svg { width: 100%; height: auto; display: block; }
.svc-split-content .section-tag { margin-bottom: 12px; }
.svc-split-content h2 { font-size: 2rem; margin-bottom: 12px; color: var(--navy); }
.svc-split-content > p { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 32px; }
.svc-points { display: flex; flex-direction: column; gap: 20px; }
.svc-point {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--gray-200); transition: var(--transition);
}
.svc-point:hover { border-color: var(--gold); box-shadow: 0 4px 16px rgba(201,168,76,0.1); transform: translateX(4px); }
.svc-point-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--gold-bg), rgba(201,168,76,0.15));
  display: flex; align-items: center; justify-content: center; color: var(--navy);
}
.svc-point-icon svg { width: 22px; height: 22px; }
.svc-point h4 { font-size: 0.92rem; margin-bottom: 4px; color: var(--navy); }
.svc-point p { font-size: 0.84rem; color: var(--text-light); line-height: 1.6; margin: 0; }

/* ===== TEST SERIES PAGES ===== */
.ts-mocks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.ts-mock-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  border: 1px solid var(--gray-200); transition: var(--transition); position: relative; overflow: hidden;
}
.ts-mock-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left;
}
.ts-mock-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ts-mock-card:hover::before { transform: scaleX(1); }
.ts-mock-card h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; }
.ts-mock-card > p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.ts-mock-card ul { list-style: none; padding: 0; margin: 0; }
.ts-mock-card ul li {
  font-size: 0.84rem; color: var(--text); padding: 6px 0; display: flex; align-items: flex-start; gap: 8px;
}
.ts-mock-card ul li::before { content: ''; width: 6px; height: 6px; min-width: 6px; background: var(--gold); border-radius: 50%; margin-top: 6px; }

/* Plans comparison */
.ts-plans-grid { display: grid; gap: 24px; max-width: 1000px; margin: 0 auto; }
.ts-plans-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.ts-plans-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.ts-plan-card {
  background: var(--white); border-radius: var(--radius-lg); border: 2px solid var(--gray-200);
  overflow: hidden; transition: var(--transition);
}
.ts-plan-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.ts-plan-card.featured { border-color: var(--gold); }
.ts-plan-header {
  padding: 28px 24px 20px; text-align: center; background: var(--gray-50); border-bottom: 1px solid var(--gray-200);
}
.ts-plan-card.featured .ts-plan-header { background: var(--navy); }
.ts-plan-card.featured .ts-plan-header h3 { color: var(--white); }
.ts-plan-card.featured .ts-plan-header .ts-plan-badge { display: inline-block; }
.ts-plan-header h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 4px; }
.ts-plan-badge {
  display: none; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em;
  background: var(--gold); color: var(--navy); padding: 3px 10px; border-radius: 20px; margin-top: 8px;
}
.ts-plan-body { padding: 20px 24px; }
.ts-plan-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--gray-100); font-size: 0.84rem;
}
.ts-plan-row:last-child { border-bottom: none; }
.ts-plan-row span:first-child { color: var(--text); }
.ts-plan-row .ts-yes { color: #059669; font-weight: 700; }
.ts-plan-row .ts-no { color: #dc2626; font-weight: 700; opacity: 0.5; }
.ts-plan-row .ts-val { color: var(--navy); font-weight: 700; }
.ts-plan-footer { padding: 16px 24px 24px; }
.ts-plan-footer .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) {
  .ts-mocks-grid { grid-template-columns: 1fr; }
  .ts-plans-grid.cols-2, .ts-plans-grid.cols-3 { grid-template-columns: 1fr; max-width: 400px; }
}

.exam-paths-section { background: var(--navy); color: var(--white); }
.exam-paths-section .section-tag { background: rgba(201,168,76,0.15); color: var(--gold-light); }
.exam-paths-section .section-header h2 { color: var(--white); }
.exam-paths-section .section-header p { color: var(--gray-400); }
.exam-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.exam-card {
  text-align: center; padding: 36px 24px; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-lg); transition: var(--transition);
}
.exam-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }
.exam-card .exam-icon { margin-bottom: 14px; display: flex; align-items: center; justify-content: center; color: var(--navy); }
.exam-card .exam-icon svg { width: 36px; height: 36px; }
.exam-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.exam-card p { font-size: 0.85rem; color: var(--gray-400); line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; }
.contact-info h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-info > p { color: var(--text-light); font-size: 0.92rem; margin-bottom: 28px; line-height: 1.75; }
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 14px; padding: 20px;
  background: var(--white); border-radius: var(--radius); border: 1px solid var(--gray-200);
}
.contact-card-icon {
  width: 44px; height: 44px; min-width: 44px; background: var(--gold-bg);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold-dark);
}
.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card h4 { font-size: 0.9rem; margin-bottom: 2px; }
.contact-card p, .contact-card a { font-size: 0.85rem; color: var(--text-light); }
.contact-card a:hover { color: var(--gold-dark); }

.contact-form-wrap {
  background: var(--white); border-radius: var(--radius-lg); padding: 40px;
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
}
.contact-form-wrap h3 { font-size: 1.3rem; margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-family: var(--font); font-size: 0.9rem;
  color: var(--text-dark); background: var(--gray-50); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 996;
  width: 56px; height: 56px; background: #25D366; color: var(--white);
  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);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ===== FAQ SECTION ===== */
.faq-section { background: var(--off-white); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: var(--transition);
}
.faq-item[open] { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.faq-question {
  padding: 20px 24px; font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; color: var(--text-dark); cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+'; font-size: 1.3rem; color: var(--gold); font-weight: 700;
  flex-shrink: 0; transition: transform 0.3s ease;
}
.faq-item[open] .faq-question::after { content: '−'; }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; }

/* ===== MOBILE BOTTOM CTA BAR ===== */
.mobile-bottom-bar {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 997;
  background: var(--white); border-top: 1px solid var(--gray-200);
  padding: 10px 16px; padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bottom-bar-inner {
  display: flex; gap: 10px; max-width: 480px; margin: 0 auto;
}
.mobile-bottom-bar .btn { flex: 1; padding: 12px 16px; font-size: 0.85rem; text-align: center; }
.mobile-bottom-bar .btn-call {
  background: transparent; color: var(--navy); border: 2px solid var(--gray-300);
  border-radius: var(--radius-sm); font-weight: 600; display: inline-flex;
  align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; font-size: 0.85rem; white-space: nowrap; flex-shrink: 0;
}
.mobile-bottom-bar .btn-call svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ===== MOBILE NAV DRAWER HEADER ===== */
li.nav-drawer-header {
  display: none; padding: 16px 20px; border-bottom: 1px solid var(--gray-200);
  align-items: center; justify-content: flex-end; width: 100%;
}
.nav-drawer-close {
  width: 40px; height: 40px; border-radius: 8px; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center; border: none;
  cursor: pointer; font-size: 1.3rem; color: var(--gray-600); transition: var(--transition);
  flex-shrink: 0;
}
.nav-drawer-close:hover { background: var(--gray-200); }

/* ===== MOBILE HORIZONTAL SCROLL HELPERS ===== */
.mobile-scroll-container {
  overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  margin: 0 -20px; padding: 0 20px;
}
.mobile-scroll-container::-webkit-scrollbar { display: none; }
.mobile-scroll-container > * { scroll-snap-align: start; }

/* ===== COLLAPSIBLE FOOTER (MOBILE) ===== */
.footer-toggle {
  display: none; width: 100%; background: none; border: none; cursor: pointer;
  padding: 0; font-family: var(--font-display); font-size: 0.9rem;
  font-weight: 700; color: var(--white); letter-spacing: 0.02em;
  justify-content: space-between; align-items: center;
}
.footer-toggle .chevron {
  transition: transform 0.3s ease; font-size: 0.7rem; color: rgba(255,255,255,0.4);
}
.footer-toggle.active .chevron { transform: rotate(180deg); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero h1 { font-size: 2.6rem; }
  .services-grid, .testimonials-grid, .test-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-arrow { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  /* Bottom bar visible on mobile */
  .mobile-bottom-bar { display: block; }
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }

  /* Nav drawer improvements */
  .menu-toggle { display: flex; }

  .nav-links {
    position: fixed; top: 0; right: -100%; width: 85vw; max-width: 320px; height: 100vh;
    height: 100dvh; background: var(--white); flex-direction: column;
    padding: 0 0 24px; gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1); z-index: 999; overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav-links.active { right: 0; }
  li.nav-drawer-header { display: flex; }
  .nav-links li { padding: 4px 20px; }
  .nav-links li.nav-drawer-header { padding: 0; }
  .nav-links a {
    width: 100%; padding: 14px 16px; font-size: 1rem;
    border-radius: var(--radius-sm); display: flex; align-items: center; gap: 10px;
    text-align: left;
  }
  .nav-links a.active { background: var(--gold-bg); color: var(--gold-dark); font-weight: 700; }
  .nav-cta { margin-left: 0; margin-top: 8px; padding: 0 16px !important; width: 100%; }
  .nav-cta .btn { width: 100%; justify-content: center; padding: 14px 20px; }

  /* Hero mobile */
  .hero { min-height: auto; padding-top: 80px; padding-bottom: 48px; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hero h1 { font-size: 2rem; line-height: 1.2; }
  .hero-badge { font-size: 0.75rem; margin-bottom: 20px; }
  .hero-desc { margin: 0 auto 28px; font-size: 0.95rem; }
  .hero-actions { justify-content: center; flex-direction: column; align-items: center; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
  .hero-stats { justify-content: center; gap: 24px; }
  .hero-stat { text-align: center; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-stat-label { font-size: 0.75rem; }
  .hero-float-card { display: none; }
  .hero-image { display: none; }

  /* Trust bar as 2x2 grid */
  .trust-items { grid-template-columns: 1fr 1fr; }
  .trust-item { padding: 24px 12px; font-size: 0.78rem; gap: 10px; }
  .trust-item:not(:last-child)::after { display: none; }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-icon { width: 44px; height: 44px; border-radius: 12px; }
  .trust-icon svg { width: 20px; height: 20px; }

  /* About section mobile */
  .about-grid, .about-full-grid, .counseling-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .about-full-img img { height: 220px; border-radius: var(--radius); }
  .about-highlights { justify-content: center; flex-wrap: wrap; gap: 16px; }
  .about-highlight { text-align: left; }
  .about-text h2, .about-full-text h2 { font-size: 1.6rem; }
  .about-text p, .about-full-text p { font-size: 0.9rem; }

  /* Section headers mobile */
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: 1.65rem; }
  .section-header p { font-size: 0.9rem; }

  /* Services grid mobile */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card { padding: 24px 20px; display: grid; grid-template-columns: 48px 1fr; gap: 12px 16px; align-items: start; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 2px; grid-column: 2; }
  .service-card p { font-size: 0.83rem; grid-column: 2; }
  .service-icon { margin-bottom: 0; min-width: 48px; width: 48px; height: 48px; grid-row: 1 / 3; }

  /* Services full cards mobile */
  .services-full-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-split { grid-template-columns: 1fr; gap: 32px; }
  .svc-split-reverse { direction: ltr; }
  .svc-split-content h2 { font-size: 1.5rem; }
  .svc-point { padding: 14px; }
  .svc-point-icon { width: 38px; height: 38px; min-width: 38px; }
  .svc-point-icon svg { width: 18px; height: 18px; }
  .svc-illustration { padding: 16px; }

  /* Why section mobile */
  .why-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-card { padding: 20px; }
  .why-card h3 { font-size: 0.9rem; }
  .why-card p { font-size: 0.82rem; }
  .why-highlight { padding: 24px; }

  /* Counseling mobile */
  .counseling-img img { height: 200px; border-radius: var(--radius); }
  .counseling-text h2 { font-size: 1.6rem; }
  .c-step { padding: 16px; }
  .c-step-time { font-size: 0.72rem; padding: 5px 10px; }

  /* Process mobile */
  .process-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .process-card { padding: 24px 16px; }
  .process-num { font-size: 2.2rem; margin-bottom: 10px; }
  .process-arrow { display: none; }

  /* Testimonials carousel mobile */
  .carousel-wrapper { gap: 4px; }
  .carousel-btn { width: 32px; height: 32px; min-width: 32px; }
  .carousel-btn svg { width: 14px; height: 14px; }
  .carousel-track { align-items: flex-start; }
  .testi-card { width: calc(100% - 16px); padding: 20px; }
  .testi-card blockquote { font-size: 0.85rem; margin-bottom: 12px; }

  /* Testimonials grid (services page) - horizontal scroll on mobile */
  .testimonials-grid {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 14px; padding-bottom: 8px; -webkit-overflow-scrolling: touch;
  }
  .testimonials-grid .testi-card {
    min-width: 280px; max-width: 300px; flex-shrink: 0; scroll-snap-align: start;
    width: auto; margin: 0;
  }

  /* Test cards horizontal scroll */
  .test-cards {
    display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 -20px; padding: 0 20px 8px;
  }
  .test-cards::-webkit-scrollbar { display: none; }
  .test-card { min-width: 270px; max-width: 300px; flex-shrink: 0; scroll-snap-align: start; }
  .test-card-top { padding: 20px 18px; }
  .test-card-body { padding: 20px 18px; }

  /* Exam grid mobile */
  .exam-grid { grid-template-columns: 1fr; gap: 12px; }
  .exam-card { padding: 20px; display: flex; gap: 14px; align-items: flex-start; text-align: left; flex-wrap: nowrap; }
  .exam-card .exam-icon { margin-bottom: 0; min-width: 40px; flex-shrink: 0; }
  .exam-card .exam-icon svg { width: 28px; height: 28px; }
  .exam-card h3 { font-size: 0.95rem; margin-bottom: 4px; }
  .exam-card p { font-size: 0.82rem; }

  /* Values grid mobile */
  .values-grid { grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
  .value-card { padding: 24px 20px; display: flex; gap: 16px; align-items: flex-start; text-align: left; }
  .value-icon { margin-bottom: 0; min-width: 40px; }
  .value-icon svg { width: 28px; height: 28px; }

  /* Stats mobile */
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-card { padding: 24px 12px; }
  .stat-card .stat-num { font-size: 2rem; }
  .stat-card h4 { font-size: 0.82rem; }
  .stat-card p { font-size: 0.75rem; }

  /* Contact mobile */
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-info { text-align: center; }
  .contact-info h2 { font-size: 1.4rem; }
  .contact-cards { gap: 12px; }
  .contact-card { padding: 16px; gap: 12px; text-align: left; align-items: center; }
  .contact-card h4 { font-size: 0.85rem; }
  .contact-card p, .contact-card a { font-size: 0.82rem; }
  .contact-info > div[style] { text-align: center; }
  .contact-info .social-links { justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .contact-form-wrap h3 { font-size: 1.1rem; }
  .form-group input, .form-group textarea { font-size: 16px; padding: 14px 16px; }

  /* Footer collapsible mobile */
  .footer { padding: 48px 0 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 0; padding-bottom: 24px; }
  .footer-brand { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 8px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer-toggle { display: flex; }
  .footer-grid > div:not(.footer-brand) { border-bottom: 1px solid rgba(255,255,255,0.06); padding: 14px 0; }
  .footer-grid > div:not(.footer-brand) h4 { display: none; }
  .footer-grid > div:not(.footer-brand) .footer-links,
  .footer-grid > div:not(.footer-brand) .footer-contact {
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0;
  }
  .footer-grid > div:not(.footer-brand).expanded .footer-links,
  .footer-grid > div:not(.footer-brand).expanded .footer-contact {
    max-height: 300px; padding-top: 10px;
  }
  .footer-bottom { padding: 20px 0; padding-bottom: calc(20px + env(safe-area-inset-bottom, 0px)); font-size: 0.75rem; }

  /* Page hero mobile */
  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: 2rem; }
  .page-hero p { font-size: 0.92rem; }

  /* CTA mobile */
  .cta-section { padding: 48px 0; }
  .cta-card { padding: 40px 20px; border-radius: var(--radius-lg); }
  .cta-card h2 { font-size: 1.6rem; }
  .cta-card p { font-size: 0.92rem; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 300px; }

  /* WhatsApp button above bottom bar */
  .whatsapp-float { bottom: calc(80px + env(safe-area-inset-bottom, 0px)); right: 14px; width: 52px; height: 52px; box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  .whatsapp-float svg { width: 26px; height: 26px; }

  /* All buttons better touch targets */
  .btn { min-height: 44px; }
  .btn-lg { min-height: 48px; }
}

@media (max-width: 480px) {
  .section { padding: 48px 0; }
  .hero h1 { font-size: 1.75rem; }
  .hero-desc { font-size: 0.9rem; }
  .hero-stats { gap: 16px; }
  .hero-stat-num { font-size: 1.3rem; }
  .section-header h2 { font-size: 1.45rem; }
  .process-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-card { display: flex; gap: 16px; text-align: left; padding: 20px 16px; }
  .process-num { font-size: 1.6rem; margin-bottom: 0; min-width: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .trust-item { font-size: 0.72rem; padding: 18px 8px; gap: 8px; }
  .trust-icon { width: 38px; height: 38px; border-radius: 10px; }
  .trust-icon svg { width: 18px; height: 18px; }

  /* Test cards slightly smaller */
  .test-card { min-width: 260px; }

  .about-text h2, .about-full-text h2 { font-size: 1.45rem; }
  .counseling-text h2 { font-size: 1.45rem; }
  .page-hero h1 { font-size: 1.75rem; }
  .cta-card h2 { font-size: 1.4rem; }
}
