/* =============================================
   VALENCE EXPERIENCE — MAIN STYLESHEET
   Direction: Luxury editorial meets Drome nature
   Stack: Pure CSS3, Custom Properties, Mobile-first
   ============================================= */


/* =============================================
   1. CUSTOM PROPERTIES (DESIGN TOKENS)
   ============================================= */

:root {
    /* --- HERO GRADIENT (fond signature) --- */
    --hero-gradient: linear-gradient(145deg, #1A2E23 0%, #1E3329 15%, #243D30 30%, #1E3329 50%, #1A2E23 70%, #172A20 85%, #14241B 100%);

    /* --- SURFACES --- */
    --bg-page: #F7F5F0;
    --bg-white: #FFFFFF;
    --bg-hero: #1E3329;
    --bg-section-dark: #14241B;
    --bg-card-light: #FFFFFF;
    --bg-input: #F4F2ED;
    --bg-warm: #FAF8F3;
    --bg-gold-light: #FBF6EB;

    /* --- BORDURES --- */
    --border-light: rgba(30,51,41,0.06);
    --border-medium: rgba(30,51,41,0.10);
    --border-card: rgba(30,51,41,0.08);
    --border-input: rgba(30,51,41,0.12);
    --border-gold: rgba(196,163,86,0.25);

    /* --- TEXTE --- */
    --text-black: #1A2E23;
    --text-dark: #2D4A3A;
    --text-body: #4A6B58;
    --text-muted: #7D9A8B;
    --text-placeholder: #A8BFB2;
    --text-white: #FFFFFF;
    --text-gold: #C4A356;
    --text-gold-light: #D4B978;

    /* --- ACCENTS --- */
    --accent-gold: #C4A356;
    --accent-gold-hover: #B8963E;
    --accent-gold-light: #D4B978;
    --accent-gold-pale: #E8D9A8;
    --accent-green: #2D7A52;
    --accent-green-light: #4A9D6E;
    --accent-forest: #1E3329;
    --accent-cream: #F5EDD8;

    /* --- BADGE HERO --- */
    --badge-bg: rgba(255,255,255,0.12);
    --badge-border: rgba(196,163,86,0.3);
    --badge-dot: #C4A356;

    /* --- OMBRES --- */
    --shadow-xs: 0 1px 2px rgba(26,46,35,0.04);
    --shadow-sm: 0 2px 8px rgba(26,46,35,0.06);
    --shadow-md: 0 4px 16px rgba(26,46,35,0.08);
    --shadow-lg: 0 8px 32px rgba(26,46,35,0.10);
    --shadow-card: 0 2px 12px rgba(26,46,35,0.06);
    --shadow-product: 0 8px 40px rgba(26,46,35,0.12);
    --shadow-gold: 0 4px 20px rgba(196,163,86,0.15);

    /* --- BORDER RADIUS --- */
    --r-xs: 6px;
    --r-sm: 8px;
    --r-md: 12px;
    --r-lg: 16px;
    --r-xl: 20px;
    --r-2xl: 24px;
    --r-3xl: 32px;
    --r-full: 9999px;

    /* --- FONTS --- */
    --font-display: 'Fraunces', Georgia, serif;
    --font-body: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* --- TRANSITION --- */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}


/* =============================================
   2. 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);
    background: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    max-width: 100%;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul,
ol {
    list-style: none;
}

input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
}


/* =============================================
   3. TYPOGRAPHY
   ============================================= */

h1 {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(40px, 7vw, 72px);
    color: var(--text-black);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text-black);
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h3 {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 28px;
    color: var(--text-black);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.3;
}

h5 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.4;
}

p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    font-weight: 300;
}

.section-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent-gold);
    margin-bottom: 12px;
    width: 100%;
}

.section-label::before {
    content: '';
    width: 20px;
    height: 2px;
    background: var(--accent-gold);
    border-radius: 1px;
}

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

.desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}


/* =============================================
   4. LAYOUT
   ============================================= */

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

.section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 80px 24px;
}

.section {
    text-align: center;
}

.section > h2 {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(28px, 4vw, 44px);
    color: var(--text-black);
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
    text-align: center;
}

