/* ============================================
   SAMB KITE — Design System (Blue Premium)
   ============================================ */

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

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-body);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
ul, ol { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; border: none; outline: none; background: none; }

/* ---- Tokens ---- */
:root {
    /* Couleurs principales */
    --primary: #0A2540;
    --primary-light: #163B5C;
    --accent: #00D2FF;
    --accent-dark: #00A3CC;
    --accent-glow: rgba(0, 210, 255, 0.25);

    /* Fonds */
    --bg-body: #F7FAFC;
    --bg-surface: #FFFFFF;
    --bg-card: #FFFFFF;
    --bg-dark: #0A2540;

    /* Textes */
    --text-primary: #0A2540;
    --text-secondary: #4A5568;
    --text-muted: #A0AEC0;

    /* Bordures */
    --border-subtle: #E2E8F0;
    --border-accent: rgba(0, 210, 255, 0.25);

    /* Espacements */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* Rayons */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Ombres */
    --shadow-sm: 0 1px 3px rgba(10,37,64,0.04), 0 1px 2px rgba(10,37,64,0.06);
    --shadow-md: 0 4px 14px rgba(10,37,64,0.07);
    --shadow-lg: 0 10px 30px rgba(10,37,64,0.10);
    --shadow-xl: 0 20px 50px rgba(10,37,64,0.12);
    --shadow-glow: 0 0 25px rgba(0, 210, 255, 0.25);

    /* Layout */
    --max-width: 1200px;
    --navbar-height: 80px;
}

/* ---- Typographie ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700; line-height: 1.2; color: var(--text-primary); letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--text-secondary); line-height: 1.8; }

.highlight { color: var(--accent); }

::selection { background: var(--accent); color: white; }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: var(--border-subtle); border-radius: var(--radius-full); }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ---- Layout ---- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 var(--space-xl); }

.section { padding: var(--space-5xl) 0; position: relative; }
.section--alt { background: var(--bg-surface); }
.section--dark { background: var(--bg-dark); color: white; }
.section--dark h2, .section--dark h3, .section--dark p { color: white; }
.section--dark p { opacity: 0.85; }

.section-header { text-align: center; margin-bottom: var(--space-4xl); }
.section-header h2 { margin-bottom: var(--space-md); }
.section-header p { max-width: 600px; margin: 0 auto; font-size: 1.1rem; }

.label {
    font-size: 0.8rem; font-weight: 700; color: var(--accent-dark);
    text-transform: uppercase; letter-spacing: 0.12em;
    display: inline-block; margin-bottom: var(--space-md);
    background: rgba(0, 210, 255, 0.08); padding: 5px 14px; border-radius: var(--radius-full);
}

/* ---- Grilles ---- */
.grid { display: grid; gap: var(--space-xl); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---- HERO ENHANCEMENTS ---- */
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0, 210, 255, 0.1); border: 1px solid rgba(0, 210, 255, 0.25);
    padding: 8px 16px; border-radius: var(--radius-full);
    font-size: 0.8rem; font-weight: 600; color: var(--accent);
    margin-bottom: var(--space-lg); letter-spacing: 0.02em;
}
.badge-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--accent); animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}
.hero-particles {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
}
.hero-trust {
    display: flex; align-items: center; gap: var(--space-lg);
    margin-top: var(--space-2xl); padding-top: var(--space-xl);
    border-top: 1px solid rgba(255,255,255,0.15);
}
.trust-avatars {
    display: flex; align-items: center;
}
.trust-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid white; object-fit: cover;
    margin-left: -12px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-avatar-placeholder {
    background: rgba(255,255,255,0.15); display: flex;
    align-items: center; justify-content: center;
    font-size: 0.8rem; color: white; font-weight: 700;
}
.trust-text {
    display: flex; flex-direction: column; gap: 2px;
}
.trust-score {
    font-weight: 800; color: white; font-size: 1rem;
}
.trust-count {
    font-size: 0.8rem; color: rgba(255,255,255,0.7);
}
.trust-stars {
    display: flex; gap: 2px;
}

