/* ============================================
   SCHOLVIA — Version D: The Best of Both
   Main Stylesheet
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,700;1,400&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --royal-blue: #E85D3A;
  --magenta: #E85D3A;
  --lavender-white: #FFFBF0;
  --white: #FFFFFF;
  --deep-indigo: #2A1F1A;
  --soft-peach: #FFE8D6;
  --light-gray: #9A9AAF;
  --morning-blue: #FFE8D6;
  --afternoon-lavender: #FFF0E0;
  --evening-purple: #FFD6BA;

  --font-heading: 'Outfit', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --shadow-sm: 0 2px 8px rgba(45,49,66,0.06);
  --shadow-md: 0 8px 24px rgba(45,49,66,0.08);
  --shadow-lg: 0 16px 48px rgba(45,49,66,0.12);
  --shadow-glow-blue: 0 0 40px rgba(232,93,58,0.15);
  --shadow-glow-magenta: 0 0 40px rgba(232,93,58,0.12);

  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--deep-indigo);
  background: var(--lavender-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Scroll Progress Bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--magenta));
  z-index: 10001;
  transition: width 0.1s linear;
}

/* ---------- Section Label ---------- */
.section-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--royal-blue);
  margin-bottom: 12px;
  display: inline-block;
}

.section-title {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--deep-indigo);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--light-gray);
  max-width: 600px;
  margin: 0 auto 48px;
  font-weight: 300;
}

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

/* ---------- Text Gradient ---------- */
.text-gradient {
  background: linear-gradient(135deg, var(--royal-blue), var(--magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--magenta);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,93,58,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,58,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--deep-indigo);
  border: 2px solid rgba(26,26,46,0.2);
}
.btn-outline-dark:hover {
  background: var(--deep-indigo);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-blue {
  background: var(--royal-blue);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,93,58,0.3);
}
.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(232,93,58,0.4);
}

/* ---------- Glass Cards ---------- */
.glass-card {
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.glass-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-lg);
}

.glass-card-dark {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: var(--transition);
}
.glass-card-dark:hover {
  transform: translateY(-4px) scale(1.02);
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 12px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo img {
  height: 36px;
  transition: var(--transition);
}

.nav-logo .logo-white { display: block; }
.nav-logo .logo-color { display: none; }
.navbar.scrolled .nav-logo .logo-white { display: none; }
.navbar.scrolled .nav-logo .logo-color { display: block; }

/* Inner pages: nav starts scrolled */
.inner-page .navbar { background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 20px rgba(0,0,0,0.06); padding: 12px 0; }
.inner-page .nav-logo .logo-white { display: none; }
.inner-page .nav-logo .logo-color { display: block; }
.inner-page .nav-links a { color: var(--deep-indigo); }
.inner-page .nav-links a:hover { color: var(--royal-blue); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a { color: var(--deep-indigo); }
.navbar.scrolled .nav-links a:hover { color: var(--royal-blue); }

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--magenta);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 10px 24px !important;
  background: var(--magenta) !important;
  color: var(--white) !important;
  border-radius: var(--radius-full) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 12px rgba(232,93,58,0.25);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,58,0.35) !important;
}
.navbar.scrolled .nav-cta { color: var(--white) !important; }

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 10002;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.navbar.scrolled .nav-toggle span,
.inner-page .nav-toggle span { background: var(--deep-indigo); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(7px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-7px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--deep-indigo);
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(232,93,58,0.25) 0%, transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(255,200,160,0.12) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 100%, rgba(42,31,26,0.85) 0%, transparent 60%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  z-index: 3;
  background-image: radial-gradient(rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero .container {
  position: relative;
  z-index: 4;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(34,197,94,0); }
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Dashboard Card */
.hero-dashboard {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
}

.hero-dashboard::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px; right: -1px; bottom: -1px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(232,93,58,0.3), rgba(232,93,58,0.15), transparent);
  z-index: -1;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
}

