/* ═══════════════════════════════════════════════════════════
   FairPlay Academy — CSS (Pixel-perfect match to React version)
   Design System: Deep Blue #1A237E + Amber #FF8F00
   Fonts: Outfit (headings) + DM Sans (body)
   ═══════════════════════════════════════════════════════════ */

/* ─── Local Font Faces ─── */
@font-face { font-family:'Outfit'; font-style:normal; font-weight:400 800; font-display:swap; src:url('/assets/fonts/outfit-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'Outfit'; font-style:normal; font-weight:400 800; font-display:swap; src:url('/assets/fonts/outfit-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:400 700; font-display:swap; src:url('/assets/fonts/dm-sans-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'DM Sans'; font-style:normal; font-weight:400 700; font-display:swap; src:url('/assets/fonts/dm-sans-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }
@font-face { font-family:'DM Sans'; font-style:italic; font-weight:400; font-display:swap; src:url('/assets/fonts/dm-sans-italic-latin.woff2') format('woff2'); unicode-range:U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD; }
@font-face { font-family:'DM Sans'; font-style:italic; font-weight:400; font-display:swap; src:url('/assets/fonts/dm-sans-italic-latin-ext.woff2') format('woff2'); unicode-range:U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF; }

/* ─── Reset & Base ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: 'DM Sans', system-ui, sans-serif; color: #1e293b; background: #fff; line-height: 1.6; }
h1,h2,h3,h4,h5,h6 { font-family: 'Outfit', system-ui, sans-serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f8fafc; }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ─── Container ─── */
.container { width: 100%; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; max-width: 1280px; } }

/* ═══════════════════════════════════════════════════════════
   NAVBAR — Matches React Navbar.tsx exactly
   ═══════════════════════════════════════════════════════════ */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: #fff; transition: all 0.3s; }
.navbar.scrolled { background: rgba(255,255,255,0.95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
@media (min-width: 1024px) { .navbar-inner { height: 4.5rem; } }

/* Logo */
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo:hover .logo-icon { transform: scale(1.05); }
.logo-icon { width: 2.25rem; height: 2.25rem; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.logo-icon svg { width: 1.25rem; height: 1.25rem; color: #fff; }
.logo-text { display: flex; flex-direction: column; }
.logo-name { font-family: 'Outfit', system-ui, sans-serif; font-size: 1.125rem; font-weight: 700; line-height: 1.1; letter-spacing: -0.01em; }
.logo-sub { font-size: 0.625rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.15em; line-height: 1; margin-top: -1px; }

/* Nav Links */
.nav-links { display: none; align-items: center; gap: 0.25rem; }
@media (min-width: 1024px) { .nav-links { display: flex; } }
.nav-link { padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500; border-radius: 0.375rem; color: #475569; transition: all 0.15s; }
.nav-link:hover { color: #1A237E; background: #f8fafc; }
.nav-link.active { color: #1A237E; background: rgba(26,35,126,0.05); }

/* Auth Buttons */
.nav-auth { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .nav-auth { display: flex; } }

/* Mobile Toggle */
.mobile-toggle { display: flex; padding: 0.5rem; border-radius: 0.375rem; border: none; background: none; color: #475569; }
.mobile-toggle:hover { background: #f1f5f9; }
.mobile-toggle svg { width: 1.25rem; height: 1.25rem; }
@media (min-width: 1024px) { .mobile-toggle { display: none; } }

/* Mobile Menu */
.mobile-menu { display: none; background: #fff; border-top: 1px solid #f1f5f9; overflow: hidden; }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1rem; }
.mobile-menu .nav-link { display: block; padding: 0.625rem 1rem; border-radius: 0.375rem; margin-bottom: 0.25rem; }
.mobile-menu-auth { display: flex; gap: 0.75rem; padding-top: 0.75rem; margin-top: 0.75rem; border-top: 1px solid #f1f5f9; }
.mobile-menu-auth .btn { flex: 1; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   BUTTONS — Matches React Button component
   ═══════════════════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; border-radius: 0.375rem; border: 1px solid transparent; transition: all 0.15s; font-size: 0.875rem; padding: 0.5rem 1rem; line-height: 1.5; cursor: pointer; text-decoration: none; white-space: nowrap; }
.btn-sm { padding: 0.375rem 0.75rem; font-size: 0.8125rem; }
.btn-md { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 0.625rem 1.5rem; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }

/* Primary */
.btn-primary { background: #FF8F00; color: #fff; border-color: #FF8F00; box-shadow: 0 1px 3px rgba(255,143,0,0.2); }
.btn-primary:hover { background: #E65100; border-color: #E65100; }

/* Outline Primary */
.btn-outline-primary { background: transparent; color: #1A237E; border-color: #1A237E; }
.btn-outline-primary:hover { background: #1A237E; color: #fff; }

/* Ghost */
.btn-ghost { background: transparent; color: #475569; border-color: transparent; }
.btn-ghost:hover { color: #1A237E; background: #f8fafc; }

/* Outline */
.btn-outline { background: transparent; color: #475569; border-color: #e2e8f0; }
.btn-outline:hover { background: #f8fafc; border-color: #1A237E; color: #1A237E; }

/* White */
.btn-white { background: #fff; color: #E65100; border-color: #fff; box-shadow: 0 4px 6px rgba(0,0,0,0.1); }
.btn-white:hover { background: rgba(255,255,255,0.9); }

/* Outline White */
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }

/* ═══════════════════════════════════════════════════════════
   BADGES — Category color badges
   ═══════════════════════════════════════════════════════════ */
.badge { display: inline-flex; align-items: center; font-size: 0.75rem; font-weight: 600; padding: 0.125rem 0.625rem; border-radius: 9999px; }
.badge-sports { background: #059669; color: #fff; }
.badge-esports { background: #4338ca; color: #fff; }
.badge-corporate { background: #475569; color: #fff; }
.badge-education { background: #d97706; color: #451a03; }
.badge-free { background: #10b981; color: #fff; }
.badge-premium { background: #FF8F00; color: #fff; }

/* ═══════════════════════════════════════════════════════════
   SECTIONS — Background variants
   ═══════════════════════════════════════════════════════════ */
.section { padding: 5rem 0; }
.section-white { background: #fff; }
.section-gray { background: #f8fafc; }
.section-dark { background: #1A237E; }
.section-cta { background: linear-gradient(to right, #FF8F00, #E65100); }
.section-compliance { padding: 1.5rem 0; background: #f1f5f9; border-top: 1px solid #e2e8f0; }

/* Section Headers */
.section-header { text-align: center; max-width: 48rem; margin: 0 auto 3.5rem; }
.section-header h2 { font-size: 1.875rem; font-weight: 700; color: #1A237E; margin-bottom: 1rem; }
@media (min-width: 768px) { .section-header h2 { font-size: 2.25rem; } }
.section-header p { color: #475569; font-size: 1.125rem; line-height: 1.7; }
.section-header-white h2 { color: #fff; }
.section-header-white p { color: #bfdbfe; }

/* Left-aligned header with button */
.section-header-left { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2.5rem; }
@media (min-width: 640px) { .section-header-left { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.section-header-left h2 { font-size: 1.875rem; font-weight: 700; color: #1A237E; margin-bottom: 0.5rem; }
@media (min-width: 768px) { .section-header-left h2 { font-size: 2.25rem; } }
.section-header-left p { color: #475569; }

/* ═══════════════════════════════════════════════════════════
   HERO — Matches React HeroSection exactly
   ═══════════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: linear-gradient(to bottom right, #1A237E, #283593, #1A237E); }
.hero-bg-orb1 { position: absolute; top: 5rem; left: 2.5rem; width: 18rem; height: 18rem; background: #FF8F00; border-radius: 50%; filter: blur(48px); opacity: 0.1; }
.hero-bg-orb2 { position: absolute; bottom: 5rem; right: 2.5rem; width: 24rem; height: 24rem; background: #60a5fa; border-radius: 50%; filter: blur(48px); opacity: 0.1; }
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; padding: 5rem 0; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1fr 1fr; padding: 7rem 0; } }
.hero-pill { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border-radius: 9999px; padding: 0.375rem 1rem; margin-bottom: 1.5rem; }
.hero-pill svg { color: #FF8F00; }
.hero-pill span { font-size: 0.875rem; color: #bfdbfe; font-weight: 500; }
.hero h1 { font-size: 2.5rem; font-weight: 700; color: #fff; line-height: 1.1; margin-bottom: 1.5rem; }
.hero h1 span { color: #FF8F00; }
@media (min-width: 768px) { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }
.hero-desc { font-size: 1.125rem; color: #bfdbfe; margin-bottom: 2rem; max-width: 36rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-note { font-size: 0.75rem; color: #93c5fd; margin-top: 1rem; }
.hero-img { display: none; }
.hero-img img { width: 100%; border-radius: 1rem; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
@media (min-width: 1024px) { .hero-img { display: block; } }

/* ═══════════════════════════════════════════════════════════
   FAIR PLAY CARDS (What Is Fair Play section)
   ═══════════════════════════════════════════════════════════ */
.fp-card { border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 0.25rem; overflow: hidden; transition: box-shadow 0.3s; }
.fp-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.fp-card-sports { background: #ecfdf5; border-color: #a7f3d0; }
.fp-card-esports { background: #eef2ff; border-color: #c7d2fe; }
.fp-card-corporate { background: #f8fafc; border-color: #e2e8f0; }
.fp-card-education { background: #fffbeb; border-color: #fde68a; }
.fp-card-img-wrap { position: relative; overflow: hidden; border-radius: 0.5rem 0.5rem 0 0; }
.fp-card-img { width: 100%; height: 9rem; object-fit: cover; transition: transform 0.3s; }
.fp-card:hover .fp-card-img { transform: scale(1.05); }
.fp-card-body { padding: 1.25rem; }
.fp-card-title { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.5rem; }
.fp-card-title h3 { font-weight: 600; color: #1A237E; }
.fp-card-body p { font-size: 0.875rem; color: #475569; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   COURSE CARDS
   ═══════════════════════════════════════════════════════════ */
.course-card { display: flex; flex-direction: column; height: 100%; background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; overflow: hidden; transition: box-shadow 0.3s; text-decoration: none; color: inherit; }
.course-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.course-card-img-wrap { position: relative; overflow: hidden; }
.course-card-img { width: 100%; height: 10rem; object-fit: cover; transition: transform 0.3s; }
.course-card:hover .course-card-img { transform: scale(1.05); }
.course-card-badges { position: absolute; top: 0.75rem; left: 0.75rem; display: flex; gap: 0.5rem; }
.course-card-badges .badge-free { position: absolute; top: 0; right: -100%; }
.course-card-img-wrap .badge:last-child:not(:first-child) { position: absolute; top: 0.75rem; right: 0.75rem; left: auto; }
.course-card-body { padding: 1rem; flex: 1; display: flex; flex-direction: column; }
.course-card-body h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.25rem; font-size: 0.9375rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.course-card-instructor { font-size: 0.75rem; color: #64748b; margin-bottom: 0.5rem; }
.course-card-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: #64748b; margin-bottom: 0.75rem; }
.rating-num { font-weight: 500; color: #334155; }
.course-card-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: #64748b; }

/* ═══════════════════════════════════════════════════════════
   STEP CARDS (How It Works)
   ═══════════════════════════════════════════════════════════ */
.step-card { text-align: center; }
.step-icon { width: 4rem; height: 4rem; border-radius: 1rem; background: rgba(26,35,126,0.05); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.step-icon svg { color: #1A237E; }
.step-num { font-size: 0.75rem; font-weight: 700; color: #FF8F00; margin-bottom: 0.25rem; }
.step-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; }
.step-card p { font-size: 0.875rem; color: #475569; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   AUDIENCE CARDS (Who It's For)
   ═══════════════════════════════════════════════════════════ */
.audience-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; transition: all 0.3s; }
.audience-card:hover { border-color: rgba(26,35,126,0.2); box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.audience-card-inner { display: flex; align-items: flex-start; gap: 0.75rem; }
.audience-card-inner svg { flex-shrink: 0; margin-top: 0.125rem; }
.audience-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.25rem; font-size: 0.9375rem; }
.audience-card p { font-size: 0.875rem; color: #475569; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   RESOURCE CARDS
   ═══════════════════════════════════════════════════════════ */
.resource-card { display: block; background: #f8fafc; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 2rem; text-align: center; transition: all 0.3s; height: 100%; text-decoration: none; color: inherit; }
.resource-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: rgba(26,35,126,0.2); }
.resource-icon { width: 3.5rem; height: 3.5rem; border-radius: 0.75rem; background: rgba(26,35,126,0.05); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; transition: background 0.3s; }
.resource-card:hover .resource-icon { background: rgba(26,35,126,0.1); }
.resource-icon svg { width: 1.5rem; height: 1.5rem; color: #1A237E; }
.resource-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; }
.resource-card p { font-size: 0.875rem; color: #475569; line-height: 1.7; margin-bottom: 0.75rem; }
.resource-count { font-size: 0.75rem; font-weight: 500; color: #FF8F00; }

/* ═══════════════════════════════════════════════════════════
   PRICING CARDS (Homepage dark section)
   ═══════════════════════════════════════════════════════════ */
.pricing-home-card { border-radius: 0.75rem; padding: 1.5rem; }
.pricing-home-default { background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.2); }
.pricing-home-highlight { background: #fff; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); transform: scale(1.05); }
@media (max-width: 639px) { .pricing-home-highlight { transform: none; } }
.pricing-home-card h3 { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.25rem; }
.pricing-home-default h3 { color: #fff; }
.pricing-home-highlight h3 { color: #1A237E; }
.pricing-amount { margin-bottom: 1rem; }
.pricing-amount .price { font-size: 1.875rem; font-weight: 700; }
.pricing-amount .period { font-size: 0.875rem; }
.pricing-home-default .price { color: #fff; }
.pricing-home-default .period { color: #bfdbfe; }
.pricing-home-highlight .price { color: #1A237E; }
.pricing-home-highlight .period { color: #64748b; }
.pricing-features { margin-bottom: 1.5rem; }
.pricing-features li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; margin-bottom: 0.5rem; }
.pricing-home-default .pricing-features li { color: #bfdbfe; }
.pricing-home-highlight .pricing-features li { color: #475569; }
.pricing-features li svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.pricing-note { text-align: center; font-size: 0.75rem; color: #93c5fd; margin-top: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   INSTRUCTOR CARDS
   ═══════════════════════════════════════════════════════════ */
.instructor-card { display: block; background: #f8fafc; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; text-align: center; transition: box-shadow 0.3s; text-decoration: none; color: inherit; }
.instructor-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.instructor-card img { width: 5rem; height: 5rem; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 2px solid #fff; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.instructor-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.125rem; font-size: 0.9375rem; }
.instructor-card .inst-title { font-size: 0.75rem; color: #64748b; margin-bottom: 0.25rem; }
.instructor-card .inst-spec { font-size: 0.75rem; color: #FF8F00; font-weight: 500; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIAL CARDS
   ═══════════════════════════════════════════════════════════ */
.testimonial-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; transition: box-shadow 0.3s; }
.testimonial-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.testimonial-stars { display: flex; gap: 0.125rem; margin-bottom: 0.75rem; }
.testimonial-stars svg { width: 1rem; height: 1rem; }
.testimonial-quote { font-size: 0.875rem; color: #475569; line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; }
.testimonial-author-name { font-weight: 600; font-size: 0.875rem; color: #1A237E; }
.testimonial-author-role { font-size: 0.75rem; color: #64748b; }

/* ═══════════════════════════════════════════════════════════
   FAQ ACCORDION
   ═══════════════════════════════════════════════════════════ */
.faq-item { border: 1px solid #e2e8f0; border-radius: 0.5rem; overflow: hidden; margin-bottom: 0.75rem; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 1.25rem; text-align: left; background: none; border: none; cursor: pointer; transition: background 0.15s; }
.faq-question:hover { background: #f8fafc; }
.faq-question span { font-family: 'Outfit', system-ui, sans-serif; font-weight: 500; color: #1A237E; padding-right: 1rem; }
.faq-question svg { width: 1.25rem; height: 1.25rem; flex-shrink: 0; }
.faq-question .chevron-down { color: #94a3b8; }
.faq-question .chevron-up { color: #FF8F00; }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem; }
.faq-answer.open { display: block; }
.faq-answer p { font-size: 0.875rem; color: #475569; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════ */
.cta-icon { width: 3rem; height: 3rem; color: rgba(255,255,255,0.8); margin: 0 auto 1.5rem; display: block; }
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }

/* ═══════════════════════════════════════════════════════════
   COMPLIANCE BANNER
   ═══════════════════════════════════════════════════════════ */
.compliance-text { text-align: center; font-size: 0.75rem; color: #64748b; line-height: 1.7; max-width: 48rem; margin: 0 auto; }
.compliance-text strong { font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   PAGE HEADER (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-header { background: linear-gradient(to bottom right, #1A237E, #283593); padding: 6rem 0 3rem; color: #fff; margin-top: 4rem; }
.page-header h1 { font-size: 2.25rem; font-weight: 700; margin-bottom: 0.75rem; }
@media (min-width: 768px) { .page-header h1 { font-size: 2.5rem; } }
.page-header p { color: #bfdbfe; font-size: 1.125rem; max-width: 36rem; }
.page-header .breadcrumb { font-size: 0.875rem; color: #93c5fd; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.5rem; }
.page-header .breadcrumb a { color: #93c5fd; transition: color 0.15s; }
.page-header .breadcrumb a:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════════
   FILTER TABS
   ═══════════════════════════════════════════════════════════ */
.filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 2rem; }
.filter-tab { padding: 0.5rem 1rem; font-size: 0.875rem; font-weight: 500; border-radius: 9999px; border: 1px solid #e2e8f0; background: #fff; color: #475569; cursor: pointer; transition: all 0.15s; }
.filter-tab:hover { border-color: #1A237E; color: #1A237E; }
.filter-tab.active { background: #1A237E; color: #fff; border-color: #1A237E; }

/* ═══════════════════════════════════════════════════════════
   BLOG CARDS
   ═══════════════════════════════════════════════════════════ */
.blog-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; overflow: hidden; transition: box-shadow 0.3s; display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.blog-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.blog-card-img-wrap { position: relative; overflow: hidden; }
.blog-card-img { width: 100%; height: 12rem; object-fit: cover; transition: transform 0.3s; }
.blog-card:hover .blog-card-img { transform: scale(1.05); }
.blog-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: #64748b; margin-bottom: 0.75rem; }
.blog-card-body h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; font-size: 1rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-body .excerpt { font-size: 0.875rem; color: #475569; line-height: 1.6; margin-bottom: 1rem; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.blog-card-footer { margin-top: auto; display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #64748b; }
.blog-card-footer img { width: 1.5rem; height: 1.5rem; border-radius: 50%; object-fit: cover; }

/* ═══════════════════════════════════════════════════════════
   GUIDE CARDS
   ═══════════════════════════════════════════════════════════ */
.guide-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; overflow: hidden; transition: box-shadow 0.3s; display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.guide-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.guide-card-img-wrap { position: relative; overflow: hidden; }
.guide-card-img { width: 100%; height: 10rem; object-fit: cover; transition: transform 0.3s; }
.guide-card:hover .guide-card-img { transform: scale(1.05); }
.guide-card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.guide-card-body h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; font-size: 0.9375rem; }
.guide-card-body p { font-size: 0.875rem; color: #475569; line-height: 1.6; margin-bottom: 0.75rem; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.guide-card-meta { margin-top: auto; display: flex; align-items: center; justify-content: space-between; font-size: 0.75rem; color: #64748b; }

/* ═══════════════════════════════════════════════════════════
   QUIZ CARDS
   ═══════════════════════════════════════════════════════════ */
.quiz-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; transition: all 0.3s; text-decoration: none; color: inherit; display: block; }
.quiz-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); border-color: rgba(26,35,126,0.2); }
.quiz-card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.75rem; }
.quiz-card-play { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: rgba(26,35,126,0.05); display: flex; align-items: center; justify-content: center; }
.quiz-card-play svg { width: 1.25rem; height: 1.25rem; color: #1A237E; }
.quiz-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.75rem; }
.quiz-card-info { display: flex; gap: 1rem; font-size: 0.75rem; color: #64748b; }
.quiz-card-info span { display: flex; align-items: center; gap: 0.25rem; }
.quiz-card-info svg { width: 0.875rem; height: 0.875rem; }

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE
   ═══════════════════════════════════════════════════════════ */
.pricing-page-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 2rem; text-align: center; transition: box-shadow 0.3s; position: relative; }
.pricing-page-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.pricing-page-card.popular { border-color: #FF8F00; box-shadow: 0 10px 15px -3px rgba(255,143,0,0.2); }
.popular-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: #FF8F00; color: #fff; font-size: 0.75rem; font-weight: 600; padding: 0.25rem 1rem; border-radius: 9999px; }
.pricing-page-card h3 { font-size: 1.25rem; font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; }
.pricing-page-card .price-big { font-size: 2.5rem; font-weight: 700; color: #1A237E; }
.pricing-page-card .price-period { font-size: 0.875rem; color: #64748b; }
.pricing-page-card .features-list { text-align: left; margin: 1.5rem 0; }
.pricing-page-card .features-list li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #475569; padding: 0.375rem 0; }
.pricing-page-card .features-list li svg { width: 1rem; height: 1rem; color: #10b981; flex-shrink: 0; }

/* Comparison Table */
.comparison-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.comparison-table th, .comparison-table td { padding: 0.75rem 1rem; border-bottom: 1px solid #e2e8f0; font-size: 0.875rem; text-align: left; }
.comparison-table th { font-weight: 600; color: #1A237E; background: #f8fafc; }
.comparison-table td { color: #475569; }
.comparison-table .check { color: #10b981; font-weight: 700; }
.comparison-table .cross { color: #ef4444; }

/* ═══════════════════════════════════════════════════════════
   FORMS
   ═══════════════════════════════════════════════════════════ */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: #334155; margin-bottom: 0.375rem; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 0.625rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; font-size: 0.875rem; color: #1e293b; background: #fff; transition: border-color 0.15s, box-shadow 0.15s; outline: none; font-family: inherit; }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: #1A237E; box-shadow: 0 0 0 3px rgba(26,35,126,0.1); }
.form-textarea { resize: vertical; min-height: 8rem; }
.form-checkbox-wrap { display: flex; align-items: flex-start; gap: 0.5rem; }
.form-checkbox { width: 1rem; height: 1rem; margin-top: 0.125rem; accent-color: #1A237E; }
.form-checkbox-label { font-size: 0.875rem; color: #475569; }
.form-checkbox-label a { color: #1A237E; text-decoration: underline; }
.form-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.form-row a { font-size: 0.875rem; color: #1A237E; font-weight: 500; }
.form-row a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   AUTH PAGES
   ═══════════════════════════════════════════════════════════ */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; background: #f8fafc; }
.auth-card { width: 100%; max-width: 28rem; background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 2rem; box-shadow: 0 1px 3px rgba(0,0,0,0.1); }
.auth-logo { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; text-decoration: none; }
.auth-logo .logo-icon { background: #1A237E; }
.auth-title { font-size: 1.5rem; font-weight: 700; color: #1A237E; text-align: center; margin-bottom: 0.25rem; }
.auth-subtitle { text-align: center; font-size: 0.875rem; color: #64748b; margin-bottom: 1.5rem; }
.auth-footer { text-align: center; font-size: 0.875rem; color: #64748b; margin-top: 1.25rem; }
.auth-footer a { color: #1A237E; font-weight: 500; }
.auth-footer a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════════
   DASHBOARD
   ═══════════════════════════════════════════════════════════ */
.dashboard-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 768px) { .dashboard-grid { grid-template-columns: repeat(3, 1fr); } }
.stat-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; }
.stat-card h4 { font-size: 0.75rem; color: #64748b; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.5rem; }
.stat-card .stat-num { font-size: 1.875rem; font-weight: 700; color: #1A237E; }
.progress-bar-wrap { width: 100%; height: 0.5rem; background: #e2e8f0; border-radius: 9999px; overflow: hidden; }
.progress-bar { height: 100%; background: #FF8F00; border-radius: 9999px; transition: width 0.5s; }

/* ═══════════════════════════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════════════════════════ */
.legal-content { padding: 3rem 0; max-width: 48rem; margin: 0 auto; }
.legal-content h2 { font-size: 1.5rem; font-weight: 700; color: #1A237E; margin: 2rem 0 0.75rem; }
.legal-content h3 { font-size: 1.125rem; font-weight: 600; color: #1A237E; margin: 1.5rem 0 0.5rem; }
.legal-content p { font-size: 0.9375rem; color: #475569; line-height: 1.8; margin-bottom: 1rem; }
.legal-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.legal-content ul li { font-size: 0.9375rem; color: #475569; line-height: 1.8; margin-bottom: 0.25rem; }
.legal-content strong { font-weight: 600; color: #1e293b; }
.legal-content a { color: #1A237E; text-decoration: underline; }
.legal-highlight { background: #fef3c7; border-left: 4px solid #FF8F00; padding: 1rem 1.25rem; border-radius: 0 0.5rem 0.5rem 0; margin: 1.5rem 0; }
.legal-highlight p { color: #92400e; margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; } }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; }
@media (max-width: 639px) { .about-values { grid-template-columns: 1fr; } }
.about-value { display: flex; align-items: flex-start; gap: 0.75rem; padding: 1rem; background: #f8fafc; border-radius: 0.5rem; }
.about-value svg { width: 1.25rem; height: 1.25rem; color: #FF8F00; flex-shrink: 0; margin-top: 0.125rem; }
.about-value h4 { font-weight: 600; color: #1A237E; font-size: 0.875rem; margin-bottom: 0.25rem; }
.about-value p { font-size: 0.75rem; color: #64748b; line-height: 1.5; }
.not-section { background: #fef2f2; border: 1px solid #fecaca; border-radius: 0.75rem; padding: 2rem; }
.not-section h3 { font-weight: 700; color: #dc2626; margin-bottom: 1rem; }
.not-section ul li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #991b1b; padding: 0.375rem 0; }
.not-section ul li svg { width: 1rem; height: 1rem; color: #dc2626; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   BLOG DETAIL
   ═══════════════════════════════════════════════════════════ */
.blog-detail-layout { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .blog-detail-layout { grid-template-columns: 2fr 1fr; } }
.blog-detail-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
.blog-detail-author { display: flex; align-items: center; gap: 0.5rem; }
.blog-detail-author img { width: 2.5rem; height: 2.5rem; border-radius: 50%; object-fit: cover; }
.blog-detail-content p { font-size: 1rem; color: #334155; line-height: 1.8; margin-bottom: 1.25rem; }
.sidebar-card { background: #f8fafc; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; margin-bottom: 1.5rem; }
.sidebar-card h4 { font-weight: 600; color: #1A237E; margin-bottom: 1rem; font-size: 1rem; }
.social-share { display: flex; gap: 0.5rem; margin: 1.5rem 0; }
.social-btn { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.375rem; border: 1px solid #e2e8f0; color: #475569; background: #fff; transition: all 0.15s; cursor: pointer; text-decoration: none; }
.social-btn:hover { background: #1A237E; color: #fff; border-color: #1A237E; }
.social-btn svg { width: 1rem; height: 1rem; }
.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-form input { flex: 1; padding: 0.5rem 0.75rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; font-size: 0.875rem; outline: none; font-family: inherit; }
.newsletter-form input:focus { border-color: #1A237E; }

/* ═══════════════════════════════════════════════════════════
   GUIDE DETAIL
   ═══════════════════════════════════════════════════════════ */
.guide-toc { background: #f8fafc; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; margin: 2rem 0; }
.guide-toc h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.75rem; }
.guide-toc ol { list-style: decimal; padding-left: 1.25rem; }
.guide-toc ol li { font-size: 0.875rem; color: #475569; padding: 0.375rem 0; }

/* ═══════════════════════════════════════════════════════════
   COURSE DETAIL
   ═══════════════════════════════════════════════════════════ */
.course-detail-hero { background: linear-gradient(to bottom right, #1A237E, #283593); padding: 6rem 0 3rem; color: #fff; margin-top: 4rem; }
.course-detail-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .course-detail-grid { grid-template-columns: 2fr 1fr; } }
.course-sidebar { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; position: sticky; top: 5rem; }
.syllabus-item { display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 0; border-bottom: 1px solid #f1f5f9; font-size: 0.875rem; }
.syllabus-item:last-child { border-bottom: none; }
.syllabus-item .lesson-title { color: #334155; display: flex; align-items: center; gap: 0.5rem; }
.syllabus-item .lesson-title svg { width: 1rem; height: 1rem; color: #1A237E; }
.syllabus-item .lesson-meta { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: #64748b; }

/* ═══════════════════════════════════════════════════════════
   INSTRUCTOR PAGE
   ═══════════════════════════════════════════════════════════ */
.instructor-page-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 2rem; text-align: center; transition: box-shadow 0.3s; }
.instructor-page-card:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
.instructor-page-card img { width: 6rem; height: 6rem; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; border: 3px solid #f1f5f9; }
.instructor-page-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.25rem; }
.instructor-page-card .title { font-size: 0.875rem; color: #FF8F00; font-weight: 500; margin-bottom: 0.5rem; }
.instructor-page-card .specialty { font-size: 0.75rem; color: #64748b; margin-bottom: 0.75rem; }
.instructor-page-card .bio { font-size: 0.875rem; color: #475569; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   FOR INSTITUTIONS
   ═══════════════════════════════════════════════════════════ */
.use-case-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; transition: box-shadow 0.3s; }
.use-case-card:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); }
.use-case-card svg { width: 2rem; height: 2rem; color: #1A237E; margin-bottom: 0.75rem; }
.use-case-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; }
.use-case-card p { font-size: 0.875rem; color: #475569; line-height: 1.6; }

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 2fr 1fr; } }
.contact-info-card { background: #f8fafc; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 0.75rem; padding: 0.75rem 0; }
.contact-info-item svg { width: 1.25rem; height: 1.25rem; color: #1A237E; flex-shrink: 0; margin-top: 0.125rem; }
.contact-info-item h4 { font-weight: 600; color: #1A237E; font-size: 0.875rem; margin-bottom: 0.125rem; }
.contact-info-item p { font-size: 0.875rem; color: #475569; }

/* ═══════════════════════════════════════════════════════════
   PAGINATION
   ═══════════════════════════════════════════════════════════ */
.pagination { display: flex; justify-content: center; gap: 0.25rem; margin-top: 2rem; }
.pagination a, .pagination span { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: 0.375rem; font-size: 0.875rem; font-weight: 500; border: 1px solid #e2e8f0; color: #475569; transition: all 0.15s; text-decoration: none; }
.pagination a:hover { background: #f8fafc; border-color: #1A237E; color: #1A237E; }
.pagination .active { background: #1A237E; color: #fff; border-color: #1A237E; }

/* ═══════════════════════════════════════════════════════════
   EMPTY STATE
   ═══════════════════════════════════════════════════════════ */
.empty-state { text-align: center; padding: 4rem 2rem; }
.empty-state svg { width: 3rem; height: 3rem; color: #94a3b8; margin: 0 auto 1rem; }
.empty-state h3 { font-weight: 600; color: #1A237E; margin-bottom: 0.5rem; }
.empty-state p { font-size: 0.875rem; color: #64748b; margin-bottom: 1.5rem; }

/* ═══════════════════════════════════════════════════════════
   QUIZ TAKE
   ═══════════════════════════════════════════════════════════ */
.quiz-progress { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.quiz-progress-text { font-size: 0.875rem; color: #64748b; white-space: nowrap; }
.quiz-question-card { background: #fff; border-radius: 0.75rem; border: 1px solid #e2e8f0; padding: 2rem; }
.quiz-question-card h3 { font-weight: 600; color: #1A237E; margin-bottom: 1.5rem; font-size: 1.125rem; }
.quiz-option { display: flex; align-items: center; gap: 0.75rem; padding: 0.875rem 1rem; border: 1px solid #e2e8f0; border-radius: 0.5rem; margin-bottom: 0.5rem; cursor: pointer; transition: all 0.15s; font-size: 0.875rem; color: #334155; background: #fff; }
.quiz-option:hover { border-color: #1A237E; background: rgba(26,35,126,0.02); }
.quiz-option.selected { border-color: #1A237E; background: rgba(26,35,126,0.05); }
.quiz-option.correct { border-color: #10b981; background: #ecfdf5; color: #065f46; }
.quiz-option.incorrect { border-color: #ef4444; background: #fef2f2; color: #991b1b; }
.quiz-option-radio { width: 1.25rem; height: 1.25rem; border-radius: 50%; border: 2px solid #cbd5e1; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.quiz-option.selected .quiz-option-radio { border-color: #1A237E; }
.quiz-option.selected .quiz-option-radio::after { content: ''; width: 0.5rem; height: 0.5rem; border-radius: 50%; background: #1A237E; }
.quiz-nav { display: flex; justify-content: space-between; margin-top: 1.5rem; }
.quiz-results { text-align: center; padding: 3rem 2rem; }
.quiz-score { font-size: 3rem; font-weight: 700; color: #1A237E; margin: 1rem 0; }

/* ═══════════════════════════════════════════════════════════
   COOKIE CONSENT
   ═══════════════════════════════════════════════════════════ */
.cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: #fff; border-top: 1px solid #e2e8f0; box-shadow: 0 -4px 6px -1px rgba(0,0,0,0.1); padding: 1rem; z-index: 50; display: none; }
.cookie-banner.show { display: block; }
.cookie-inner { display: flex; flex-direction: column; gap: 1rem; align-items: center; }
@media (min-width: 640px) { .cookie-inner { flex-direction: row; justify-content: space-between; } }
.cookie-inner p { font-size: 0.875rem; color: #475569; }
.cookie-inner p a { color: #1A237E; text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.5rem; flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — Matches React Footer.tsx exactly
   ═══════════════════════════════════════════════════════════ */
.footer { background: #1A237E; color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 0; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; gap: 2rem; } }
.footer-about p { font-size: 0.875rem; color: #bfdbfe; margin-bottom: 1.25rem; line-height: 1.7; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: #bfdbfe; margin-bottom: 0.75rem; }
.footer-contact-item a { color: #bfdbfe; transition: color 0.15s; }
.footer-contact-item a:hover { color: #FF8F00; }
.footer-contact-item svg { width: 1rem; height: 1rem; flex-shrink: 0; margin-top: 0.25rem; }
.footer-heading { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: #FF8F00; margin-bottom: 1rem; }
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.875rem; color: #bfdbfe; transition: color 0.15s; }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #283593; padding: 1.25rem 0; display: flex; flex-direction: column; gap: 0.75rem; align-items: center; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { font-size: 0.75rem; color: #93c5fd; }

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.5s ease, transform 0.5s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════════ */
.toast { position: fixed; top: 5rem; right: 1rem; z-index: 100; background: #fff; border: 1px solid #e2e8f0; border-radius: 0.5rem; padding: 1rem 1.25rem; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); transform: translateX(120%); transition: transform 0.3s ease; max-width: 20rem; }
.toast.show { transform: translateX(0); }
.toast-success { border-left: 4px solid #10b981; }
.toast-info { border-left: 4px solid #1A237E; }
.toast p { font-size: 0.875rem; color: #334155; }

/* ═══════════════════════════════════════════════════════════
   GRID SYSTEM
   ═══════════════════════════════════════════════════════════ */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-4 { gap: 1rem; }
.gap-5 { gap: 1.25rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
@media (max-width: 1023px) { .grid-cols-4 { grid-template-columns: repeat(2, 1fr); } .grid-cols-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 639px) { .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 639px) {
  .hero h1 { font-size: 2rem; }
  .hero-grid { padding: 4rem 0; }
  .section { padding: 3rem 0; }
  .section-header { margin-bottom: 2rem; }
  .section-header h2 { font-size: 1.5rem; }
  .page-header { padding: 5rem 0 2rem; }
  .page-header h1 { font-size: 1.75rem; }
}

/* ═══════════════════════════════════════════════════════════
   PRINT
   ═══════════════════════════════════════════════════════════ */
@media print {
  .navbar, .footer, .cookie-banner { display: none !important; }
}