/* ---- STATS SECTION ---- */
.section--stats {
    background: var(--bg-dark); padding: var(--space-4xl) 0;
    position: relative; overflow: hidden;
    color: white;
}
.section--stats::before {
    content: ''; position: absolute; top: -50%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(0,210,255,0.08) 0%, transparent 70%);
    border-radius: 50%;
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2xl);
}
.stat-item {
    text-align: center; color: white;
}
.stat-icon {
    width: 60px; height: 60px; margin: 0 auto var(--space-lg);
    background: rgba(0, 210, 255, 0.1); border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--accent);
}
.stat-number {
    font-size: 3rem; font-weight: 800; line-height: 1;
    display: inline;
    color: var(--accent);
}
.stat-suffix {
    font-size: 1.5rem; font-weight: 700;
    color: white;
}
.stat-value {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: var(--space-sm);
    color: white;
}
.stat-label {
    display: block; font-size: 0.9rem; color: rgba(255,255,255,0.7);
    margin-top: var(--space-sm); font-weight: 500;
    color: rgba(255,255,255,0.7);
}

/* ---- TESTIMONIALS ---- */
/* ======== TESTIMONIALS SLIDER ======== */
.testimonials-slider {
    display: flex; align-items: center; gap: var(--space-md);
    max-width: 750px; margin: 0 auto var(--space-xl);
}
.testi-viewport {
    flex: 1; overflow: hidden; border-radius: var(--radius-lg);
}
.testi-track {
    display: flex; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.testi-track .testimonial-card {
    min-width: 100%; box-sizing: border-box;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: var(--space-2xl);
    position: relative; box-shadow: var(--shadow-sm);
}
.testimonial-card:hover {
    transform: none; box-shadow: var(--shadow-sm);
}
.testimonial-card.featured { border: 2px solid var(--accent); }
.testimonial-badge {
    position: absolute; top: -1px; right: 20px;
    background: linear-gradient(135deg, var(--accent), #0090B3);
    color: white; padding: 6px 14px; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.5px;
}
.testimonial-stars {
    display: flex; gap: 3px; margin-bottom: var(--space-lg);
}
.testimonial-text {
    font-size: 1rem; line-height: 1.8; color: var(--text-secondary);
    font-style: italic; margin-bottom: var(--space-xl);
    border: none; padding: 0;
}
.testimonial-author {
    display: flex; align-items: center; gap: var(--space-md);
}
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-author strong {
    display: block; color: var(--text-primary); font-size: 0.95rem;
}
.testimonial-author span {
    font-size: 0.8rem; color: var(--text-muted);
}
.testi-arrow {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: all 0.3s ease; flex-shrink: 0;
    color: var(--text-primary);
}
.testi-arrow:hover {
    background: var(--accent); color: white;
    border-color: var(--accent); box-shadow: 0 4px 16px rgba(0,210,255,0.3);
}
.testi-dots {
    display: flex; justify-content: center; gap: 8px; margin-bottom: var(--space-lg);
}
.testi-dot {
    width: 10px; height: 10px; border-radius: 50%; border: none;
    background: var(--border-subtle); cursor: pointer;
    transition: all 0.3s ease; padding: 0;
}
.testi-dot.active {
    background: var(--accent); width: 28px; border-radius: 10px;
}
.testimonials-cta {
    text-align: center; margin-top: var(--space-2xl);
}

/* ---- GALLERY PREVIEW ---- */
.gallery-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 200px);
    gap: var(--space-md);
}
.gallery-preview-item {
    position: relative; overflow: hidden; border-radius: var(--radius-md);
    cursor: pointer;
}
.gallery-preview-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.gallery-preview-item:hover img { transform: scale(1.08); }
.gallery-preview-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,37,64,0.8), transparent 60%);
    opacity: 0; transition: opacity 0.35s ease;
    display: flex; align-items: flex-end; padding: var(--space-lg);
}
.gallery-preview-item:hover .gallery-preview-overlay { opacity: 1; }
.gallery-preview-overlay span {
    color: white; font-weight: 700; font-size: 0.95rem;
}
.gi-1 { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-preview-cta {
    text-align: center; margin-top: var(--space-3xl);
}

/* ---- FAQ ---- */
.faq-grid {
    display: grid; grid-template-columns: 1fr 1.4fr;
    gap: var(--space-4xl); align-items: start;
}
.faq-intro {
    font-size: 1.1rem; line-height: 1.8; color: var(--text-secondary);
    margin-bottom: var(--space-md);
}
.faq-list { width: 100%; }
.faq-item {
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md); margin-bottom: var(--space-md);
    overflow: hidden; transition: all 0.3s ease;
    background: var(--bg-card);
}
.faq-item:hover { border-color: var(--border-accent); }
.faq-item.active { border-color: var(--accent); box-shadow: var(--shadow-md); }
.faq-question {
    width: 100%; padding: var(--space-lg) var(--space-xl);
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-weight: 600; color: var(--text-primary);
    text-align: left; transition: color 0.3s;
}
.faq-question:hover { color: var(--accent-dark); }
.faq-chevron {
    transition: transform 0.3s ease; flex-shrink: 0;
    color: var(--text-muted);
}
.faq-item.active .faq-chevron { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
    max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer {
    max-height: 200px;
}
.faq-answer p {
    padding: 0 var(--space-xl) var(--space-xl);
    font-size: 0.95rem; line-height: 1.8;
}

/* ---- CTA SECTION ---- */
.section--cta {
    background: linear-gradient(160deg, var(--bg-dark) 0%, #0D3A5C 50%, var(--primary-light) 100%);
    color: white; position: relative; overflow: hidden;
}
.section--cta h2, .section--cta p { color: white; }
.cta-bg-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300D2FF' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}
.cta-content { position: relative; z-index: 2; }
.cta-btns {
    display: flex; gap: var(--space-md); justify-content: center;
    flex-wrap: wrap; margin-bottom: var(--space-xl);
}
.cta-btn-primary {
    background: white; color: var(--primary); font-weight: 800;
    box-shadow: 0 4px 20px rgba(255,255,255,0.2);
}
.cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255,255,255,0.3);
}
.cta-btn-secondary {
    background: rgba(255,255,255,0.1); color: white;
    border: 1.5px solid rgba(255,255,255,0.3);
}
.cta-btn-secondary:hover {
    background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.5);
    transform: translateY(-2px);
}
.cta-guarantee {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 0.85rem; color: rgba(255,255,255,0.7);
}
.cta-guarantee svg { color: var(--accent); }

