/* ============================================================
   Aspirant Sarthi — Landing Page Styles
   Premium light UI · Clean · Minimal · Interactive
   ============================================================ */

/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  --bg: #FAFAFA;
  --bg-card: #FFFFFF;
  --bg-subtle: #F2F2F7;
  --accent: #007AFF;
  --accent-dark: #0062CC;
  --accent-light: #E8F2FF;
  --accent-glow: rgba(0, 122, 255, 0.15);
  --text-primary: #1C1C1E;
  --text-secondary: #6E6E73;
  --text-tertiary: #AEAEB2;
  --border: rgba(0, 0, 0, 0.08);
  --border-strong: rgba(0, 0, 0, 0.14);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none; /* hide default cursor for custom cursor */
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: none; }
input, textarea, select { font-family: var(--font); }

/* ── Custom Cursor ── */
#cursor-dot {
  position: fixed;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  will-change: transform;
}
#cursor-ring {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  opacity: 0.5;
  transition: width 0.25s cubic-bezier(0.4,0,0.2,1),
              height 0.25s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s;
  will-change: transform;
}
body.cursor-hover #cursor-dot { width: 14px; height: 14px; background: var(--accent-dark); }
body.cursor-hover #cursor-ring { width: 52px; height: 52px; opacity: 0.3; }
body.cursor-click #cursor-dot { transform: translate(-50%,-50%) scale(0.6); }
.cursor-particle {
  position: fixed;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 99997;
  opacity: 0.6;
  transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
}

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
section { position: relative; }

/* ── Utility ── */
.tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  background: var(--accent-light);
  color: var(--accent);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0,122,255,0.2);
}
.section-label { text-align: center; margin-bottom: 16px; }
.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--text-primary);
}
.section-subtitle {
  font-size: 17px; line-height: 1.65;
  color: var(--text-secondary);
  text-align: center;
  max-width: 560px; margin: 16px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 26px;
  font-size: 15px; font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.12); }
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(0,122,255,0.35), 0 1px 3px rgba(0,0,0,0.1);
}
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 4px 20px rgba(0,122,255,0.45); }

.btn-secondary {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover { background: var(--bg-subtle); border-color: var(--border-strong); }

.btn-ghost {
  background: transparent; color: var(--accent);
  padding: 10px 16px; font-size: 14px;
}
.btn-ghost:hover { background: var(--accent-light); }

.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 18px; font-size: 13px; }
.btn-full { width: 100%; }