.section > .desc {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 620px;
    line-height: 1.7;
    margin-bottom: 48px;
    font-weight: 300;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* Grids/cards stay left-aligned */
.feature-grid,
.testimonial-grid,
.carousel-wrap,
.pricing-grid,
.pass-types-grid,
.steps-grid,
.partner-grid,
.contact-grid,
.faq-list {
    text-align: left;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.divider {
    max-width: 1100px;
    margin: 0 auto;
    height: 1px;
    background: var(--border-light);
}


/* =============================================
   5. NAVBAR
   ============================================= */

.nav-fixed {
    position: fixed;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 48px);
    max-width: 1100px;
    z-index: 100;
    background: rgba(247,245,240,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(30,51,41,0.06);
    border-radius: 16px;
    padding: 0 24px;
    box-shadow: 0 4px 20px rgba(26,46,35,0.08);
    transition: all 0.3s ease;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
    gap: 8px;
}

.nav-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #4A6B58;
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 9999px;
    transition: all 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: #C4A356;
    background: rgba(196,163,86,0.08);
}

.nav-cta {
    padding: 8px 20px;
    background: #C4A356;
    color: #1E3329;
    border-radius: 9999px;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.nav-cta:hover {
    background: #B8963E;
    box-shadow: 0 4px 16px rgba(196,163,86,0.3);
}

/* -- Burger menu -- */
.nav-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 110;
}

.nav-burger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-black);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
    transform-origin: center;
}

/* Burger animation when open */
.nav-burger[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-burger[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.nav-burger[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Responsive mobile */
@media (max-width: 768px) {
    .nav-fixed {
        top: 8px;
        width: calc(100% - 24px);
        padding: 0 16px;
        border-radius: 12px;
    }
    .nav-links {
        display: none;
    }
    .nav-links.nav-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(247,245,240,0.98);
        backdrop-filter: blur(20px);
        border-radius: 0 0 12px 12px;
        padding: 16px;
        border-top: 1px solid rgba(30,51,41,0.06);
        box-shadow: 0 8px 24px rgba(26,46,35,0.1);
    }
    .nav-burger { display: flex; }
    .nav-cta { display: none; }
}
@media (min-width: 769px) {
    .nav-burger { display: none; }
}

/* =============================================
   6. HERO
   ============================================= */

.hero {
    background: var(--hero-gradient);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 24px 60px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(196,163,86,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 40%, rgba(196,163,86,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(45,122,82,0.1) 0%, transparent 50%),
        linear-gradient(160deg, rgba(30,51,41,0.3) 0%, rgba(20,36,27,0.4) 50%, rgba(26,46,35,0.3) 100%);
    pointer-events: none;
    animation: hero-shift 12s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(196,163,86,0.06) 0%, transparent 40%),
        radial-gradient(ellipse at 70% 30%, rgba(212,185,120,0.04) 0%, transparent 40%);
    pointer-events: none;
    animation: gold-shimmer 8s ease-in-out infinite alternate;
}

.hero-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--r-full);
    background: var(--badge-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--badge-border);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-gold-light);
    margin-bottom: 32px;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--badge-dot);
    animation: pulse-dot 2s ease-in-out infinite;
}

.hero h1 {
    position: relative;
    z-index: 1;
    color: var(--text-white);
    margin-bottom: 20px;
    max-width: 750px;
}

.hero h1 .gold {
    color: var(--accent-gold);
}

.hero p {
    position: relative;
    z-index: 1;
    font-size: 16px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 32px;
    font-weight: 300;
    max-width: 560px;
}

.hero-sub {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.04em;
}

.hero-ctas {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}


/* =============================================
   7. BUTTONS
   ============================================= */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    text-decoration: none;
    border-radius: var(--r-full);
}

.btn-primary {
    padding: 13px 30px;
    background: var(--accent-gold);
    color: var(--accent-forest);
    border-radius: var(--r-full);
    box-shadow: 0 2px 12px rgba(196,163,86,0.3);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--accent-gold-hover);
    box-shadow: 0 4px 20px rgba(196,163,86,0.4);
    transform: translateY(-2px);
}