/* ---- HOW IT WORKS / STEPS ---- */
.steps-grid {
    display: flex; align-items: flex-start; justify-content: center;
    gap: 0; max-width: 1000px; margin: 0 auto;
}
.step-card {
    flex: 1; text-align: center; padding: var(--space-xl);
    position: relative;
}
.step-number {
    font-size: 4rem; font-weight: 800; line-height: 1;
    color: rgba(0, 210, 255, 0.1); position: absolute;
    top: -10px; left: 50%; transform: translateX(-50%);
}
.step-icon {
    width: 72px; height: 72px; margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(0,210,255,0.08), rgba(0,210,255,0.18));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--accent-dark); position: relative; z-index: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step-card:hover .step-icon {
    transform: scale(1.08);
    box-shadow: 0 0 25px rgba(0, 210, 255, 0.2);
}
.step-card h3 { margin-bottom: var(--space-sm); font-size: 1.2rem; }
.step-card p { font-size: 0.92rem; max-width: 240px; margin: 0 auto; }
.step-connector {
    width: 60px; height: 2px; background: linear-gradient(90deg, var(--accent), rgba(0,210,255,0.2));
    margin-top: 55px; flex-shrink: 0;
}

/* ---- ABOUT PREVIEW ENHANCEMENTS ---- */
.about-img-wrapper {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-lg);
}
.about-img-wrapper img { width: 100%; display: block; }
.about-img-badge {
    position: absolute; bottom: 20px; left: 20px;
    background: rgba(10, 37, 64, 0.9); backdrop-filter: blur(8px);
    padding: 12px 20px; border-radius: var(--radius-md);
    display: flex; flex-direction: column; align-items: center;
    border: 1px solid rgba(0, 210, 255, 0.2);
}
.about-img-badge-number {
    font-size: 1.8rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.about-img-badge-text {
    font-size: 0.75rem; color: rgba(255,255,255,0.8); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.05em;
}
.about-stats {
    display: flex; gap: var(--space-2xl); margin-bottom: var(--space-xl);
}
.about-stat {
    display: flex; flex-direction: column; gap: 2px;
}
.about-stat-value {
    font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.about-stat-label {
    font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}

/* ---- WHATSAPP ENHANCED ---- */
.whatsapp-float {
    position: fixed; bottom: 28px; right: 28px; z-index: 999;
    width: 58px; height: 58px; border-radius: 50%;
    background: #25D366; color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
    transition: transform 0.3s ease;
    animation: whatsappPulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); animation: none; }
.whatsapp-tooltip {
    position: absolute; right: 70px; white-space: nowrap;
    background: var(--bg-dark); color: white;
    padding: 8px 14px; border-radius: var(--radius-sm);
    font-size: 0.8rem; font-weight: 600;
    opacity: 0; transform: translateX(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    box-shadow: var(--shadow-md);
}
.whatsapp-tooltip::after {
    content: ''; position: absolute; right: -6px; top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--bg-dark);
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}
.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1; transform: translateX(0);
}
@keyframes whatsappPulse {
    0% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
    50% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35), 0 0 0 12px rgba(37, 211, 102, 0.1); }
    100% { box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35); }
}