.dashboard-header {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 28px;
}

.dashboard-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.stat-item {
  text-align: center;
  padding: 20px 16px;
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,255,255,0.06);
}

.stat-value {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-value .counter-suffix {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

/* ---------- Trust Signals Bar ---------- */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid rgba(232,93,58,0.06);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.trust-icon {
  width: 52px;
  height: 52px;
  background: var(--lavender-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 24px;
  height: 24px;
  color: var(--royal-blue);
}

.trust-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--deep-indigo);
}

/* ---------- Why Students Choose Us ---------- */
.why-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 40% 20%, rgba(232,93,58,0.04) 0%, transparent 50%),
    radial-gradient(at 80% 70%, rgba(232,93,58,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
}

.why-card {
  text-align: center;
  padding: 48px 32px;
}

.why-card-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: var(--lavender-white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-card-icon svg {
  width: 32px;
  height: 32px;
  color: var(--royal-blue);
}

.why-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.95rem;
  color: var(--light-gray);
  line-height: 1.7;
  font-weight: 300;
}

/* ---------- A Day in the Life ---------- */
.day-section {
  padding: 100px 0;
  background: var(--soft-peach);
  position: relative;
}

.day-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.day-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.day-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.day-card-top {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  position: relative;
}

.day-card-top.morning { background: var(--morning-blue); }
.day-card-top.afternoon { background: var(--afternoon-lavender); }
.day-card-top.evening { background: var(--evening-purple); }

.day-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  background: rgba(255,255,255,0.7);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--deep-indigo);
}

.day-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.day-card-body {
  padding: 28px 28px 32px;
}

.day-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.day-card-body .student-name {
  font-size: 0.85rem;
  color: var(--magenta);
  font-weight: 500;
  margin-bottom: 14px;
}

.day-card-body blockquote {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}

/* ---------- How It Works Stepper ---------- */
.steps-section {
  padding: 100px 0;
  background: var(--lavender-white);
  position: relative;
}

.steps-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 20% 50%, rgba(232,93,58,0.05) 0%, transparent 50%),
    radial-gradient(at 80% 50%, rgba(232,93,58,0.04) 0%, transparent 50%);
  pointer-events: none;
}

.stepper {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--royal-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--royal-blue);
  position: relative;
  z-index: 3;
  transition: var(--transition);
}

.step:hover .step-circle {
  background: var(--royal-blue);
  color: var(--white);
  transform: scale(1.1);
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.88rem;
  color: var(--light-gray);
  max-width: 220px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.6;
}

.stepper-line {
  position: absolute;
  top: 36px;
  left: 16.66%;
  right: 16.66%;
  height: 3px;
  background: linear-gradient(90deg, var(--royal-blue), var(--magenta));
  z-index: 1;
  border-radius: 2px;
}

/* ---------- Meet Your Guide ---------- */
.guide-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.guide-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}

.guide-photo-wrapper {
  position: relative;
  width: 260px;
  height: 260px;
}

.guide-photo {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--royal-blue);
  position: relative;
  z-index: 2;
}

.guide-photo-wrapper::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(232,93,58,0.15);
  z-index: 1;
}

.guide-photo-wrapper::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,58,0.08) 0%, transparent 70%);
  z-index: 0;
}

.guide-content blockquote {
  font-size: 1.25rem;
  line-height: 1.7;
  color: var(--deep-indigo);
  font-style: italic;
  font-weight: 400;
  margin-bottom: 20px;
  padding-left: 24px;
  border-left: 4px solid var(--royal-blue);
  position: relative;
}

.guide-content blockquote::before {
  content: '\201C';
  position: absolute;
  top: -20px;
  left: 24px;
  font-size: 4rem;
  color: rgba(232,93,58,0.12);
  font-family: Georgia, serif;
  line-height: 1;
}

.guide-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--deep-indigo);
  margin-bottom: 2px;
}