.btn-outline {
    padding: 12px 28px;
    background: transparent;
    color: rgba(255,255,255,0.8);
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: var(--r-full);
}

.btn-outline:hover {
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.06);
    color: white;
    transform: translateY(-2px);
}

.btn-outline-dark {
    padding: 12px 28px;
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border-medium);
    border-radius: var(--r-full);
}

.btn-outline-dark:hover {
    border-color: var(--text-dark);
    background: rgba(30,51,41,0.03);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn-dark {
    padding: 12px 28px;
    background: var(--accent-forest);
    color: var(--accent-gold);
    border-radius: var(--r-full);
    font-weight: 700;
}

.btn-dark:hover {
    background: #172A20;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    padding: 10px 24px;
    background: transparent;
    color: var(--accent-gold-light);
    border: 1.5px solid rgba(196,163,86,0.3);
    border-radius: var(--r-full);
}

.btn-outline-light:hover {
    border-color: rgba(196,163,86,0.6);
    background: rgba(196,163,86,0.08);
    transform: translateY(-2px);
}


/* =============================================
   8. FEATURE CARDS
   ============================================= */

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 28px;
    transition: all var(--transition-base);
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: rgba(196,163,86,0.2);
}

.feature-card .f-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: var(--bg-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
}

.feature-card h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
}

.feature-card code {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--accent-gold);
    background: rgba(196,163,86,0.08);
    padding: 3px 8px;
    border-radius: var(--r-xs);
}


/* =============================================
   9. TESTIMONIAL CARDS
   ============================================= */

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 24px;
    transition: all var(--transition-base);
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-forest), var(--accent-green));
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-company {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    margin-left: -8px;
    flex-shrink: 0;
}

.testimonial-info .t-name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
}

.testimonial-info .t-role {
    font-size: 10px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
    color: var(--accent-gold);
    font-size: 14px;
}


/* =============================================
   10. SECTION DARK
   ============================================= */

.section-dark {
    background: var(--bg-section-dark);
    border-radius: var(--r-2xl);
    padding: 48px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 30%, rgba(196,163,86,0.05) 0%, transparent 60%);
    pointer-events: none;
}

.section-dark h2,
.section-dark h3 {
    position: relative;
    color: var(--text-white);
}

.section-dark h3 .gold,
.section-dark h2 .gold {
    color: var(--accent-gold);
}

.section-dark p {
    position: relative;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 300;
}

.cert-badges {
    position: relative;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 24px;
    margin-top: 24px;
}

.cert-badge {
    width: 56px;
    height: 56px;
    border-radius: var(--r-md);
    background: rgba(196,163,86,0.08);
    border: 1px solid rgba(196,163,86,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: var(--accent-gold-light);
    font-weight: 600;
    transition: all var(--transition-base);
}

.cert-badge:hover {
    background: rgba(196,163,86,0.15);
    border-color: rgba(196,163,86,0.3);
    transform: translateY(-2px);
}


/* =============================================
   11. PRICING CARDS
   ============================================= */

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card--featured {
    border: 2px solid var(--accent-gold);
    box-shadow: var(--shadow-gold);
    position: relative;
    transform: scale(1.04);
    z-index: 2;
}

.pricing-card--featured:hover {
    transform: scale(1.04) translateY(-4px);
}

.pricing-card--featured .pricing-header {
    background: var(--accent-forest);
    margin: -32px -28px 24px;
    padding: 32px 28px 24px;
    border-radius: var(--r-xl) var(--r-xl) 0 0;
}

.pricing-card--featured .pricing-header h3 {
    color: var(--text-white);
}

.pricing-card--featured .pricing-header .pricing-subtitle {
    color: rgba(255,255,255,0.6);
}

.pricing-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.pricing-card .pricing-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
    font-weight: 300;
}

/* Student ribbon */
.pricing-ribbon {
    position: absolute;
    bottom: 24px;
    right: -36px;
    background: #E53935;
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 6px 40px;
    transform: rotate(-45deg);
    box-shadow: 0 2px 8px rgba(229,57,53,0.3);
    z-index: 3;
}