/* ---- SCROLL TO TOP ---- */
.scroll-top {
    position: fixed; bottom: 28px; left: 28px; z-index: 999;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--bg-dark); color: white;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-md); cursor: pointer;
    opacity: 0; transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease;
    pointer-events: none;
}
.scroll-top.visible {
    opacity: 1; transform: translateY(0); pointer-events: all;
}
.scroll-top:hover { background: var(--primary-light); transform: translateY(-2px); }

/* ---- FOOTER SOCIALS ---- */
.footer-socials {
    display: flex; gap: var(--space-md); margin-top: var(--space-lg);
}
.footer-social-link {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s ease;
}
.footer-social-link:hover {
    background: var(--accent); color: var(--primary);
    transform: translateY(-2px);
}

/* ---- BUTTON SHIMMER EFFECT ---- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
    content: ''; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::after { left: 100%; }

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* ---- ABOUT HEADER ---- */
.about-header {
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--primary-light) 60%, rgba(0,210,255,0.15) 100%);
}

/* ---- ABOUT INTRO GRID ---- */
.about-intro-grid {
    display: grid; grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl); align-items: center;
}
.about-img-wrapper--large {
    position: relative; border-radius: var(--radius-lg);
    overflow: hidden; box-shadow: var(--shadow-xl);
}
.about-img-wrapper--large img { width: 100%; display: block; aspect-ratio: 3/4; object-fit: cover; }
.about-lead {
    font-size: 1.15rem; font-weight: 500; color: var(--text-primary);
    line-height: 1.8; margin-bottom: var(--space-lg);
}
.about-intro-stats {
    display: flex; gap: var(--space-2xl); margin-top: var(--space-xl);
    padding-top: var(--space-xl); border-top: 1px solid var(--border-subtle);
}
.about-intro-stat { display: flex; flex-direction: column; gap: 2px; }
.about-intro-stat-value {
    font-size: 1.8rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.about-intro-stat-label {
    font-size: 0.8rem; font-weight: 600; color: var(--text-muted);
}

/* ---- METHOD STEPS ---- */
.method-steps {
    max-width: 700px; margin: 0 auto;
    position: relative;
}
.method-steps::before {
    content: ''; position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--accent), rgba(0,210,255,0.1));
}
.method-step {
    display: flex; gap: var(--space-xl); margin-bottom: var(--space-2xl);
    position: relative;
}
.method-step:last-child { margin-bottom: 0; }
.method-step-left {
    display: flex; flex-direction: column; align-items: center;
    position: relative; z-index: 1; flex-shrink: 0;
}
.method-step-icon {
    width: 58px; height: 58px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #0090B3);
    color: white; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}
.method-step-number {
    font-size: 0.7rem; font-weight: 800; color: var(--text-muted);
    margin-top: var(--space-sm); letter-spacing: 0.05em;
}
.method-step-content { padding-top: 8px; }
.method-step-content h3 { margin-bottom: var(--space-sm); font-size: 1.2rem; }
.method-step-content p { font-size: 0.95rem; }

/* ---- CARDS WITH LISTS ---- */
.card--bordered { border: 1.5px solid var(--border-subtle); }
.card-list {
    margin-top: var(--space-lg); padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}
.card-list li {
    display: flex; align-items: center; gap: 8px;
    padding: 6px 0; font-size: 0.88rem; color: var(--text-secondary);
}
.card-list li svg { color: var(--accent-dark); flex-shrink: 0; }

