/* ============================================
   ALGONICHE — Professional Refinement
   Brand: Orange to Blue, used with discipline
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --orange: #F97316;
  --orange-light: #FED7AA;
  --blue: #1976D2;
  --blue-dark: #0D47A1;
  --blue-light: #BBDEFB;
  --grad-brand: linear-gradient(135deg, #F97316 0%, #1976D2 100%);
  --grad-hero: linear-gradient(150deg, #0D2D5E 0%, #1a4a8a 40%, #0f3568 100%);
  --grad-text: linear-gradient(90deg, #F97316 0%, #1976D2 100%);
  --white: #ffffff;
  --surface: #F8FAFC;
  --border: #E2E8F0;
  --border-strong: #CBD5E1;
  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #94A3B8;
  --shadow-sm: 0 1px 3px rgba(15,23,42,0.07);
  --shadow-md: 0 4px 16px rgba(15,23,42,0.10);
  --shadow-lg: 0 12px 32px rgba(15,23,42,0.12);
  --shadow-xl: 0 24px 56px rgba(15,23,42,0.15);
  --primary: #1976D2;
  --primary-foreground: #ffffff;
  --secondary: #EFF6FF;
  --secondary-foreground: #1e3a6e;
  --muted: #F8FAFC;
  --muted-foreground: #64748B;
  --accent: #F97316;
  --accent-foreground: #ffffff;
  --card: #ffffff;
  --card-foreground: #0F172A;
  --foreground: #0F172A;
  --background: #ffffff;
  --ring: #1976D2;
  --radius: 8px;
  --gradient-start: #F97316;
  --gradient-middle: #1976D2;
  --gradient-end: #F97316;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
}

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

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* HEADER */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.header-content { height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; color: var(--text-primary); }
.logo img { height: 2.25rem; width: auto; border-radius: 8px; object-fit: cover; }
.logo-text {
  font-size: 1.25rem; font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  letter-spacing: -0.02em;
}

.nav { display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 1rem 0; }
.nav-links { display: flex; gap: 2rem; }
.nav-links a { text-decoration: none; color: #64748b; font-weight: 500; transition: color 0.3s ease; }

@media (max-width: 767px) {
    .mobile-menu-btn { display: block; }
    .nav-links { display: none; }
}

@media (min-width: 768px) { .nav { display: flex; } }
.nav a { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); text-decoration: none; transition: color 0.2s; }
.nav a:hover { color: var(--blue); }

/* Mobile Menu */
.mobile-menu-btn { display: none; background: none; border: none; color: var(--text-primary); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; }

.nav.mobile-menu-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 0 0 8px 8px;
    box-shadow: var(--shadow-lg);
    padding: 1rem;
    z-index: 1000;
}

.nav.mobile-menu-open a {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-secondary);
}

.nav.mobile-menu-open a:last-child {
    border-bottom: none;
}

.nav.mobile-menu-open a:hover {
    color: var(--blue);
}

