/* ═══════════════════════════════════════════════════════════════════════════
   100 Plus Academy — Design System & Landing Page Styles
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Google Fonts ────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties (Design Tokens) ──────────────────────────────── */
:root {
    /* Brand Colors */
    --primary: #e62129;
    --primary-dark: #c41a21;
    --primary-light: #ff4d54;
    --accent-teal: #45c3cd;
    --accent-purple: #8e54e9;
    --accent-gold: #ffb606;
    --dark: #1a1a2e;
    --dark-surface: #16213e;
    --dark-card: #1e2a45;

    /* Neutral Palette */
    --white: #ffffff;
    --gray-50: #f8f9fa;
    --gray-100: #f1f3f5;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #adb5bd;
    --gray-500: #6c757d;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --text: #2d3436;
    --text-light: #636e72;
    --text-muted: #b2bec3;

    /* Semantic Colors */
    --success: #00b894;
    --warning: #fdcb6e;
    --info: #74b9ff;
    --whatsapp: #25D366;
    --whatsapp-dark: #128C7E;

    /* Typography */
    --font-heading: 'League Spartan', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Font Sizes — modular scale */
    --text-xs: 0.75rem;
    /* 12px */
    --text-sm: 0.875rem;
    /* 14px */
    --text-base: 1rem;
    /* 16px */
    --text-md: 1.125rem;
    /* 18px */
    --text-lg: 1.25rem;
    /* 20px */
    --text-xl: 1.5rem;
    /* 24px */
    --text-2xl: 1.875rem;
    /* 30px */
    --text-3xl: 2.25rem;
    /* 36px */
    --text-4xl: 2.75rem;
    /* 44px */
    --text-5xl: 3.5rem;
    /* 56px */

    /* 8px Spacing Grid */
    --space-1: 0.25rem;
    /* 4px */
    --space-2: 0.5rem;
    /* 8px */
    --space-3: 0.75rem;
    /* 12px */
    --space-4: 1rem;
    /* 16px */
    --space-5: 1.5rem;
    /* 24px */
    --space-6: 2rem;
    /* 32px */
    --space-7: 2.5rem;
    /* 40px */
    --space-8: 3rem;
    /* 48px */
    --space-9: 3.5rem;
    /* 56px */
    --space-10: 4rem;
    /* 64px */
    --space-11: 5rem;
    /* 80px */
    --space-12: 6rem;
    /* 96px */

    /* Layout */
    --container-max: 1200px;
    --container-narrow: 900px;

    /* Borders & Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50%;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 20px rgba(230, 33, 41, 0.25);

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* ── Reset & Base ────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul,
ol {
    list-style: none;
}

/* ── Typography ──────────────────────────────────────────────────────────── */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--dark);
}

h1 {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-5);
}

h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-5);
}

h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

p {
    margin-bottom: var(--space-4);
    color: var(--text-light);
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--white);
}

.text-primary {
    color: var(--primary);
}

/* ── Layout ──────────────────────────────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-5);
}

.container--narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-11) 0;
}

.section--gray {
    background-color: var(--gray-50);
}

.section--dark {
    background-color: var(--dark);
    color: var(--white);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
    color: var(--white);
}

.section--dark p {
    color: var(--text-muted);
}

.section--gradient {
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--accent-purple) 100%);
    color: var(--white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: var(--space-3);
}

.section--dark .section-label,
.section--gradient .section-label {
    color: var(--accent-gold);
}

.section-subtitle {
    font-size: var(--text-md);
    color: var(--text-light);
    max-width: 640px;
    margin: 0 auto var(--space-8);
}

/* ── Grid System ─────────────────────────────────────────────────────────── */
.grid {
    display: grid;
    gap: var(--space-5);
}

.grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.grid--5 {
    grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1024px) {
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid--5 {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {

    .grid--2,
    .grid--3,
    .grid--4,
    .grid--5 {
        grid-template-columns: 1fr;
    }
}

/* ── Buttons ─────────────────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-align: center;
    line-height: 1.4;
}

.btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(230, 33, 41, 0.3);
}

.btn--primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 33, 41, 0.4);
}

.btn--secondary {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn--secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--primary);
    border-color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn--white:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

.btn--lg {
    padding: var(--space-4) var(--space-7);
    font-size: var(--text-md);
    border-radius: var(--radius-md);
}

.btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-sm);
}

/* ── Cards ───────────────────────────────────────────────────────────────── */
.card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: var(--space-6);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-4);
    font-size: var(--text-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: var(--white);
}

.card__icon--teal {
    background: linear-gradient(135deg, var(--accent-teal) 0%, #2ecc71 100%);
}

.card__icon--purple {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #6c5ce7 100%);
}

.card__icon--gold {
    background: linear-gradient(135deg, var(--accent-gold) 0%, #e17055 100%);
}

.card__title {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: var(--space-2);
}

.card__text {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Subject Card Variation */
.card--subject {
    text-align: center;
    padding: var(--space-7) var(--space-5);
    border: 2px solid var(--gray-200);
    position: relative;
    overflow: hidden;
}

.card--subject::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-purple));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.card--subject:hover::before {
    transform: scaleX(1);
}

.card--subject .card__icon {
    margin: 0 auto var(--space-4);
}

/* Testimonial Card */
.card--testimonial {
    border-left: 4px solid var(--primary);
    position: relative;
}

.card--testimonial__quote {
    font-size: var(--text-md);
    font-style: italic;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.card--testimonial__author {
    font-weight: 600;
    color: var(--dark);
    font-size: var(--text-sm);
}

.card--testimonial__score {
    font-size: var(--text-sm);
    color: var(--primary);
    font-weight: 600;
}

/* ── Top Bar ─────────────────────────────────────────────────────────────── */
.topbar {
    background: var(--dark);
    color: var(--white);
    padding: var(--space-2) 0;
    font-size: var(--text-sm);
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.topbar__contact {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.topbar__item {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    color: var(--gray-300);
    transition: color var(--transition-fast);
}

.topbar__item:hover {
    color: var(--accent-gold);
}

.topbar__item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.topbar__social {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.topbar__social a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
    display: flex;
    align-items: center;
}

.topbar__social a:hover {
    color: var(--accent-gold);
}

.topbar__social svg {
    width: 16px;
    height: 16px;
}

@media (max-width: 768px) {
    .topbar {
        display: none;
    }
}

/* ── Header / Navbar ─────────────────────────────────────────────────────── */
.header {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-3);
    padding-bottom: var(--space-3);
}

.header__logo img {
    height: 52px;
    width: auto;
}

.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-7);
}

.header__menu {
    display: flex;
    align-items: center;
    gap: var(--space-5);
}

.header__menu a {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text);
    padding: var(--space-2) 0;
    position: relative;
    transition: color var(--transition-fast);
}

.header__menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width var(--transition-base);
}

.header__menu a:hover,
.header__menu a.active {
    color: var(--primary);
}

.header__menu a:hover::after,
.header__menu a.active::after {
    width: 100%;
}

.header__cta {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

/* Mobile Menu Toggle */
.header__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
    color: var(--dark);
}

.header__toggle svg {
    width: 28px;
    height: 28px;
}

@media (max-width: 1024px) {
    .header__nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: var(--space-5);
        box-shadow: var(--shadow-lg);
        gap: var(--space-4);
    }

    .header__nav.is-open {
        display: flex;
    }

    .header__menu {
        flex-direction: column;
        width: 100%;
        gap: var(--space-3);
    }

    .header__menu a {
        display: block;
        padding: var(--space-3);
        font-size: var(--text-base);
        border-bottom: 1px solid var(--gray-200);
        width: 100%;
    }

    .header__cta {
        flex-direction: column;
        width: 100%;
    }

    .header__cta .btn {
        width: 100%;
    }

    .header__toggle {
        display: block;
    }
}

/* ── Hero Section ────────────────────────────────────────────────────────── */
.hero {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-surface) 50%, var(--dark) 100%);
    position: relative;
    overflow: hidden;
    padding: var(--space-12) 0;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230, 33, 41, 0.15) 0%, transparent 70%);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(69, 195, 205, 0.1) 0%, transparent 70%);
    border-radius: var(--radius-full);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(230, 33, 41, 0.15);
    border: 1px solid rgba(230, 33, 41, 0.3);
    border-radius: 10px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--primary-light);
    margin-bottom: var(--space-5);
}

.hero h1 {
    color: var(--white);
    font-size: var(--text-5xl);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-4);
}

.hero h1 span {
    color: var(--primary);
}

.hero__sub {
    font-size: var(--text-lg);
    color: var(--gray-400);
    margin-bottom: var(--space-6);
    line-height: 1.7;
}

.hero__actions {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-8);
}

.hero__stats {
    display: flex;
    gap: var(--space-8);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: left;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero__stat-value span {
    color: var(--accent-gold);
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--gray-400);
    margin-top: var(--space-1);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero {
        padding: var(--space-10) 0;
        min-height: auto;
    }

    .hero h1 {
        font-size: var(--text-3xl);
    }

    .hero__sub {
        font-size: var(--text-base);
    }

    .hero__stats {
        gap: var(--space-6);
    }

    .hero__stat-value {
        font-size: var(--text-2xl);
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }
}