/* ---- TIMELINE ---- */
.timeline {
    position: relative; max-width: 700px; margin: 0 auto;
    padding-left: 40px;
}
.timeline::before {
    content: ''; position: absolute; left: 12px; top: 0; bottom: 0;
    width: 2px; background: rgba(0, 210, 255, 0.2);
}
.timeline-item {
    position: relative; margin-bottom: var(--space-2xl);
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
    position: absolute; left: -34px; top: 6px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--accent); border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.2);
}
.timeline-content { padding-left: var(--space-md); }
.timeline-year {
    font-size: 0.8rem; font-weight: 700; color: var(--accent);
    text-transform: uppercase; letter-spacing: 0.1em;
    display: inline-block; margin-bottom: var(--space-sm);
    background: rgba(0, 210, 255, 0.1); padding: 4px 12px;
    border-radius: var(--radius-full);
}
.timeline-content h3 { color: white; font-size: 1.15rem; margin-bottom: var(--space-xs); }
.timeline-content p { color: rgba(255,255,255,0.7); font-size: 0.92rem; }

/* ---- CERTIFICATIONS GRID ---- */
.certs-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-xl);
}
.cert-card {
    text-align: center; padding: var(--space-2xl);
    border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg); background: var(--bg-card);
    transition: all 0.4s ease;
}
.cert-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.cert-icon {
    width: 80px; height: 80px; margin: 0 auto var(--space-lg);
    background: linear-gradient(135deg, rgba(0,210,255,0.08), rgba(0,210,255,0.18));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--accent-dark);
}
.cert-card h3 { margin-bottom: var(--space-sm); font-size: 1.15rem; }
.cert-card p { font-size: 0.9rem; }

/* ============================================
   SPOT PAGE STYLES
   ============================================ */

/* ---- SPOT HEADER ---- */
.spot-header {
    background: linear-gradient(160deg, var(--bg-dark) 0%, var(--primary-light) 60%, rgba(0,210,255,0.15) 100%);
}

/* ---- SPOT INTRO ---- */
.spot-intro-grid {
    display: grid; grid-template-columns: 1.1fr 1fr;
    gap: var(--space-4xl); align-items: center;
}
.spot-weather-badge {
    position: absolute; top: 20px; right: 20px;
    background: rgba(10, 37, 64, 0.9); backdrop-filter: blur(8px);
    padding: 10px 18px; border-radius: var(--radius-full);
    display: flex; align-items: center; gap: 8px;
    color: var(--accent); font-size: 0.85rem; font-weight: 700;
    border: 1px solid rgba(0, 210, 255, 0.2);
}
.spot-features {
    display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-lg);
    margin-top: var(--space-xl);
}
.spot-feature {
    display: flex; align-items: flex-start; gap: var(--space-md);
}
.spot-feature-icon {
    width: 44px; height: 44px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0,210,255,0.08), rgba(0,210,255,0.18));
    color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.spot-feature strong {
    display: block; color: var(--text-primary); font-size: 0.9rem; margin-bottom: 2px;
}
.spot-feature span {
    font-size: 0.8rem; color: var(--text-muted);
}