.mobile-menu-btn.active {
    color: var(--blue);
}
.header-actions { display: flex; align-items: center; gap: 0.625rem; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.625rem 1.25rem; border-radius: var(--radius);
  font-family: inherit; font-weight: 600; font-size: 0.875rem;
  cursor: pointer; transition: all 0.2s ease;
  text-decoration: none; border: 1.5px solid transparent; outline: none; white-space: nowrap;
}
.btn-primary { background: var(--blue); color: #fff; border-color: var(--blue); }
.btn-primary:hover { background: var(--blue-dark); border-color: var(--blue-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(25,118,210,0.3); }
.btn-secondary { background: var(--secondary); color: var(--blue-dark); border-color: var(--blue-light); }
.btn-secondary:hover { background: var(--blue-light); }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border-strong); }
.btn-outline:hover { background: var(--surface); }
.btn-ghost { background: transparent; color: var(--text-secondary); border-color: transparent; }
.btn-ghost:hover { background: var(--surface); }
.btn-gradient { background: var(--grad-brand); color: #fff; border-color: transparent; }
.btn-gradient:hover { filter: brightness(1.08); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(249,115,22,0.35); }
.btn-lg { padding: 0.875rem 2rem; font-size: 1rem; height: 3.25rem; }

/* HERO */
.hero { position: relative; padding-top: 7rem; padding-bottom: 5.5rem; overflow: hidden; background: var(--grad-hero); }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px; z-index: 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg .gradient-1 { position: absolute; bottom: -20%; left: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 65%); }
.hero-bg .gradient-2 { position: absolute; top: -15%; right: -10%; width: 480px; height: 480px; background: radial-gradient(circle, rgba(25,118,210,0.35) 0%, transparent 65%); }
.hero .container { position: relative; z-index: 2; }
.hero-content { text-align: center; max-width: 54rem; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; margin-bottom: 1.75rem;
  border-radius: 100px; background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.20);
  color: rgba(255,255,255,0.90); font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.03em;
}
.hero-badge::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); display: block; flex-shrink: 0; }
.hero h1 { font-size: clamp(2.5rem, 6vw, 4rem); font-weight: 800; line-height: 1.1; margin: 0 0 1.5rem; letter-spacing: -0.03em; color: #fff; }
.hero .gradient-text { background: linear-gradient(90deg, #FED7AA 0%, #ffffff 50%, #93C5FD 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.hero p { font-size: 1.125rem; color: rgba(255,255,255,0.72); max-width: 34rem; margin: 0 auto 2.5rem; line-height: 1.75; }
.hero-actions { display: flex; flex-direction: column; align-items: center; gap: 0.875rem; margin-bottom: 4rem; }
@media (min-width: 480px) { .hero-actions { flex-direction: row; justify-content: center; } }
.hero .btn-outline { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.30); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.50); color: #fff; }
.social-proof { display: flex; flex-direction: column; align-items: center; gap: 0.875rem; }
.social-proof .text { font-size: 0.8125rem; color: rgba(255,255,255,0.45); letter-spacing: 0.04em; text-transform: uppercase; font-weight: 500; }
.social-proof .stats { display: flex; align-items: center; }
.social-proof .stat { font-size: 0.9375rem; font-weight: 700; color: rgba(255,255,255,0.90); padding: 0 1.5rem; border-right: 1px solid rgba(255,255,255,0.15); }
.social-proof .stat:first-child { padding-left: 0; }
.social-proof .stat:last-child { border-right: none; padding-right: 0; }

/* FEATURES */
.features { padding: 6rem 0; background: var(--surface); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 0.875rem; }
.section-header h2 { font-size: clamp(1.875rem, 4vw, 2.75rem); font-weight: 800; line-height: 1.15; margin: 0 0 1rem; letter-spacing: -0.025em; color: var(--text-primary); }
.section-header p { font-size: 1.0625rem; color: var(--text-secondary); max-width: 34rem; margin: 0 auto; line-height: 1.75; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 1.25rem; }
.feature-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 1.875rem; transition: all 0.25s ease; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; left: 0; top: 16px; bottom: 16px; width: 3px; background: var(--grad-brand); border-radius: 0 2px 2px 0; transform: scaleY(0); transform-origin: center; transition: transform 0.28s ease; }
.feature-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-icon { display: inline-flex; align-items: center; justify-content: center; width: 2.875rem; height: 2.875rem; margin-bottom: 1.25rem; border-radius: 10px; background: var(--grad-brand); color: #fff; font-size: 1rem; }
.feature-card h3 { font-size: 1.125rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--text-primary); letter-spacing: -0.01em; }
.feature-card p { color: var(--text-secondary); margin: 0; font-size: 0.9375rem; line-height: 1.7; }

/* HOW IT WORKS */
.how-it-works { padding: 6rem 0; background: var(--white); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2.5rem; position: relative; }
.step { position: relative; text-align: center; }
.step:not(:last-child)::after { content: ''; position: absolute; top: 2.75rem; left: 50%; width: 100%; height: 1px; background: linear-gradient(to right, var(--border-strong), transparent); z-index: 1; display: none; }
@media (min-width: 768px) { .step:not(:last-child)::after { display: block; } }
@media (max-width: 767px) { .step:not(:last-child)::after { display: none; } }
.step-number { position: absolute; top: -0.5rem; right: 1rem; width: 1.75rem; height: 1.75rem; border-radius: 50%; background: var(--grad-brand); color: #fff; font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; z-index: 10; }
.step-icon { width: 5.5rem; height: 5.5rem; margin: 0 auto 1.5rem; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; position: relative; font-size: 1.5rem; transition: all 0.28s ease; color: var(--blue); }
.step:hover .step-icon { background: linear-gradient(135deg, rgba(249,115,22,0.08), rgba(25,118,210,0.12)); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.step h3 { font-size: 1.0625rem; font-weight: 700; margin: 0 0 0.5rem; color: var(--text-primary); letter-spacing: -0.01em; }
.step p { color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.7; }

/* PRICING */
.pricing { padding: 6rem 0; background: var(--surface); }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 2.25rem; position: relative; transition: all 0.25s ease; }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.pricing-card.popular { border: 2px solid transparent; background: linear-gradient(var(--white), var(--white)) padding-box, var(--grad-brand) border-box; }
.pricing-card.popular:hover { box-shadow: 0 20px 50px rgba(25,118,210,0.18), 0 4px 16px rgba(249,115,22,0.12); }
.popular-badge { display: inline-block; padding: 0.25rem 0.875rem; margin-bottom: 1.25rem; border-radius: 100px; background: var(--grad-brand); color: #fff; font-size: 0.6875rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.pricing-header h3 { font-size: 1.25rem; font-weight: 700; margin: 0 0 0.875rem; color: var(--text-primary); letter-spacing: -0.01em; }
.pricing-price { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.5rem; }
.pricing-price .amount { font-size: 2.75rem; font-weight: 800; color: var(--text-primary); letter-spacing: -0.04em; }
.pricing-card.popular .pricing-price .amount { background: var(--grad-text); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pricing-price .period { font-size: 0.9375rem; color: var(--text-muted); font-weight: 400; }
.pricing-description { font-size: 0.875rem; color: var(--text-secondary); margin: 0 0 1.75rem; line-height: 1.6; }
.pricing-features ul { list-style: none; display: flex; flex-direction: column; gap: 0.875rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9375rem; color: var(--text-secondary); }
.check { display: flex; align-items: center; justify-content: center; width: 1.25rem; height: 1.25rem; border-radius: 50%; background: linear-gradient(135deg, rgba(249,115,22,0.15), rgba(25,118,210,0.15)); color: var(--blue); font-size: 0.625rem; flex-shrink: 0; margin-top: 0.125rem; }
.pricing-action .btn { width: 100%; justify-content: center; }

/* CTA */
.cta { padding: 6rem 0; background: var(--white); }
.cta-container { position: relative; background: var(--grad-hero); border-radius: 20px; padding: 5rem 3rem; text-align: center; overflow: hidden; }
.cta-container::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 52px 52px; border-radius: inherit; }
.cta-bg .radial { position: absolute; bottom: -20%; right: -10%; width: 500px; height: 500px; background: radial-gradient(circle, rgba(249,115,22,0.2) 0%, transparent 65%); pointer-events: none; }
.cta-container::after { content: ''; position: absolute; top: -20%; left: -10%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(25,118,210,0.25) 0%, transparent 65%); pointer-events: none; border-radius: 50%; }
.cta-content { position: relative; z-index: 1; }
.cta-content h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: #fff; margin: 0 0 1.125rem; letter-spacing: -0.025em; }
.cta-content p { font-size: 1.0625rem; color: rgba(255,255,255,0.68); max-width: 38rem; margin: 0 auto 2.75rem; line-height: 1.75; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 0.875rem; }
@media (min-width: 480px) { .cta-actions { flex-direction: row; justify-content: center; } }
.cta .btn-outline { color: rgba(255,255,255,0.85); border-color: rgba(255,255,255,0.28); }
.cta .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.50); color: #fff; }

/* FOOTER */
.footer { background: #0D1826; color: #fff; padding: 4rem 0 1.5rem; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer-section h3, .footer-section h4 { font-weight: 700; color: #fff; margin-bottom: 1.125rem; font-size: 0.9375rem; }
.footer-social { display: flex; align-items: center; gap: 1rem; }
.footer-social a { color: var(--muted-foreground); text-decoration: none; transition: color 0.2s; }
.footer-social a:hover { color: var(--foreground);}
.footer-section p { color: #64748B; font-size: 0.875rem; line-height: 1.75; max-width: 22rem; }
.footer-section ul { list-style: none; display: flex; flex-direction: column; gap: 0.625rem; }
.footer-section a { color: #64748B; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-section a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; color: #374151; font-size: 0.8125rem; }

/* TOAST */
.toast { position: fixed; bottom: 1.5rem; right: 1.5rem; background: var(--text-primary); color: #fff; padding: 1rem 1.5rem; border-radius: 10px; box-shadow: var(--shadow-xl); transform: translateX(420px); transition: transform 0.3s ease; z-index: 1000; font-size: 0.875rem; font-weight: 500; }
.toast.show { transform: translateX(0); }

/* PAGE HEADER */
.page-header { background: var(--grad-hero); padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 52px 52px; }
.page-header h1 { font-size: clamp(2rem, 4vw, 2.875rem); font-weight: 800; color: #fff; letter-spacing: -0.025em; position: relative; z-index: 1; }
.page-header p { font-size: 1.0625rem; color: rgba(255,255,255,0.65); max-width: 32rem; margin: 1rem auto 0; line-height: 1.75; position: relative; z-index: 1; }
.main { padding: 4rem 0; }

/* INNER PAGE CARDS */
.info-card, .option-card, .timeline-card, .faq-item { background: var(--white); border: 1px solid var(--border); border-radius: 12px; }
.info-card { padding: 2rem; margin-bottom: 1.5rem; box-shadow: var(--shadow-sm); }
.info-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--text-primary); margin-bottom: 0.875rem; }
.info-card p { color: var(--text-secondary); line-height: 1.75; font-size: 0.9375rem; }
.options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.option-card { padding: 2rem; transition: all 0.25s ease; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; }
.option-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--grad-brand); transform: scaleX(0); transition: transform 0.3s ease; transform-origin: left; }
.option-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow-lg); transform: translateY(-2px); }
.option-card:hover::after { transform: scaleX(1); }
.option-header { display: flex; align-items: center; margin-bottom: 1.5rem; }
.option-number { background: var(--grad-brand); color: #fff; width: 2.5rem; height: 2.5rem; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-weight: 800; margin-right: 1rem; font-size: 1rem; flex-shrink: 0; }
.option-header h3 { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); }
.steps { list-style: none; padding: 0; margin-bottom: 1.5rem; counter-reset: list-item; }
.steps li { padding: 0.5rem 0 0.5rem 1.75rem; position: relative; color: var(--text-secondary); font-size: 0.9375rem; line-height: 1.65; counter-increment: list-item; }
.steps li::before { content: counter(list-item) "."; position: absolute; left: 0; font-weight: 700; color: var(--orange); }
.processing-info { margin-bottom: 3rem; }
.timeline-card { padding: 2rem; box-shadow: var(--shadow-sm); }
.timeline-card h2 { font-size: 1.375rem; font-weight: 700; margin-bottom: 1.75rem; text-align: center; color: var(--text-primary); }
.timeline-item { display: flex; align-items: flex-start; margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.timeline-item:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.timeline-icon { font-size: 1.25rem; margin-right: 1rem; margin-top: 0.2rem; }
.timeline-content h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; color: var(--text-primary); }
.timeline-content p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; }
.contact-section { margin-bottom: 3rem; }
.contact-card { background: var(--grad-hero); color: #fff; border-radius: 16px; padding: 2.5rem; text-align: center; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; }
.contact-card::before { content: ''; position: absolute; bottom: -20%; right: -10%; width: 300px; height: 300px; background: radial-gradient(circle, rgba(249,115,22,0.25) 0%, transparent 65%); pointer-events: none; }
.contact-card h2 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.875rem; }
.contact-card p { margin-bottom: 1.75rem; color: rgba(255,255,255,0.65); line-height: 1.7; }
.email-link { color: #fff; text-decoration: none; font-weight: 700; font-size: 1rem; padding: 0.75rem 1.75rem; border: 1.5px solid rgba(255,255,255,0.35); border-radius: 8px; display: inline-block; transition: all 0.25s ease; }
.email-link:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.60); }
.contact-info { padding: 4rem 0; }
.contact-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.contact-item { background: var(--white); padding: 2rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); display: flex; align-items: flex-start; gap: 1.25rem; transition: all 0.25s ease; }
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.contact-icon { background: linear-gradient(135deg, rgba(249,115,22,0.10), rgba(25,118,210,0.12)); color: var(--blue); width: 2.875rem; height: 2.875rem; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 1.125rem; border: 1px solid var(--border); }
.contact-item h3 { color: var(--text-primary); font-size: 1rem; font-weight: 700; margin-bottom: 0.375rem; }
.contact-item p { color: var(--text-muted); line-height: 1.65; margin: 0; font-size: 0.9rem; }
.faq-section { margin-bottom: 3rem; }
.faq-section h2 { font-size: 1.875rem; font-weight: 800; margin-bottom: 2rem; text-align: center; color: var(--text-primary); letter-spacing: -0.025em; }
.faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 0.625rem; border-radius: 10px; overflow: hidden; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question { width: 100%; padding: 1.25rem 1.5rem; background: none; border: none; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-family: inherit; font-size: 0.9375rem; font-weight: 600; color: var(--text-primary); transition: background-color 0.2s; }
.faq-question:hover { background-color: var(--surface); }
.faq-icon { font-size: 1.125rem; color: var(--blue); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 200px; }
.faq-answer p { padding: 0 1.5rem 1.25rem; color: var(--text-secondary); line-height: 1.7; font-size: 0.9375rem; }