/* Pricing per-person note */
.pricing-per-person {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 400;
}

/* Student discount note */
.pricing-student {
    font-size: 13px;
    font-weight: 600;
    color: #E53935;
    margin-top: 8px;
}

/* Best value badge */
.pricing-value-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--r-full);
    background: rgba(196,163,86,0.12);
    color: var(--accent-gold);
    border: 1px solid rgba(196,163,86,0.25);
}

.pricing-features li strong {
    color: var(--text-dark);
    font-weight: 600;
}

.pricing-price {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 44px;
    color: var(--text-black);
    margin-bottom: 4px;
    line-height: 1.1;
}

.pricing-price .currency {
    font-size: 24px;
    vertical-align: super;
    margin-right: 2px;
}

.pricing-price .period {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.pricing-features {
    list-style: none;
    text-align: left;
    margin: 24px 0;
    padding: 0;
}

.pricing-features li {
    padding: 8px 0;
    font-size: 13px;
    color: var(--text-body);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-gold);
    flex-shrink: 0;
}


/* =============================================
   12. FAQ ACCORDION
   ============================================= */

.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
    border-top: 1px solid var(--border-light);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.2s var(--ease-out);
    gap: 16px;
}

.faq-question:hover {
    color: var(--accent-gold);
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--bg-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--accent-gold);
    transition: transform 0.3s var(--ease-out);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease;
}

.faq-answer p,
.faq-answer-inner {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    font-weight: 300;
}


/* =============================================
   13. PRODUCT CARD (MOCKUP APP)
   ============================================= */

.product-card {
    background: var(--bg-white);
    border-radius: var(--r-2xl);
    box-shadow: var(--shadow-product);
    overflow: hidden;
    max-width: 400px;
    width: 100%;
}

.product-card-tab {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-light);
    overflow-x: auto;
}

.product-card-tab .app-tab {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: var(--r-sm);
    font-size: 12px;
    font-weight: 500;
    color: var(--text-body);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
}

.product-card-tab .app-tab:hover {
    background: rgba(196,163,86,0.06);
}

.product-card-tab .app-tab .tab-icon {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
}

.product-card-content {
    padding: 24px;
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.chat-input-demo {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 16px;
    background: var(--bg-input);
    border-radius: var(--r-full);
    border: 1px solid var(--border-light);
}

.chat-input-demo .icon-left {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-forest);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent-gold);
    flex-shrink: 0;
}

.chat-input-demo .input-text {
    flex: 1;
    font-size: 13px;
    color: var(--text-placeholder);
    font-weight: 300;
}

.chat-input-demo .icon-right {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--accent-forest);
    flex-shrink: 0;
}


/* =============================================
   14. FOOTER
   ============================================= */

.footer {
    background: #14241B;
    padding: 64px 24px 32px;
    color: rgba(255,255,255,0.5);
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-brand {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 17px;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.footer-brand .brand-icon {
    width: 28px;
    height: 28px;
    background: var(--accent-gold);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-forest);
    font-size: 14px;
    font-weight: 700;
}

.footer-col p {
    font-size: 13px;
    color: rgba(255,255,255,0.45);
    line-height: 1.7;
    font-weight: 300;
    max-width: 280px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
    font-weight: 400;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: rgba(255,255,255,0.35);
    font-weight: 300;
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
}

.footer-bottom a:hover {
    color: var(--accent-gold);
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s var(--ease-out);
}

.footer-social a:hover {
    background: rgba(196,163,86,0.15);
    border-color: rgba(196,163,86,0.3);
    color: var(--accent-gold);
}


/* =============================================
   15. CONTACT FORM
   ============================================= */

.form-group {
    margin-bottom: 20px;
    position: relative;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1.5px solid var(--border-input);
    border-radius: var(--r-md);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s var(--ease-out);
    outline: none;
}

.form-input::placeholder {
    color: var(--text-placeholder);
    font-weight: 300;
}

.form-input:focus {
    border-color: var(--accent-gold);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(196,163,86,0.1);
}

.form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1.5px solid var(--border-input);
    border-radius: var(--r-md);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s var(--ease-out);
    outline: none;
    resize: vertical;
    min-height: 120px;
    font-family: var(--font-body);
}