/* ---- WIND CALENDAR ---- */
.wind-months {
    max-width: 700px; margin: 0 auto;
}
.wind-bar-group {
    display: grid; grid-template-columns: 50px 1fr 60px;
    align-items: center; gap: var(--space-md);
    margin-bottom: var(--space-sm);
}
.wind-month-label {
    font-size: 0.85rem; font-weight: 700; color: var(--text-primary);
    text-align: right;
}
.wind-bar {
    height: 28px; background: rgba(0,210,255,0.06);
    border-radius: var(--radius-sm); position: relative;
    overflow: hidden;
}
.wind-bar-fill {
    position: absolute; inset: 0; width: var(--wind-width);
    background: linear-gradient(90deg, rgba(0,210,255,0.3), rgba(0,210,255,0.6));
    border-radius: var(--radius-sm);
    transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.highlight-month .wind-bar-fill {
    background: linear-gradient(90deg, rgba(0,210,255,0.5), var(--accent));
}
.peak-month .wind-bar-fill {
    background: linear-gradient(90deg, var(--accent), #0090B3);
}
.peak-month .wind-month-label { color: var(--accent-dark); }
.wind-bar-avg {
    font-size: 0.75rem; font-weight: 600; color: var(--text-muted);
}
.wind-legend {
    display: flex; justify-content: center; gap: var(--space-xl);
    margin-top: var(--space-xl);
}
.wind-legend-item {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; color: var(--text-muted);
}
.wind-legend-dot {
    width: 12px; height: 12px; border-radius: 3px;
}
.wind-legend-dot--normal { background: rgba(0,210,255,0.3); }
.wind-legend-dot--highlight { background: var(--accent); }
.wind-legend-dot--peak { background: #0090B3; }

/* ---- SPOT SEASONS ---- */
.spot-season-card {
    background: var(--bg-card); border: 1.5px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: var(--space-2xl);
    transition: all 0.4s ease; position: relative;
}
.spot-season-card:hover {
    transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.spot-season-card.featured {
    border: 2px solid var(--accent);
    box-shadow: var(--shadow-md), 0 0 0 1px rgba(0,210,255,0.1);
}
.spot-season-tag {
    position: absolute; top: -1px; right: 20px;
    background: linear-gradient(135deg, var(--accent), #0090B3);
    color: white; padding: 6px 14px; font-size: 0.7rem; font-weight: 700;
    text-transform: uppercase; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    letter-spacing: 0.5px;
}
.spot-season-badge {
    display: inline-block; font-size: 0.75rem; font-weight: 700;
    color: var(--accent-dark); background: rgba(0,210,255,0.08);
    padding: 4px 12px; border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}
.spot-season-card h3 { margin-bottom: var(--space-xs); }
.spot-season-temp {
    font-size: 1.4rem; font-weight: 800; color: var(--primary);
    margin-bottom: var(--space-md);
}
.spot-season-list {
    margin-top: var(--space-lg); padding-top: var(--space-lg);
    border-top: 1px solid var(--border-subtle);
}
.spot-season-list li {
    padding: 6px 0; font-size: 0.85rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 8px;
}
.spot-season-list li::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); flex-shrink: 0;
}

/* ---- SPOT INFO GRID ---- */
.spot-info-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-xl);
}
.spot-info-card {
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg); padding: var(--space-2xl);
    transition: all 0.4s ease;
}
.spot-info-card:hover {
    border-color: var(--border-accent);
    transform: translateY(-3px); box-shadow: var(--shadow-md);
}
.spot-info-icon {
    width: 56px; height: 56px; border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(0,210,255,0.08), rgba(0,210,255,0.18));
    color: var(--accent-dark); display: flex; align-items: center; justify-content: center;
    margin-bottom: var(--space-lg);
}
.spot-info-card h3 { margin-bottom: var(--space-sm); font-size: 1.15rem; }
.spot-info-card p { font-size: 0.92rem; }

/* ---- MAP ---- */
.spot-map-wrapper {
    border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-lg);
}

/* ---- MORE SPOTS ---- */
.spot-more-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22,1,0.36,1);
}
.spot-more-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.1);
    border-color: var(--border-accent);
}
.spot-more-body { padding: var(--space-xl); }
.spot-more-body h3 { margin-bottom: var(--space-sm); font-size: 1.15rem; }
.spot-more-body p { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: var(--space-lg); }
.spot-more-tag {
    display: inline-block; font-size: 0.78rem; font-weight: 600;
    color: var(--accent-dark); background: rgba(0,210,255,0.08);
    padding: 6px 14px; border-radius: 100px;
}
.spot-more-cta {
    text-align: center; margin-top: var(--space-2xl);
}
.spot-more-cta p { font-size: 1.05rem; color: var(--text-secondary); margin-bottom: var(--space-lg); }

/* ======== INSTAGRAM FEED ======== */
.insta-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: var(--space-sm);
}
.insta-item {
    position: relative; border-radius: var(--radius-md); overflow: hidden;
    aspect-ratio: 1; display: block;
}
.insta-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10,37,64,0.7) 100%);
    display: flex; align-items: flex-end; justify-content: center;
    padding-bottom: var(--space-md);
    opacity: 0; transition: opacity 0.35s ease;
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; margin-top: var(--space-2xl); }

@media (max-width: 1024px) {
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .insta-grid { grid-template-columns: repeat(2, 1fr); gap: var(--space-xs); }
    .insta-overlay { opacity: 1; background: linear-gradient(180deg, transparent 50%, rgba(10,37,64,0.5) 100%); }
}

/* ======== PROCESS STEPS ======== */
.process-grid {
    display: flex; align-items: center; justify-content: center;
    gap: var(--space-lg); padding: var(--space-2xl) 0 var(--space-3xl);
}
.process-step {
    text-align: center; max-width: 220px;
}
.process-num {
    width: 52px; height: 52px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white; font-weight: 800; font-size: 1.2rem;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-md); box-shadow: 0 4px 20px rgba(0,210,255,0.3);
}
.process-step h4 { margin-bottom: var(--space-xs); font-size: 1.05rem; }
.process-step p { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; }
.process-arrow { opacity: 0.4; margin-top: -20px; }
@media (max-width: 768px) {
    .process-grid { flex-direction: column; gap: var(--space-md); }
    .process-arrow { transform: rotate(90deg); margin-top: 0; }
}