.guide-role {
  font-size: 0.88rem;
  color: var(--light-gray);
  margin-bottom: 28px;
}

.guide-stats {
  display: flex;
  gap: 24px;
}

.guide-stat {
  display: flex;
  align-items: center;
  gap: 12px;
}

.guide-stat-icon {
  width: 44px;
  height: 44px;
  background: var(--lavender-white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.guide-stat-icon svg {
  width: 20px;
  height: 20px;
  color: var(--royal-blue);
}

.guide-stat-text {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
}

/* ---------- Transparency Dashboard ---------- */
.transparency-section {
  padding: 100px 0;
  background: var(--deep-indigo);
  position: relative;
  overflow: hidden;
}

.transparency-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(232,93,58,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(255,200,160,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.transparency-section .section-label { color: rgba(232,93,58,0.8); }
.transparency-section .section-title { color: var(--white); }
.transparency-section .section-subtitle { color: rgba(255,255,255,0.5); }

.transparency-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

.metric-card {
  text-align: center;
  padding: 40px 24px;
}

.metric-value {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.metric-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
  margin-bottom: 12px;
}

.metric-bar {
  height: 4px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 16px;
}

.metric-bar-fill {
  height: 100%;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--royal-blue), var(--magenta));
  width: 0%;
  transition: width 1.5s ease-out;
}

.transparency-note {
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
  position: relative;
  z-index: 2;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  padding: 100px 0;
  background: var(--lavender-white);
  position: relative;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  position: relative;
}

.testimonial-card.border-blue { border-left: 4px solid var(--royal-blue); }
.testimonial-card.border-magenta { border-left: 4px solid var(--magenta); }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
}

.testimonial-avatar.bg-blue { background: var(--royal-blue); }
.testimonial-avatar.bg-magenta { background: var(--magenta); }

.testimonial-info h4 {
  font-size: 1rem;
  font-weight: 600;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: var(--light-gray);
}

.testimonial-stars {
  color: #FBBF24;
  font-size: 0.85rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.92rem;
  color: #555;
  line-height: 1.7;
  font-style: italic;
  font-weight: 300;
}

.testimonial-tag {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 12px;
  font-size: 0.72rem;
  font-family: var(--font-heading);
  font-weight: 600;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-tag.tag-student {
  background: rgba(232,93,58,0.08);
  color: var(--royal-blue);
}

.testimonial-tag.tag-parent {
  background: rgba(232,93,58,0.08);
  color: var(--magenta);
}

/* ---------- CTA Section ---------- */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #3D2A1E 0%, var(--deep-indigo) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 50%, rgba(232,93,58,0.25) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(255,200,160,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.cta-section .container { position: relative; z-index: 2; }

.cta-section h2 {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 20px;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 300;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--deep-indigo);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(232,93,58,0.12) 0%, transparent 50%);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 16px 0 24px;
  font-weight: 300;
}

.footer-brand img {
  height: 32px;
  margin-bottom: 8px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--royal-blue);
  border-color: var(--royal-blue);
  transform: translateY(-2px);
}

.footer-socials a svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.6);
}

.footer-socials a:hover svg { fill: var(--white); }

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.footer-col a {
  display: block;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 12px;
  font-weight: 300;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
}

.footer-bottom p, .footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom p::after {
  content: '\00b7';
  margin-left: 8px;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ---------- WhatsApp Floating Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px 12px 16px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 10px 32px rgba(37,211,102,0.45);
  color: var(--white);
}

.whatsapp-float svg {
  width: 22px;
  height: 22px;
  fill: var(--white);
}

/* ---------- 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-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ---------- Page Hero (Inner Pages) ---------- */
.page-hero {
  background: var(--deep-indigo);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 40% 40%, rgba(232,93,58,0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255,200,160,0.1) 0%, transparent 50%);
  pointer-events: none;
}

.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 2; }

.page-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.6);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