.form-textarea::placeholder {
    color: var(--text-placeholder);
    font-weight: 300;
}

.form-textarea:focus {
    border-color: var(--accent-gold);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(196,163,86,0.1);
}

.form-select {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-input);
    border: 1.5px solid var(--border-input);
    border-radius: var(--r-md);
    font-size: 14px;
    color: var(--text-dark);
    transition: all 0.2s var(--ease-out);
    outline: none;
    appearance: none;
    cursor: pointer;
}

.form-select:focus {
    border-color: var(--accent-gold);
    background: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(196,163,86,0.1);
}

.form-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
    font-weight: 300;
}

.form-error {
    display: none;
    font-size: 12px;
    color: #D32F2F;
    margin-top: 4px;
}

.form-group--error .form-input {
    border-color: #D32F2F;
}

.form-group--error .form-error {
    display: block;
}


/* =============================================
   16. CAROUSEL
   ============================================= */

.carousel-wrap {
    position: relative;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 8px 0 16px;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 280px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.carousel-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.carousel-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.carousel-card-body {
    padding: 16px;
}

.carousel-card-body h5 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.carousel-card-body p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    font-weight: 300;
}

.carousel-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    color: var(--text-dark);
    transition: all 0.2s var(--ease-out);
}

.carousel-btn:hover {
    background: var(--accent-gold);
    color: var(--accent-forest);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-gold);
}

.carousel-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-medium);
    border: none;
    cursor: pointer;
    transition: all 0.2s var(--ease-out);
    padding: 0;
}

.carousel-dot.active {
    background: var(--accent-gold);
    width: 24px;
    border-radius: 4px;
}


/* =============================================
   17. BREADCRUMBS
   ============================================= */

.breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-muted);
    padding: 16px 0;
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s var(--ease-out);
    font-weight: 400;
}

.breadcrumb a:hover {
    color: var(--accent-gold);
}

.breadcrumb .separator {
    margin: 0 8px;
    color: var(--text-placeholder);
    font-size: 10px;
}

.breadcrumb .separator::after {
    content: '>';
}

.breadcrumb .current {
    color: var(--text-dark);
    font-weight: 600;
}


/* =============================================
   18. BADGES & TAGS
   ============================================= */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: var(--r-full);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    background: rgba(30,51,41,0.06);
    color: var(--text-body);
}

.badge-gold {
    background: rgba(196,163,86,0.1);
    color: var(--accent-gold);
    border: 1px solid rgba(196,163,86,0.2);
}

.badge-green {
    background: rgba(45,122,82,0.08);
    color: var(--accent-green);
}

.badge-dark {
    background: var(--accent-forest);
    color: var(--accent-gold-light);
}

.badge-pulse {
    position: relative;
}

.badge-pulse::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    animation: pulse-dot 2s ease-in-out infinite;
}

.tag {
    display: inline-block;
    padding: 3px 10px;
    border-radius: var(--r-full);
    font-size: 10px;
    font-weight: 700;
    color: var(--accent-gold);
    background: rgba(196,163,86,0.1);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}


/* =============================================
   19. STATS COUNTER
   ============================================= */

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-item {
    padding: 24px 16px;
}

.stat-number {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 500;
    font-size: 44px;
    color: var(--text-black);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-number .gold {
    color: var(--accent-gold);
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

/* Stats on dark background */
.section-dark .stat-number {
    color: var(--text-white);
}

.section-dark .stat-label {
    color: rgba(255,255,255,0.5);
}


/* =============================================
   20. ANIMATIONS
   ============================================= */

/* Hero background breathing */
@keyframes hero-shift {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 1;
        transform: scale(1.05);
    }
}

/* Gold shimmer overlay */
@keyframes gold-shimmer {
    0% {
        opacity: 0.3;
    }
    100% {
        opacity: 1;
    }
}

/* Badge pulse dot */
@keyframes pulse-dot {
    0%, 100% {
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(196,163,86,0.4);
    }
    50% {
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(196,163,86,0);
    }
}

/* Fade-in-up (for scroll reveal) */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Fade-in only */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Reveal system */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for children */
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* Stagger children within a grid or container */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.10s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.20s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.30s; }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms;
        animation-iteration-count: 1;
        transition-duration: 0.01ms;
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}