/* ======== TRUST BADGES ======== */
.trust-badges {
    display: flex; flex-wrap: wrap; gap: var(--space-sm);
}
.trust-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(0,210,255,0.08); border: 1px solid rgba(0,210,255,0.15);
    border-radius: 100px; padding: 8px 16px; font-size: 0.85rem; font-weight: 600;
    color: var(--primary);
}

/* ======== CONTACT CARDS ======== */
.contact-cards {
    display: flex; flex-direction: column; gap: var(--space-md);
}
.contact-card {
    display: flex; align-items: center; gap: var(--space-lg);
    padding: var(--space-lg) var(--space-xl); border-radius: var(--radius-lg);
    background: var(--bg-card); border: 1px solid var(--border-subtle);
    text-decoration: none; color: inherit;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-2px); box-shadow: var(--shadow-md);
    border-color: rgba(0,210,255,0.3);
}
.contact-card-icon {
    width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.contact-card--wa .contact-card-icon { background: rgba(37,211,102,0.12); color: #25D366; }
.contact-card--email .contact-card-icon { background: rgba(0,210,255,0.1); color: var(--accent); }
.contact-card--location .contact-card-icon { background: rgba(255,184,0,0.1); color: #FFB800; }
.contact-card div { display: flex; flex-direction: column; }
.contact-card strong { font-size: 1rem; margin-bottom: 2px; }
.contact-card span { font-size: 0.9rem; color: var(--text-secondary); }
.contact-card small { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

@media (max-width: 640px) {
    .contact-cards { gap: var(--space-sm); }
    .contact-card { padding: var(--space-md); gap: var(--space-md); }
}

/* ============================================
   RENTAL CARDS
   ============================================ */
.rental-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: var(--shadow-sm);
    position: relative;
}
.rental-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent);
}
.rental-card.featured {
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, rgba(0,210,255,0.05), rgba(0,210,255,0.1));
    box-shadow: 0 8px 30px rgba(0,210,255,0.12);
}
.rental-icon {
    width: 64px; height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,210,255,0.1), rgba(0,210,255,0.2));
    color: var(--accent-dark);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-lg);
    transition: transform 0.3s ease;
}
.rental-card:hover .rental-icon { transform: scale(1.1); }
.rental-card h3 { font-size: 1.3rem; margin-bottom: var(--space-sm); }
.rental-desc {
    font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
    margin-bottom: var(--space-lg);
}
.rental-features {
    list-style: none; padding: 0; margin: 0 0 var(--space-lg);
    text-align: left;
}
.rental-features li {
    padding: 6px 0; font-size: 0.85rem; color: var(--text-secondary);
    display: flex; align-items: center; gap: 8px;
    border-bottom: 1px solid var(--border-subtle);
}
.rental-features li:last-child { border-bottom: none; }
.rental-features li svg { color: var(--accent-dark); flex-shrink: 0; }
.rental-price {
    font-size: 2.2rem; font-weight: 800; color: var(--primary);
    padding: var(--space-sm) var(--space-md);
    background: linear-gradient(135deg, rgba(0,210,255,0.06), rgba(0,210,255,0.12));
    border-radius: var(--radius-sm);
    margin-bottom: var(--space-sm);
    letter-spacing: -1px;
}
.rental-price .currency {
    font-size: 1.1rem; font-weight: 600;
    vertical-align: super;
    letter-spacing: 0;
}
.rental-note {
    display: flex; align-items: flex-start; gap: var(--space-sm);
    background: rgba(0,210,255,0.05);
    border: 1px solid rgba(0,210,255,0.15);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    margin-top: var(--space-2xl);
    font-size: 0.9rem; color: var(--text-secondary);
}
.rental-note svg { flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.rental-note a { color: var(--accent-dark); font-weight: 600; text-decoration: underline; }
.rental-note a:hover { color: var(--primary); }

/* ============================================
   COMPARISON CARDS
   ============================================ */
.compare-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}
.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
}
.compare-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}
.compare-card.featured {
    border: 2px solid var(--accent);
    box-shadow: 0 8px 32px rgba(0,210,255,0.12);
    position: relative;
}
.compare-card-badge {
    position: absolute;
    top: 0; right: 0;
    background: linear-gradient(135deg, var(--accent), #00b8d9);
    color: var(--primary);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 0 0 0 var(--radius-md);
}
.compare-card-header {
    padding: var(--space-2xl) var(--space-xl) var(--space-lg);
    text-align: center;
    background: linear-gradient(135deg, rgba(10,37,64,0.02), rgba(0,210,255,0.04));
    border-bottom: 1px solid var(--border-subtle);
}
.compare-card-icon {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0,210,255,0.1), rgba(0,210,255,0.18));
    color: var(--accent-dark);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto var(--space-md);
}
.compare-card h3 {
    font-size: 1.2rem;
    margin-bottom: var(--space-sm);
}
.compare-card-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
}
.compare-card-pack {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 2px;
}
.compare-card-list {
    list-style: none;
    padding: var(--space-xl);
    flex: 1;
}
.compare-card-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.compare-card-item:last-child { border-bottom: none; }
.compare-card-item.included { color: var(--text-primary); font-weight: 500; }
.compare-card-check {
    width: 20px; height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #00b8d9);
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    position: relative;
}
.compare-card-check::after {
    content: '';
    width: 6px; height: 3px;
    border-left: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(-45deg);
    margin-top: -1px;
}
.compare-card-dash {
    width: 20px; height: 2px;
    border-radius: 2px;
    background: var(--border-subtle);
    flex-shrink: 0;
}
.compare-card-footer {
    padding: 0 var(--space-xl) var(--space-xl);
    text-align: center;
}
.compare-card-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent-dark);
    background: rgba(0,210,255,0.08);
    padding: 6px 14px;
    border-radius: 100px;
}