/* Education page */
.education-page {
    min-height: 100vh;
}

.education-hero {
    text-align: center;
    padding: 4rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 2rem 0;
    backdrop-filter: blur(10px);
}

.education-hero h1 {
    font-size: 2.5rem;
    color: var(--card-foreground);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-middle) 50%, var(--gradient-end) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.curriculum-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.curriculum-sections {
    margin: 4rem 0;
}

.section-card {
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    margin: 2rem auto;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.level-badge {
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.level-badge.beginner {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
}

.level-badge.intermediate {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.level-badge.advanced {
    background: linear-gradient(135deg, #dc2626, #991b1b);
    color: white;
}

.section-header h2 {
    color: var(--card-foreground);
    margin: 0;
    font-size: 1.75rem;
}

.topic-list {
    list-style: none;
    padding: 0;
    display: grid;
    
}

.topic-list li {
    margin: 0;
}

.topic-list a {
    display: block;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    text-decoration: none;
    color: var(--card-foreground);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.topic-list a:hover {
    background: rgba(255, 255, 255, 0.8);
    border-left-color: var(--gradient-middle);
    transform: translateX(5px);
}

.resources-section {
    margin: 4rem 0;
}

.resources-section h2 {
    text-align: center;
    color: var(--card-foreground);
    font-size: 2rem;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    transition: transform 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.resource-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-middle) 50%, var(--gradient-end) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.resource-card h3 {
    color: var(--card-foreground);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.resource-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--gradient-middle);
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: var(--gradient-end);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2563eb;
    margin: 0 0 0.5rem 0;
}

.stat-item p {
    color: #64748b;
    margin: 0;
    font-weight: 500;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  /* .container { padding: 0 1.125rem; } */
  .hero { padding-top: 6rem; padding-bottom: 4rem; }
  .hero h1 { font-size: 2.25rem; }
  .social-proof .stats { flex-wrap: wrap; justify-content: center; }
  .social-proof .stat { border-right: none; padding: 0.25rem 1rem; }
  .features-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cta-container { padding: 3rem 1.5rem; }
  .footer-content { grid-template-columns: 1fr 1fr; }
  .timeline-item { flex-direction: column; }
  .timeline-icon { margin-right: 0; margin-bottom: 0.5rem; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .cta-actions .btn { width: 100%; }
  
  /* Mobile Menu Button - Small Screens */
  .mobile-menu-btn { 
    font-size: 1.25rem; 
    padding: 0.375rem;
  }
  
  .nav.mobile-menu-open {
    padding: 0.75rem;
  }
  
  .nav.mobile-menu-open a {
    padding: 0.625rem 0;
    font-size: 0.875rem;
  }
}