/* =============================================
   21. RESPONSIVE
   ============================================= */

/* --- Tablet: 768px+ --- */
@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero h1 {
        font-size: clamp(40px, 7vw, 72px);
    }

    .section {
        padding: 100px 32px;
    }

    .carousel-card {
        width: 320px;
    }
}

/* --- Desktop: 1024px+ --- */
@media (min-width: 1024px) {
    /* Grids */
    .grid-3 {
        grid-template-columns: repeat(3, 1fr);
    }

    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 48px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }

    .section-dark {
        padding: 64px 48px;
    }

    .carousel-card {
        width: 340px;
    }
}

/* --- Large Desktop: 1280px+ --- */
@media (min-width: 1280px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }

    .section {
        padding: 120px 24px;
    }

    .hero {
        padding: 120px 40px 80px;
    }

    .container {
        padding: 0 32px;
    }

    .feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Small mobile: <480px --- */
@media (max-width: 479px) {
    .hero {
        padding: 80px 16px 48px;
    }

    .hero h1 {
        font-size: clamp(32px, 9vw, 48px);
    }

    .hero p {
        font-size: 14px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    .section {
        padding: 48px 16px;
    }

    .section-dark {
        padding: 32px 16px;
        border-radius: var(--r-lg);
    }

    .pricing-card {
        padding: 24px 20px;
    }

    .pricing-price {
        font-size: 36px;
    }

    .stat-number {
        font-size: 36px;
    }

    .footer {
        padding: 48px 16px 24px;
    }

    .nav-fixed {
        top: 8px;
        width: calc(100% - 24px);
        padding: 0 12px;
        border-radius: 12px;
    }
}


/* =============================================
   22. UTILITIES
   ============================================= */

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-gold {
    color: var(--accent-gold);
}

.text-white {
    color: var(--text-white);
}

.text-muted {
    color: var(--text-muted);
}

.text-dark {
    color: var(--text-dark);
}

/* Spacing utilities */
.mt-sm { margin-top: 16px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 48px; }
.mt-xl { margin-top: 80px; }

.mb-sm { margin-bottom: 16px; }
.mb-md { margin-bottom: 32px; }
.mb-lg { margin-bottom: 48px; }
.mb-xl { margin-bottom: 80px; }

.pt-sm { padding-top: 16px; }
.pt-md { padding-top: 32px; }
.pt-lg { padding-top: 48px; }

.pb-sm { padding-bottom: 16px; }
.pb-md { padding-bottom: 32px; }
.pb-lg { padding-bottom: 48px; }

/* Visibility */
.hidden-mobile {
    display: none;
}

.hidden-desktop {
    display: block;
}

@media (min-width: 1024px) {
    .hidden-mobile {
        display: block;
    }

    .hidden-desktop {
        display: none;
    }
}

/* Flex utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }

/* Screen reader only */
.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;
}

/* Max-width constraint for text content */
.max-w-prose {
    max-width: 620px;
}

/* Background utilities */
.bg-warm {
    background: var(--bg-warm);
}

.bg-white {
    background: var(--bg-white);
}

.bg-gold-light {
    background: var(--bg-gold-light);
}


/* =============================================
   23. CONTACT PAGE LAYOUT
   ============================================= */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contact-form-col { }