/* ============================================
   PROGRESSION TRACK
   ============================================ */
.progression-track {
    max-width: 700px; margin: 0 auto;
    position: relative;
}
.progression-step {
    display: flex; align-items: flex-start; gap: var(--space-lg);
    padding: var(--space-lg) 0;
    position: relative;
}
.progression-num {
    width: 48px; height: 48px; min-width: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #0090B3);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; font-weight: 800;
    box-shadow: 0 4px 15px rgba(0,210,255,0.25);
    position: relative; z-index: 2;
}
.progression-content h4 {
    font-size: 1.1rem; margin-bottom: 4px;
    color: var(--text-primary);
}
.progression-content p {
    font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6;
}
.progression-connector {
    width: 2px; height: 24px;
    background: linear-gradient(180deg, var(--accent), rgba(0,210,255,0.2));
    margin-left: 23px;
}

/* ============================================
   RENTAL RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .compare-cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    .progression-step { gap: var(--space-md); }
    .progression-num { width: 40px; height: 40px; min-width: 40px; font-size: 0.95rem; }
    .progression-connector { margin-left: 19px; height: 16px; }
}
@media (max-width: 480px) {
    .compare-cards {
        grid-template-columns: 1fr;
    }
    .rental-card { padding: var(--space-xl); }
    .rental-icon { width: 52px; height: 52px; }
}

/* ============================================
   BREADCRUMBS
   ============================================ */
.breadcrumbs {
    padding: var(--space-md) 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: rgba(10,37,64,0.02);
    border-bottom: 1px solid var(--border-subtle);
}
.breadcrumbs .container {
    display: flex; align-items: center; gap: 6px;
}
.breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--accent-dark); }
.breadcrumbs-sep { opacity: 0.4; }
.breadcrumbs-current { color: var(--text-secondary); font-weight: 500; }

/* ============================================
   STAT CARDS
   ============================================ */
.stat-card {
    text-align: center;
    padding: var(--space-2xl) var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}
.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.stat-card .stat-number {
    display: block;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    letter-spacing: -2px;
}
.stat-card .stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-card .stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: var(--space-sm);
    font-weight: 500;
}

/* ============================================
   FAQ ACCORDION (Courses page)
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
}
.faq-item:hover {
    border-color: var(--border-accent);
}
.faq-question {
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    font-family: inherit;
}
.faq-question:hover { color: var(--accent-dark); }
.faq-chevron {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}
.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent-dark);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}
.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ============================================
   STAT RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .stat-number { font-size: 2.2rem; }
    .stat-card { padding: var(--space-xl) var(--space-md); }
    .faq-question { padding: var(--space-md) var(--space-lg); font-size: 0.95rem; }
    .faq-answer p { padding: 0 var(--space-lg) var(--space-md); }
}
@media (max-width: 480px) {
    .stat-number { font-size: 1.8rem; }
    .breadcrumbs { font-size: 0.75rem; }
}