/* ── Stats Bar ───────────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--primary);
    padding: var(--space-7) 0;
}

.stats-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: var(--space-6);
}

.stats-bar__item {
    text-align: center;
}

.stats-bar__value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stats-bar__label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.8);
    margin-top: var(--space-1);
    font-weight: 400;
}

/* ── Why Choose Us (Benefits) ────────────────────────────────────────────── */
/* Uses .card component + .grid--3 */

/* ── Subjects Section ────────────────────────────────────────────────────── */
/* Uses .card--subject + .grid--5 */

/* ── Results / Achievements ──────────────────────────────────────────────── */
/* Uses .card--testimonial */

/* ── Location / Nearby Areas ─────────────────────────────────────────────── */
.location__areas {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.location__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text);
    font-weight: 500;
    transition: all var(--transition-base);
}

.location__tag:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.location__tag svg {
    width: 14px;
    height: 14px;
}

/* ── Map Section ─────────────────────────────────────────────────────────── */
.map-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gray-200);
}

.map-wrap iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .map-wrap iframe {
        height: 280px;
    }
}

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */
.faq {
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.faq__item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-3);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq__item:hover {
    border-color: var(--primary);
}

.faq__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-5);
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    gap: var(--space-4);
    transition: background var(--transition-fast);
}

.faq__question:hover {
    background: var(--gray-50);
}

.faq__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
    color: var(--primary);
}

.faq__item.is-open .faq__icon {
    transform: rotate(45deg);
}

.faq__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq__item.is-open .faq__answer {
    max-height: 500px;
}

.faq__answer-inner {
    padding: 0 var(--space-5) var(--space-5);
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.8;
}

/* ── Final CTA Section ───────────────────────────────────────────────────── */
.cta-final {
    background: linear-gradient(135deg, var(--dark) 0%, #0f1629 100%);
    padding: var(--space-12) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(230, 33, 41, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final h2 {
    color: var(--white);
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
    position: relative;
}

.cta-final p {
    color: var(--gray-400);
    font-size: var(--text-md);
    max-width: 600px;
    margin: 0 auto var(--space-7);
    position: relative;
}

.cta-final__actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    position: relative;
}

@media (max-width: 768px) {
    .cta-final h2 {
        font-size: var(--text-2xl);
    }

    .cta-final__actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-final__actions .btn {
        width: 100%;
        max-width: 320px;
    }
}

/* ── Footer ──────────────────────────────────────────────────────────────── */
.footer {
    background: var(--dark);
    color: var(--gray-400);
    padding: var(--space-11) 0 0;
}

.footer h4 {
    color: var(--white);
    font-size: var(--text-lg);
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-8);
}

.footer__about p {
    font-size: var(--text-sm);
    line-height: 1.8;
    color: var(--gray-400);
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    font-size: var(--text-sm);
    color: var(--gray-400);
}

.footer__contact-item svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 3px;
    color: var(--primary);
}

.footer__contact-item a {
    color: var(--gray-400);
    transition: color var(--transition-fast);
}

.footer__contact-item a:hover {
    color: var(--accent-gold);
}

.footer__links li {
    margin-bottom: var(--space-3);
}

.footer__links a {
    font-size: var(--text-sm);
    color: var(--gray-400);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.footer__links a:hover {
    color: var(--white);
    transform: translateX(4px);
}

.footer__links a::before {
    content: '→';
    font-size: var(--text-xs);
    color: var(--primary);
}

.footer__social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-5);
}

.footer__social a {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
}

.footer__social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer__social svg {
    width: 18px;
    height: 18px;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-1) 0;
    margin-top: var(--space-8);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--space-3);
}

.footer__copyright {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-2);
}

.footer__credit {
    font-size: var(--text-xs);
    color: var(--gray-500);
    margin-bottom: var(--space-2);
}

.footer__credit a {
    color: var(--primary);
    font-weight: 500;
}

.footer__credit a:hover {
    color: var(--primary-light);
}

@media (max-width: 768px) {
    .footer__grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ── WhatsApp Floating Button ────────────────────────────────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 45px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: var(--space-3);
    background: var(--whatsapp);
    color: var(--white);
    padding: var(--space-2) var(--space-4);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    font-weight: 600;
    font-size: var(--text-sm);
    transition: all var(--transition-base);
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    background: var(--whatsapp-dark);
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 24px;
    height: 24px;
}

.whatsapp-float__text {
    display: inline;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        display: none;
    }
}

/* ── Sticky Mobile CTA ──────────────────────────────────────────────────── */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: var(--white);
    padding: var(--space-3) var(--space-4);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    border-top: 1px solid var(--gray-200);
}