.contact-info-col { }

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--r-md);
    background: var(--bg-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.contact-info-item a,
.contact-info-item p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.contact-info-item a:hover {
    color: var(--accent-gold);
}


/* =============================================
   24. FORM EXTRAS
   ============================================= */

.form-optional {
    font-weight: 400;
    color: var(--text-muted);
    font-size: 11px;
}

.form-char-count {
    display: block;
    text-align: right;
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-submit {
    width: 100%;
    margin-top: 8px;
}

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(45,122,82,0.08);
    border: 1px solid rgba(45,122,82,0.15);
    border-radius: var(--r-md);
    margin-top: 16px;
}

.form-success p {
    font-size: 14px;
    color: var(--accent-green, #2D7A52);
}


/* =============================================
   25. PARTNER PAGE
   ============================================= */

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.partner-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-lg);
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.partner-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.partner-card-image {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partner-card-logo {
    background: var(--bg-cream, #F7F5F0);
    padding: 16px;
}

.partner-card-logo img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Skeleton loading */
.skeleton-card {
    pointer-events: none;
}

.skeleton-img {
    background: linear-gradient(90deg, #e8e6e1 25%, #f0ede8 50%, #e8e6e1 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-text {
    background: linear-gradient(90deg, #e8e6e1 25%, #f0ede8 50%, #e8e6e1 75%);
    background-size: 200% 100%;
    animation: skeleton-shimmer 1.5s ease-in-out infinite;
    border-radius: 4px;
}

@keyframes skeleton-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.partners-empty {
    text-align: center;
    color: var(--text-muted, #6B7280);
    padding: 3rem 1rem;
    font-size: 1rem;
}

.partner-card h3 {
    font-family: var(--font-body);
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 16px 16px 4px;
}

.partner-type {
    font-size: 12px;
    color: var(--text-muted);
    padding: 0 16px;
}

.partner-location {
    font-size: 11px;
    color: var(--text-placeholder);
    padding: 4px 16px 16px;
}


/* =============================================
   26. PASS TYPES
   ============================================= */

.pass-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.pass-type-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.pass-type-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.pass-type-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--r-md);
    background: var(--bg-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.pass-durations {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
}

.duration-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--accent-gold);
    background: rgba(196,163,86,0.08);
    padding: 4px 12px;
    border-radius: var(--r-full);
    border: 1px solid rgba(196,163,86,0.15);
}


/* =============================================
   27. STEPS
   ============================================= */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.step-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--r-xl);
    padding: 32px 24px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.step-number {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: 36px;
    color: var(--accent-gold);
    margin-bottom: 12px;
}


/* =============================================
   28. PRICING EXTRAS
   ============================================= */

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gold);
    color: var(--accent-forest);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: var(--r-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 1;
}

.pricing-header {
    margin-bottom: 24px;
}

.pricing-subtitle {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}

.price-amount {
    font-family: var(--font-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(36px, 5vw, 48px);
    color: var(--accent-gold);
}

.price-prefix {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

.price-suffix {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}


/* =============================================
   29. CTA SECTIONS
   ============================================= */

.section-cta {
    text-align: center;
}

.cta-content {
    max-width: 620px;
    margin: 0 auto;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}


/* =============================================
   30. SECTION DARK EXTRAS
   ============================================= */

.section-dark-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.5);
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.7;
    font-weight: 300;
}

.section-dark-mini {
    padding: 40px 32px;
    text-align: center;
}


/* =============================================
   31. PAGE HEADER
   ============================================= */

.page-header {
    padding-top: 120px;
}


/* =============================================
   32. FOOTER EXTRAS
   ============================================= */

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--accent-gold);
    margin-top: 8px;
}

.footer-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-top: 12px;
}

.footer-legal {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-top: 12px;
}

.footer-legal a {
    font-size: 12px;
    color: rgba(255,255,255,0.3);
}

.footer-legal a:hover {
    color: rgba(255,255,255,0.6);
}


/* =============================================
   33. TESTIMONIAL GRID
   ============================================= */

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.testimonial-avatars {
    display: flex;
}


/* =============================================
   34. PRODUCT CARD WRAPPER
   ============================================= */

.product-card-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 32px;
}


/* =============================================
   35. CAROUSEL CARD IMAGE
   ============================================= */

.carousel-card-image {
    height: 160px;
    border-radius: var(--r-md) var(--r-md) 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.carousel-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease-out);
}

.carousel-card:hover .carousel-card-image img {
    transform: scale(1.05);
}

.carousel-card-image .carousel-card-icon {
    position: absolute;
    z-index: 1;
    opacity: 0.7;
}


/* =============================================
   36. MISSION CONTENT (A PROPOS PAGE)
   ============================================= */

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.mission-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 16px;
}