/* ---------- prefers-reduced-motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-title { font-size: 3rem; }
  .hero-dashboard { max-width: 480px; }
  .transparency-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    transition: var(--transition-slow);
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    z-index: 10001;
  }
  .nav-links.active { right: 0; }
  .nav-links a { color: var(--deep-indigo) !important; font-size: 1.1rem; }
  .nav-toggle { display: flex; }

  .hero { padding: 140px 0 60px; min-height: auto; }
  .hero-title { font-size: 2.4rem; }
  .hero-subtitle { font-size: 1rem; }

  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .why-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .day-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .stepper { flex-direction: column; align-items: center; gap: 40px; }
  .stepper-line {
    display: none;
  }

  .guide-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .guide-photo-wrapper { margin: 0 auto; width: 200px; height: 200px; }
  .guide-photo { width: 200px; height: 200px; }
  .guide-content blockquote { text-align: left; }
  .guide-stats { justify-content: center; flex-wrap: wrap; }

  .transparency-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .section-title { font-size: 2rem; }
  .cta-section h2 { font-size: 2rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-socials { justify-content: center; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

  .page-hero { padding: 140px 0 60px; }
  .page-hero h1 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-title { font-size: 2rem; }
  .hero-buttons { flex-direction: column; }
  .dashboard-stats { grid-template-columns: 1fr 1fr; gap: 12px; }
  .trust-grid { grid-template-columns: 1fr; }
  .transparency-grid { grid-template-columns: 1fr; }
  .guide-stats { flex-direction: column; align-items: center; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .section-title { font-size: 1.7rem; }
  .glass-card, .glass-card-dark { padding: 24px; }
  .whatsapp-float { padding: 10px 18px 10px 14px; font-size: 0.82rem; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* LinkedIn Link on Founder Name */
.linkedin-link { text-decoration: none; display: inline-block; opacity: 0.7; transition: var(--transition); }
.linkedin-link:hover { opacity: 1; transform: translateY(-1px); }
.linkedin-link svg { fill: #E85D3A; }

/* LinkedIn below photo */
.photo-linkedin {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--royal-blue);
  opacity: 0.85;
}
.photo-linkedin:hover { opacity: 1; color: var(--royal-blue); }

/* ---------- Language Switcher ---------- */
.lang-switcher {
  position: relative;
  margin-left: 8px;
}
.lang-current {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: inherit;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: var(--transition);
}
.lang-current:hover { background: rgba(255,255,255,0.18); }
.navbar.scrolled .lang-current,
.inner-page .lang-current {
  background: rgba(42,31,26,0.06);
  border-color: rgba(42,31,26,0.1);
  color: var(--deep-indigo);
}
.navbar.scrolled .lang-current:hover,
.inner-page .lang-current:hover { background: rgba(42,31,26,0.1); }
.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 8px;
  min-width: 80px;
  background: var(--white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  z-index: 10001;
  flex-direction: column;
}
.lang-switcher.open .lang-dropdown { display: flex; }
.lang-switcher.open .lang-current svg {
  transform: rotate(180deg);
}
.lang-current svg {
  transition: transform 0.2s ease;
}
.lang-dropdown a,
.lang-dropdown a:link,
.lang-dropdown a:visited {
  display: block !important;
  padding: 10px 16px !important;
  font-family: var(--font-heading) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  color: var(--deep-indigo) !important;
  white-space: nowrap;
  position: static !important;
}
.lang-dropdown a::after { display: none !important; }
.lang-dropdown a:hover {
  background: var(--lavender-white) !important;
  color: var(--royal-blue) !important;
}

@media (max-width: 768px) {
  .lang-switcher { margin-left: 0; margin-top: 12px; }
  .lang-current { color: var(--deep-indigo); background: rgba(42,31,26,0.06); border-color: rgba(42,31,26,0.1); }
  .lang-dropdown { right: auto; left: 0; }
}