.mobile-cta__inner {
    display: flex;
    gap: var(--space-3);
}

.mobile-cta .btn {
    flex: 1;
    padding: var(--space-3);
    font-size: var(--text-sm);
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    body {
        padding-bottom: 72px;
    }
}

/* ── Scroll to Top ───────────────────────────────────────────────────────── */
.scroll-top {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 9998;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    background: var(--dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.scroll-top:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
}

.scroll-top.is-visible {
    display: flex;
}

@media (max-width: 768px) {
    .scroll-top {
        bottom: 80px;
        left: 16px;
        width: 38px;
        height: 38px;
    }
}

/* ── NAP Section ─────────────────────────────────────────────────────────── */
.nap {
    display: flex;
    align-items: flex-start;
    gap: var(--space-6);
    flex-wrap: wrap;
    padding: var(--space-6);
    background: var(--gray-50);
    border-radius: var(--radius-md);
    border: 1px solid var(--gray-200);
    margin-top: var(--space-6);
}

.nap__item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    flex: 1;
    min-width: 200px;
}

.nap__icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: var(--radius-md);
    background: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nap__icon svg {
    width: 18px;
    height: 18px;
}

.nap__label {
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-light);
    margin-bottom: var(--space-1);
}

.nap__value {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--dark);
}

.nap__value a {
    color: var(--primary);
}

.nap__value a:hover {
    text-decoration: underline;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */
.breadcrumb {
    padding: var(--space-4) 0;
    font-size: var(--text-sm);
    color: var(--gray-500);
    border-bottom: 1px solid var(--gray-200);
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--primary);
    font-weight: 500;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb__sep {
    color: var(--gray-400);
}

/* ── Animations ──────────────────────────────────────────────────────────── */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Utilities ───────────────────────────────────────────────────────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.mt-2 {
    margin-top: var(--space-2);
}

.mt-4 {
    margin-top: var(--space-4);
}

.mt-6 {
    margin-top: var(--space-6);
}

.mt-8 {
    margin-top: var(--space-8);
}

.mb-0 {
    margin-bottom: 0;
}

.mb-2 {
    margin-bottom: var(--space-2);
}

.mb-4 {
    margin-bottom: var(--space-4);
}

.mb-6 {
    margin-bottom: var(--space-6);
}

/* ── Clickable Card Links ────────────────────────────────────────────────── */
.card--link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.card--link:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card--link:hover .card__arrow {
    color: var(--primary);
    transform: translateX(4px);
}

.card__arrow {
    display: block;
    margin-top: var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent-teal);
    transition: all var(--transition-base);
}

.card__arrow--muted {
    color: var(--gray-400);
    font-style: italic;
}

/* ── Card Icon Variants ──────────────────────────────────────────────────── */
.card__icon--gold {
    color: var(--accent-gold);
}

.card__icon--teal {
    color: var(--accent-teal);
}

.card__icon--purple {
    color: var(--accent-purple);
}

/* ── Milestone List ──────────────────────────────────────────────────────── */
.milestone-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.milestone-list li {
    position: relative;
    padding: var(--space-3) 0 var(--space-3) var(--space-6);
    border-left: 2px solid var(--gray-200);
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.7;
}

.milestone-list li:last-child {
    border-left-color: var(--primary);
}

.milestone-list li::before {
    content: '';
    position: absolute;
    left: -6px;
    top: calc(var(--space-3) + 6px);
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background: var(--gray-300);
    border: 2px solid var(--white);
}

.milestone-list li:last-child::before {
    background: var(--primary);
}

.milestone-list li strong {
    color: var(--dark);
    font-weight: 700;
}

/* ── Grid 2-column ───────────────────────────────────────────────────────── */
.grid--2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-8);
    align-items: start;
}

@media (max-width: 768px) {
    .grid--2 {
        grid-template-columns: 1fr;
    }
}

/* ── Button Outline Variant ──────────────────────────────────────────────── */
.btn--outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn--outline:hover {
    background: var(--primary);
    color: var(--white);
}

/* ── Button White Variant ────────────────────────────────────────────────── */
.btn--white {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn--white:hover {
    background: var(--white);
    color: var(--dark);
}

/* ── Section Label Badge ─────────────────────────────────────────────────── */
.section-label {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: rgba(230, 33, 41, 0.08);
    color: var(--primary);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-3);
}

/* ── Section Subtitle ────────────────────────────────────────────────────── */
.section-subtitle {
    max-width: 680px;
    margin: 0 auto var(--space-8);
    color: var(--text-light);
    font-size: var(--text-md);
    line-height: 1.7;
}