.mission-illustration {
    height: 300px;
    border-radius: var(--r-2xl);
    position: relative;
    overflow: hidden;
}


/* =============================================
   37. RESPONSIVE — NEW GRIDS (max-width: 768px)
   ============================================= */

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .mission-content {
        grid-template-columns: 1fr;
    }

    .pass-types-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}


/* =============================================
   39. HERO MOCKUP
   ============================================= */

.hero-mockup {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 800px;
    margin-top: 48px;
    margin-bottom: -80px;
}

.mockup-window {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26,46,35,0.25), 0 0 0 1px rgba(255,255,255,0.1);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    padding: 14px 18px;
    background: rgba(247,245,240,0.95);
    border-bottom: 1px solid var(--border-light);
}

.mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.mockup-dots span:nth-child(1) { background: #FF5F57; }
.mockup-dots span:nth-child(2) { background: #FEBC2E; }
.mockup-dots span:nth-child(3) { background: #28C840; }

.mockup-content {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.mockup-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mockup-fallback {
    background: linear-gradient(145deg, #1E3329 0%, #243D30 40%, #C4A356 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mockup-fallback::after {
    content: 'App Valence Expérience';
    font-family: var(--font-display);
    font-style: italic;
    font-size: clamp(18px, 3vw, 28px);
    color: rgba(255,255,255,0.5);
    font-weight: 500;
}

@media (max-width: 479px) {
    .hero-mockup {
        margin-top: 32px;
        margin-bottom: -40px;
    }

    .mockup-window {
        border-radius: 14px;
    }

    .mockup-dots {
        padding: 10px 14px;
    }

    .mockup-dots span {
        width: 8px;
        height: 8px;
    }
}


/* =============================================
   40. LEGAL PAGES
   ============================================= */

.legal-content {
    max-width: 800px;
}

.legal-content h2 {
    font-size: clamp(22px, 3vw, 28px);
    margin-top: 48px;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-light);
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
    margin: 12px 0;
    padding-left: 24px;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 6px;
}

.legal-content a {
    color: var(--accent-gold);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.legal-content a:hover {
    color: var(--accent-gold-hover);
}

.legal-content strong {
    color: var(--text-dark);
    font-weight: 600;
}


/* =============================================
   41. NAV LOGO (overrides removed — see section 5)
   ============================================= */

.footer-logo {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    object-fit: cover;
}


/* =============================================
   38. PRINT STYLES
   ============================================= */

@media print {
    /* Hide non-essential elements */
    .nav-fixed,
    .nav-links-mobile,
    .footer,
    .hero::before,
    .hero::after,
    .carousel-nav,
    .carousel-btn,
    .carousel-dots,
    .btn,
    .hero-ctas,
    .hero-badge {
        display: none;
    }

    /* Reset backgrounds */
    body {
        background: white;
        color: black;
        font-size: 12pt;
        line-height: 1.5;
    }

    .hero {
        background: white;
        min-height: auto;
        padding: 24px 0;
    }

    .hero h1 {
        color: black;
        font-size: 28pt;
    }

    .hero h1 .gold {
        color: #8B7335;
    }

    .hero p {
        color: #333;
    }

    .section {
        padding: 24px 0;
    }

    .section-dark {
        background: #f0f0f0;
        color: black;
        border-radius: 0;
    }

    .section-dark h2,
    .section-dark h3 {
        color: black;
    }

    .section-dark p {
        color: #333;
    }

    h1, h2, h3, h4, h5 {
        color: black;
        page-break-after: avoid;
    }

    p {
        color: #333;
    }

    a {
        color: black;
        text-decoration: underline;
    }

    /* Disable transitions/animations */
    * {
        animation: none;
        transition: none;
    }

    /* Cards without shadows */
    .feature-card,
    .testimonial-card,
    .pricing-card,
    .product-card {
        box-shadow: none;
        border: 1px solid #ccc;
        break-inside: avoid;
    }

    /* Show URLs after links */
    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 9pt;
        color: #666;
    }

    img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    .footer-grid,
    .footer-bottom {
        display: none;
    }
}