/* ── Navbar ── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 24px;
  transition: var(--transition-slow);
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.navbar.scrolled {
  background: rgba(250,250,250,0.85);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800; letter-spacing: -0.03em;
  color: var(--text-primary);
}
.navbar-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.navbar-logo .accent { color: var(--accent); }
.navbar-links {
  display: flex; align-items: center; gap: 6px;
  list-style: none;
}
.navbar-links a {
  padding: 7px 14px;
  font-size: 14px; font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--radius-full);
  transition: var(--transition);
}
.navbar-links a:hover { color: var(--text-primary); background: var(--bg-subtle); }
.navbar-cta { display: flex; align-items: center; gap: 10px; }
.navbar-menu-btn {
  display: none;
  background: none; border: none;
  padding: 6px; border-radius: var(--radius-sm);
  color: var(--text-primary);
  transition: var(--transition);
}
.navbar-menu-btn:hover { background: var(--bg-subtle); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; top: 64px; left: 0; right: 0;
  background: rgba(250,250,250,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  flex-direction: column; gap: 8px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  font-size: 16px; font-weight: 500;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--bg-subtle); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 100px 24px 80px;
  background: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 40%, rgba(0,122,255,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 20% 60%, rgba(100,210,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,0,0,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,0,0,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
  width: 100%; position: relative; z-index: 1;
}
.hero-content {}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}
.hero-badge .dot { width: 8px; height: 8px; background: #34C759; border-radius: 50%; animation: pulse-green 2s infinite; }
@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}
.hero-headline {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.04em;
  color: var(--text-primary);
  margin-bottom: 20px;
}
.hero-headline .accent { color: var(--accent); }
.hero-headline .underline-accent {
  position: relative; display: inline-block;
}
.hero-headline .underline-accent::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #64D2FF);
  border-radius: 2px;
}
.hero-sub {
  font-size: 18px; line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 36px;
  max-width: 480px;
}
.hero-form {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 440px;
}
.hero-form-row {
  display: flex; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  padding: 5px 5px 5px 20px;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.hero-form-row:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow), var(--shadow-md);
}
.hero-form-row input {
  flex: 1; border: none; outline: none; background: transparent;
  font-size: 15px; color: var(--text-primary);
}
.hero-form-row input::placeholder { color: var(--text-tertiary); }
.hero-divider {
  display: flex; align-items: center; gap: 12px;
  color: var(--text-tertiary); font-size: 13px;
}
.hero-divider::before, .hero-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.hero-google-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-full);
  font-size: 15px; font-weight: 500;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
  cursor: none;
  transition: var(--transition);
  width: 100%;
}
.hero-google-btn:hover { background: var(--bg-subtle); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.hero-note { font-size: 12px; color: var(--text-tertiary); }
.hero-note a { color: var(--accent); }
.hero-note a:hover { text-decoration: underline; }

/* Hero visual / mockup */
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.hero-mockup {
  width: 100%; max-width: 460px;
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.hero-mockup:hover { transform: perspective(1000px) rotateY(-2deg) rotateX(1deg); }
.mockup-topbar {
  padding: 14px 18px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.mockup-dots { display: flex; gap: 6px; }
.mockup-dots span { width: 11px; height: 11px; border-radius: 50%; }
.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FFBD2E; }
.mockup-dots span:nth-child(3) { background: #28CA41; }
.mockup-title { font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-left: 4px; }
.mockup-body { padding: 24px; display: flex; flex-direction: column; gap: 16px; }
.mockup-greeting { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.mockup-greeting span { color: var(--accent); }
.mockup-progress-label { font-size: 12px; color: var(--text-secondary); font-weight: 500; margin-bottom: 6px; }
.mockup-progress-bar {
  height: 8px; background: var(--bg-subtle); border-radius: var(--radius-full); overflow: hidden;
}
.mockup-progress-fill {
  height: 100%; background: linear-gradient(90deg, var(--accent), #64D2FF);
  border-radius: var(--radius-full);
  animation: progress-grow 2s ease-out forwards;
}
@keyframes progress-grow { from { width: 0%; } to { width: 73%; } }
.mockup-targets { display: flex; flex-direction: column; gap: 8px; }
.mockup-target-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: var(--bg-subtle);
  border-radius: var(--radius-md);
  font-size: 13px; font-weight: 500; color: var(--text-primary);
}
.mockup-target-item.done { opacity: 0.6; text-decoration: line-through; }
.mockup-check {
  width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 11px;
}
.mockup-check.done { background: #34C759; color: white; }
.mockup-check.pending { background: var(--bg-card); border: 2px solid var(--border-strong); }
.mockup-streak {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #FFF3E0, #FFECB3);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255,149,0,0.2);
}
.mockup-streak-icon { font-size: 20px; }
.mockup-streak-text { font-size: 13px; font-weight: 600; color: #E65100; }
.mockup-streak-sub { font-size: 11px; color: #EF6C00; }

/* Floating badges around mockup */
.hero-float {
  position: absolute;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
  animation: float-bob 3s ease-in-out infinite;
}
.hero-float-1 { top: 10%; left: -60px; animation-delay: 0s; }
.hero-float-2 { bottom: 15%; right: -40px; animation-delay: 1.5s; }
.hero-float .fi { font-size: 18px; }
.hero-float .ft { font-size: 12px; font-weight: 600; color: var(--text-primary); }
.hero-float .fs { font-size: 11px; color: var(--text-tertiary); }
@keyframes float-bob {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}

/* ── Stats Strip ── */
.stats-strip {
  padding: 24px 0;
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: center;
  gap: 0; flex-wrap: wrap;
}
.stat-item {
  flex: 1; min-width: 140px;
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-size: 32px; font-weight: 900; letter-spacing: -0.04em;
  color: var(--text-primary);
  line-height: 1;
}
.stat-num .accent { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--text-secondary); margin-top: 4px; font-weight: 500; }

/* ── Features ── */
.features {
  padding: 100px 24px;
  background: var(--bg);
}
.features-grid {
  max-width: 1160px; margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: var(--transition-slow);
  position: relative; overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), #64D2FF);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
.feature-card:hover { border-color: rgba(0,122,255,0.2); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon-wrap {
  width: 52px; height: 52px;
  background: var(--accent-light);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}
.feature-card:hover .feature-icon-wrap { background: var(--accent); }
.feature-icon-wrap svg { width: 24px; height: 24px; color: var(--accent); transition: color 0.2s; }
.feature-card:hover .feature-icon-wrap svg { color: white; }
.feature-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.02em; }
.feature-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* ── How It Works ── */
.how-it-works {
  padding: 100px 24px;
  background: var(--bg-subtle);
}
.steps-grid {
  max-width: 960px; margin: 60px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.6% + 24px); right: calc(16.6% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), #64D2FF, var(--accent));
  z-index: 0;
}
.step-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 24px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px;
  background: var(--bg-card);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 800; color: var(--accent);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 0 0 6px var(--bg-subtle);
}
.step-title { font-size: 17px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.step-desc { font-size: 14px; color: var(--text-secondary); line-height: 1.65; }

/* ── Testimonials ── */
.testimonials { padding: 100px 24px; background: var(--bg); }
.testimonials-grid {
  max-width: 1000px; margin: 56px auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition-slow);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-stars { display: flex; gap: 2px; margin-bottom: 12px; }
.testimonial-stars span { color: #FF9500; font-size: 14px; }
.testimonial-text { font-size: 14px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 16px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 10px; }
.testimonial-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--accent);
  flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 600; color: var(--text-primary); }
.testimonial-meta { font-size: 12px; color: var(--text-tertiary); }

/* ── CTA Section ── */
.cta-section {
  padding: 100px 24px;
  background: var(--bg-subtle);
  text-align: center;
}
.cta-card {
  max-width: 700px; margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 56px;
  box-shadow: var(--shadow-xl);
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), #64D2FF, var(--accent));
}
.cta-card .section-title { margin-bottom: 14px; }
.cta-form {
  display: flex; flex-direction: column; gap: 12px;
  max-width: 420px; margin: 32px auto 0;
}

/* ── Footer ── */
footer {
  background: var(--text-primary);
  color: rgba(255,255,255,0.7);
  padding: 60px 24px 32px;
}
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 18px; font-weight: 800;
  color: white; margin-bottom: 14px; letter-spacing: -0.03em;
}
.footer-logo .logo-icon { background: var(--accent); border-radius: 10px; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.footer-tagline { font-size: 14px; line-height: 1.65; max-width: 240px; }
.footer-col-title { font-size: 13px; font-weight: 700; color: white; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; transition: color 0.2s; }
.footer-links a:hover { color: white; }
.footer-bottom {
  max-width: 1160px; margin: 0 auto;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-copyright { font-size: 13px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; transition: color 0.2s; }
.footer-legal a:hover { color: white; }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.4,0,0.2,1), transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.1s; }
.fade-up-delay-2 { transition-delay: 0.2s; }
.fade-up-delay-3 { transition-delay: 0.3s; }
.fade-up-delay-4 { transition-delay: 0.4s; }
.fade-up-delay-5 { transition-delay: 0.5s; }

/* ── About, Privacy, Terms Pages ── */
.page-hero {
  padding: 120px 24px 60px;
  background: var(--bg);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero .section-title { margin-bottom: 12px; }
.page-hero p { font-size: 16px; color: var(--text-secondary); max-width: 560px; margin: 0 auto; }
.page-content {
  max-width: 760px; margin: 0 auto;
  padding: 60px 24px 100px;
}
.page-content h2 {
  font-size: 22px; font-weight: 700; color: var(--text-primary);
  margin: 36px 0 12px; letter-spacing: -0.02em;
}
.page-content h3 { font-size: 17px; font-weight: 600; color: var(--text-primary); margin: 24px 0 8px; }
.page-content p { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 12px; }
.page-content ul { padding-left: 20px; margin-bottom: 12px; }
.page-content ul li { font-size: 15px; line-height: 1.75; color: var(--text-secondary); margin-bottom: 6px; }
.page-content a { color: var(--accent); }
.page-content a:hover { text-decoration: underline; }
.last-updated {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--text-tertiary);
  background: var(--bg-subtle); padding: 6px 12px; border-radius: var(--radius-full);
  margin-bottom: 32px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  body { cursor: auto; } /* re-enable default cursor on mobile */
  #cursor-dot, #cursor-ring { display: none; }
  .navbar-links, .navbar-cta .btn-secondary { display: none; }
  .navbar-menu-btn { display: flex; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 100px 24px 60px; }
  .features-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .cta-card { padding: 40px 28px; }
  .stat-item { min-width: 120px; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-inner { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
}

/* ── Language Switcher ── */
.lang-switcher {
  position: relative;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 11px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition);
  cursor: none;
  white-space: nowrap;
}
.lang-btn:hover {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}
.lang-chevron {
  transition: transform 0.2s;
}
.lang-btn[aria-expanded="true"] .lang-chevron {
  transform: rotate(180deg);
}
.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  min-width: 148px;
  overflow: hidden;
  display: none;
  z-index: 1100;
}
.lang-dropdown.open {
  display: block;
}
.lang-option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  background: none;
  border: none;
  text-align: left;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
  cursor: none;
  transition: var(--transition);
}
.lang-option:hover {
  background: var(--bg-subtle);
}
.lang-option.active {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-light);
}

/* Mobile language switcher (inside mobile menu) */
.mobile-lang-switcher {
  display: flex;
  gap: 8px;
  padding: 12px 0 0;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.lang-option-mobile {
  flex: 1;
  padding: 10px 8px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: none;
  transition: var(--transition);
  text-align: center;
}
.lang-option-mobile:hover,
.lang-option-mobile.active {
  background: var(--accent-light);
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  /* Hide desktop lang switcher label on small screens, keep icon only */
  #lang-label { display: none; }
  .lang-chevron { display: none; }
  .lang-btn { padding: 7px 9px; }
  body { cursor: auto; }
  .lang-option, .lang-option-mobile { cursor: pointer; }
}
