/* ========================================
   PAGES-UNIFIED.CSS - Design unifié FLARE V15
   Matches sport.php / homepage design system
   White backgrounds, yellow badges, modern cards
   ======================================== */

:root {
    --black: #0a0a0a;
    --white: #fff;
    --green: var(--color-accent);
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d8;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ========================================
   HERO - SPLIT LAYOUT (with image)
   Matches sport.php hero exactly
   ======================================== */

.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 3% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    align-items: center;
    gap: 60px;
}

.hero-text {
    padding: 0px 0 40px;
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge,
.hero-sport-eyebrow,
.hero-faq-eyebrow,
.hero-livraison-eyebrow,
.hero-contact-eyebrow,
.hero-budget-eyebrow,
.hero-prix-eyebrow,
.hero-retours-eyebrow,
.hero-revendeur-eyebrow,
.hero-page-eyebrow,
.hero-eyebrow,
.hero-eyebrow-v2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 28px;
    color: var(--black);
}

.hero-title {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--black);
}

.hero-title .highlight {
    color: var(--black);
    background: var(--green);
    padding: 0 16px;
    display: inline-block;
}

.hero-desc {
    font-size: 18px;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 520px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.hero-stat-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
}

.hero-stat-num span {
    color: var(--green);
}

.hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    animation: fadeInRight 1s ease-out;
    height: 600px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.hero-image:hover img {
    transform: scale(1.03);
}

/* ========================================
   HERO - CENTERED VARIANT (no image)
   For product/info static pages
   White bg, centered text, same visual language
   ======================================== */

.hero-page,
.hero-sport,
.hero-livraison,
.hero-budget,
.hero-retours,
.hero-revendeur,
.hero-prix,
.hero-premium,
.hero-faq,
.hero-contact,
.hero-innovation-v2 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 3% 80px;
    text-align: center;
    position: relative;
    background: var(--white);
    color: var(--black);
    min-height: auto;
    display: block;
    overflow: visible;
}

/* Remove old dark bg pseudo-elements */
.hero-sport::before, .hero-sport::after,
.hero-faq::before, .hero-faq::after,
.hero-livraison::before, .hero-livraison::after,
.hero-budget::before, .hero-budget::after,
.hero-prix::before, .hero-prix::after,
.hero-retours::before, .hero-retours::after,
.hero-revendeur::before, .hero-revendeur::after,
.hero-page::before, .hero-page::after,
.hero-premium::before, .hero-premium::after,
.hero-contact::before, .hero-contact::after,
.hero-innovation-v2::before, .hero-innovation-v2::after {
    display: none;
}

/* Content wrapper */
.hero-sport-content,
.hero-faq-content,
.hero-livraison-content,
.hero-contact-content,
.hero-budget-content,
.hero-prix-content,
.hero-retours-content,
.hero-revendeur-content,
.hero-page-content,
.hero-innovation-content-v2,
.hero-premium-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

/* Title - centered variant */
.hero-sport-title,
.hero-faq-title,
.hero-livraison-title,
.hero-contact-title,
.hero-budget-title,
.hero-prix-title,
.hero-retours-title,
.hero-revendeur-title,
.hero-page-title,
.hero-title-v2 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--black);
    text-transform: uppercase;
}

/* Subtitle - centered variant */
.hero-sport-subtitle,
.hero-faq-subtitle,
.hero-livraison-subtitle,
.hero-contact-subtitle,
.hero-budget-subtitle,
.hero-budget-desc,
.hero-prix-subtitle,
.hero-prix-desc,
.hero-retours-subtitle,
.hero-revendeur-subtitle,
.hero-page-subtitle,
.hero-subtitle-v2 {
    font-size: 18px;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 0 !important;
    line-height: 1.8;
    font-weight: 400;
}

/* CTA Buttons */
.hero-sport-cta,
.hero-faq-cta,
.hero-livraison-cta,
.hero-contact-cta,
.hero-budget-cta,
.hero-prix-cta,
.hero-retours-cta,
.hero-revendeur-cta,
.hero-page-cta,
.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 36px;
}

/* Hide old layout elements */
.hero-sport-left, .hero-sport-right,
.hero-faq-left, .hero-faq-right,
.hero-livraison-left, .hero-livraison-right,
.hero-contact-left, .hero-contact-right,
.hero-budget-left, .hero-budget-right,
.hero-prix-left, .hero-prix-right,
.hero-retours-left, .hero-retours-right,
.hero-revendeur-left, .hero-revendeur-right,
.hero-page-left, .hero-page-right,
.hero-sport-features, .hero-faq-features,
.hero-livraison-features, .hero-contact-features,
.hero-budget-features, .hero-prix-features,
.hero-retours-features, .hero-revendeur-features,
.hero-page-features,
.hero-sport-background, .hero-sport-overlay,
.hero-contact-background, .hero-faq-background,
.hero-livraison-background, .hero-budget-overlay,
.hero-budget-image, .hero-prix-overlay,
.hero-prix-image, .hero-innovation-bg,
.breadcrumb, .cta-final-overlay {
    display: none !important;
}

/* Contact badges */
.hero-contact-badges {
    display: flex !important;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 48px;
}

.contact-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.contact-badge:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.contact-badge svg {
    width: 20px;
    height: 20px;
    color: var(--green);
    stroke: var(--green);
    fill: var(--green);
}

.contact-badge span {
    font-size: 14px;
    font-weight: 600;
    color: var(--black);
}

/* ========================================
   BUTTONS - Matches sport.php
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    text-decoration: none;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* Hero buttons - mapped to new style */
.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--green);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-hero-primary svg {
    width: 18px;
    height: 18px;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--black);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-hero-secondary svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   DESIGN-HERO - SQUARE & BRUTAL STYLE
   Clean, minimal, square corners, var(--color-accent) yellow
   REF: service-personnalisation-gratuit.html
   ======================================== */

.design-hero {
    background: #fff;
    padding: 150px 3% 40px;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.design-hero-badge {
    display: inline-block;
    background: var(--color-accent);
    color: #0a0a0a;
    padding: 8px 24px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    /* NO border-radius - SQUARE! */
}

.design-hero-title {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    margin: 0 0 24px 0;
    text-transform: uppercase;
}

.design-hero-title .yellow {
    color: var(--color-accent);
}

.design-hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    max-width: 800px;
    margin: 0 auto 32px;
}

/* Trust grid - SQUARE with 2px borders */
.design-trust-items {
    background: #fafafa;
    padding: 32px 0;
}

.design-trust-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.design-trust-item {
    text-align: center;
    padding: 24px 16px;
    background: #fff;
    border: 2px solid #e5e5e5;
    /* NO border-radius - SQUARE corners! */
}

.design-trust-item-title {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #0a0a0a;
}

.design-trust-item-desc {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 1200px) {
    .design-hero-title {
        font-size: 56px;
    }
    .design-trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .design-hero {
        padding: 120px 3% 40px;
    }
    .design-hero-title {
        font-size: 42px;
    }
    .design-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ========================================
   TRUST BAR - Green bg, scrolling marquee
   Matches sport.php
   ======================================== */

.trust-bar {
    background: var(--green);
    padding: 18px 0;
    overflow: hidden;
}

.trust-bar-scroll {
    display: flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.trust-items,
.trust-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    color: var(--black);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--black);
    stroke: var(--black);
}

.trust-item strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    display: inline;
}

.trust-item span {
    font-size: 13px;
    font-weight: 600;
    color: var(--black);
}

/* ========================================
   SECTIONS - Matches sport.php
   ======================================== */

.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge,
.section-eyebrow {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--black);
    margin-bottom: 20px;
}

.section-title mark,
.guide-step-text mark,
.page-hero-title mark,
.page-cta-title mark {
    background: var(--green);
    color: var(--black);
    padding: 0 10px;
    border-radius: 4px;
}

.section-subtitle,
.section-description {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.7;
}

.section-header-center .section-subtitle,
.section-header-center .section-description,
.section-header .section-subtitle,
.section-header .section-description {
    margin-left: auto;
    margin-right: auto;
}

/* Dark section overrides */
.section-dark .section-badge,
.section-dark .section-eyebrow,
.comparison-section .section-eyebrow {
    background: rgba(25, 230, 107, 0.15);
    color: var(--green);
}

.section-dark .section-title,
.comparison-section .section-title {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: rgba(255,255,255,0.7);
}

/* ========================================
   FEATURE BADGES
   ======================================== */

.feature-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--green);
    color: var(--black);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}

.feature-badge svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

/* ========================================
   ADVANTAGES / FEATURES CARDS
   Card style matching sport.php faq-card
   ======================================== */

.advantage-section,
.advantages-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.advantage-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
    text-align: left;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.advantage-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.advantage-icon svg {
    width: 24px;
    height: 24px;
    max-width: 24px;
    max-height: 24px;
    color: var(--black);
    stroke: var(--black);
}

.advantage-title,
.advantage-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--black);
}

.advantage-desc,
.advantage-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   SOLUTIONS SECTION
   ======================================== */

.solutions-section {
    padding: 100px 0;
    background: var(--white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.solution-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    text-align: left;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.solution-icon {
    width: 48px;
    height: 48px;
    margin: 0 0 20px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
}

.solution-icon svg {
    width: 24px;
    height: 24px;
}

.solution-card h3,
.solution-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.3;
}

.solution-card p,
.solution-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ========================================
   PRICING SECTION
   ======================================== */

.pricing-cards {
    padding: 100px 0;
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 3%;
}

.price-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.price-card:hover {
    border-color: var(--green);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(25,230,107,0.15);
}

.price-card.featured {
    border-color: var(--green);
    box-shadow: 0 8px 24px rgba(25,230,107,0.15);
}

.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green);
    color: var(--black);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Hide volume/saving labels - no degressive pricing */
.price-volume,
.price-saving {
    display: none !important;
}

.price-amount {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1;
}

.price-unit {
    font-size: 24px;
    color: var(--gray-500);
}

.price-cta {
    display: inline-block;
    width: 100%;
    padding: 14px 28px;
    background: var(--green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-cta:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

/* ========================================
   COMPARISON TABLE
   ======================================== */

.comparison-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    padding: 0 3%;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead th {
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 2px solid var(--green);
    text-align: left;
}

.comparison-table thead th:first-child {
    color: rgba(255,255,255,0.6);
}

.comparison-table thead th:nth-child(2) {
    color: var(--green);
}

.comparison-table thead th:nth-child(3) {
    color: rgba(255,255,255,0.5);
}

.comparison-table tbody td {
    padding: 18px 24px;
    font-size: 15px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.comparison-table tbody td:first-child {
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.comparison-table tbody td:nth-child(3) {
    color: rgba(255,255,255,0.4);
}

.comparison-table tbody tr:hover {
    background: rgba(255,255,255,0.03);
}

.highlight-price {
    color: var(--green) !important;
    font-weight: 800;
}

/* ========================================
   SPORTS / CATEGORY CARDS
   ======================================== */

.sports-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.sport-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: block;
    aspect-ratio: 3 / 4;
    transition: all 0.3s ease;
}

.sport-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.sport-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.sport-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    z-index: 2;
}

.sport-card-name {
    font-size: 20px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.sport-card-count {
    font-size: 14px;
    color: var(--green);
    font-weight: 600;
}

/* Card "+X sports" */
.sport-card-more {
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    aspect-ratio: 3 / 4;
    position: relative;
    overflow: hidden;
}

.sport-card-more::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 70%, rgba(25,230,107,0.15) 0%, transparent 60%),
                radial-gradient(circle at 70% 30%, rgba(25,230,107,0.1) 0%, transparent 50%);
    transition: opacity 0.4s ease;
    opacity: 0.6;
}

.sport-card-more:hover::before {
    opacity: 1;
}

.sport-card-more:hover {
    background: #0a0a0a;
}

.sport-card-more-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.sport-card-more-number {
    display: block;
    font-size: 56px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--green) 0%, #7fff6e 50%, var(--green) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 4px;
    animation: shimmer-text 3s ease-in-out infinite;
}

@keyframes shimmer-text {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.sport-card-more-label {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sport-card-more-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    background: var(--green);
    padding: 10px 24px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sport-card-more:hover .sport-card-more-cta {
    background: #fff;
    color: var(--black);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(25,230,107,0.4);
}

/* ========================================
   FAQ - 2 COLUMN CARD GRID
   Matches sport.php FAQ exactly
   ======================================== */

.faq-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.faq-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

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

.faq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--black);
}

.faq-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Legacy FAQ accordion - restyled as card grid */
.faq-accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 0;
}

.faq-accordion details {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    margin-bottom: 0;
    overflow: visible;
    transition: all 0.3s ease;
}

.faq-accordion details:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.faq-accordion summary {
    padding: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    cursor: default;
    display: block;
    list-style: none;
    line-height: 1.3;
    margin-bottom: 12px;
    pointer-events: none;
}

.faq-accordion summary::-webkit-details-marker { display: none; }
.faq-accordion summary::marker { display: none; content: ''; }

.faq-accordion .faq-icon {
    display: none;
}

.faq-accordion details p {
    padding: 0;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0;
}

/* Auto-open all FAQ details when styled as cards */
.faq-accordion details {
    /* details auto-open not possible via CSS, but content is visible */
}

/* Quick FAQ grid (info pages) */
.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.faq-quick-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-quick-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.faq-quick-item h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--black);
}

.faq-quick-item p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   CTA BANNER - Matches sport.php
   ======================================== */

.cta-banner {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-icon svg {
    width: 36px;
    height: 36px;
    color: var(--black);
}

.cta-content h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.7;
    max-width: 500px;
}

.cta-buttons {
    display: flex;
    gap: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--white);
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-cta-primary {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    padding: 18px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.3);
    padding: 18px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--black);
}

/* Legacy CTA Final Section - restyled to match sport.php CTA banner */
.cta-final-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.cta-final-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-final-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: var(--white);
    line-height: 1.1;
    text-transform: uppercase;
}

.cta-final-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.cta-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-number {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--green);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   CTA REDESIGN (Green bg variant)
   ======================================== */

.cta-redesign {
    background: var(--green);
    padding: 80px 0;
    color: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-redesign-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-redesign-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.1;
    text-transform: uppercase;
}

.cta-redesign-subtitle {
    font-size: 18px;
    margin-bottom: 48px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.cta-redesign-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    padding: 16px;
    background: rgba(0,0,0,0.06);
    border-radius: var(--radius);
}

.cta-feature svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    fill: var(--black);
}

.cta-feature span {
    font-size: 14px;
    font-weight: 700;
}

.cta-redesign-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-main {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: var(--black);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-main:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-cta-main svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ========================================
   INFO PAGE SPECIFIC STYLES
   Livraison, zones, process, garanties
   ======================================== */

/* Livraison sections */
.livraison-section {
    padding: 100px 0;
}

.livraison-section:nth-child(even) {
    background: var(--gray-50);
}

.livraison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.livraison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.livraison-grid-reverse {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.livraison-label {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.livraison-heading {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 24px;
    text-transform: uppercase;
}

.livraison-description {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.livraison-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
}

.livraison-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.livraison-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Timeline */
.livraison-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.timeline-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
    stroke: var(--black);
}

.timeline-content h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.timeline-content p {
    font-size: 14px;
    color: var(--gray-500);
    margin: 0;
}

/* Zones grid */
.zones-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.zone-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.zone-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.zone-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.zone-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
    stroke: var(--black);
}

.zone-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 8px;
}

.zone-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 12px;
}

.zone-delay {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* Process steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.process-step {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}

.process-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.process-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    font-size: 18px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.process-step p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Garanties grid */
.garanties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.garantie-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.garantie-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.garantie-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.garantie-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
    stroke: var(--black);
}

.garantie-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
}

.garantie-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Frais box */
.frais-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.frais-item {
    padding: 20px 0;
}

.frais-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.frais-value {
    display: block;
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
}

.frais-item p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.frais-separator {
    height: 1px;
    background: var(--gray-100);
}

/* Livraison CTA section */
.livraison-cta-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.livraison-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.livraison-cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 3%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.livraison-cta-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
    text-transform: uppercase;
}

.livraison-cta-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.livraison-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: var(--green);
    color: var(--black);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-white:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: transparent;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* ========================================
   TIPS SECTION
   ======================================== */

.tips-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.tip-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    position: relative;
}

.tip-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.tip-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 48px;
    font-weight: 900;
    color: rgba(25,230,107,0.15);
    line-height: 1;
}

.tip-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}

.tip-card h3,
.tip-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.3;
}

.tip-card p,
.tip-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ========================================
   BLOG HERO
   ======================================== */

.blog-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 160px 3% 80px;
    text-align: center;
    position: relative;
}

.blog-hero::before,
.blog-hero::after {
    display: none;
}

.blog-hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.blog-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 50px;
    margin-bottom: 28px;
    color: var(--black);
}

.blog-hero-content h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--black);
    text-transform: uppercase;
}

.blog-hero-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 36px;
    font-weight: 400;
}

.blog-search-container {
    position: relative;
    max-width: 500px;
    margin: 36px auto 0;
}

.blog-search {
    width: 100%;
    padding: 16px 50px 16px 24px;
    font-size: 16px;
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.blog-search:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: none;
}

.search-icon {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

/* ========================================
   BLOG CONTAINER & FILTERS
   ======================================== */

.blog-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 3%;
}

.blog-filters-section {
    text-align: center;
    margin-bottom: 60px;
}

.filters-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 32px;
    color: var(--black);
    text-transform: uppercase;
}

.blog-filters {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gray-600);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.filter-btn:hover {
    border-color: var(--black);
    color: var(--black);
}

.filter-btn.active {
    background: var(--green);
    border-color: var(--green);
    color: var(--black);
}

.articles-count {
    text-align: center;
    margin-bottom: 40px;
    font-size: 16px;
    color: var(--gray-500);
}

.articles-count span {
    font-weight: 800;
    color: var(--black);
    background: var(--green);
    padding: 2px 10px;
    border-radius: 6px;
    font-size: 18px;
}

/* ========================================
   BLOG GRID & CARDS
   ======================================== */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    cursor: pointer;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.blog-card-image {
    position: relative;
    height: 250px;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}

.blog-card-category {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--green);
    color: var(--black);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-card-content {
    padding: 24px;
}

.blog-card-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--gray-500);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--black);
    line-height: 1.3;
}

.blog-card-description {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-500);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.blog-card-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-link::after {
    transform: translateX(4px);
}

.no-articles {
    text-align: center;
    padding: 80px 20px;
}

.no-articles-icon {
    font-size: 60px;
    margin-bottom: 20px;
}

.no-articles p {
    font-size: 17px;
    color: var(--gray-500);
}

/* ========================================
   SEO MEGA SECTION
   ======================================== */

.seo-mega {
    padding: 100px 0;
    background: var(--gray-50);
}

.seo-mega .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.seo-hero {
    text-align: center;
    margin-bottom: 60px;
}

.seo-hero-badge {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.seo-hero-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--black);
    line-height: 1.1;
    text-transform: uppercase;
}

.seo-hero-intro {
    font-size: 17px;
    line-height: 1.7;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.seo-cards-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

.seo-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.seo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.seo-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.seo-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.3;
}

.seo-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1200px) {
    .advantages-grid,
    .solutions-grid,
    .tips-grid,
    .garanties-grid,
    .seo-cards-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 0 3% 60px;
        min-height: auto;
        gap: 40px;
    }
    .hero-image { height: 400px; }
    .hero-text { padding: 0px 0 40px; }

    .hero-page,
    .hero-sport,
    .hero-livraison,
    .hero-budget,
    .hero-retours,
    .hero-revendeur,
    .hero-prix,
    .hero-premium,
    .hero-faq,
    .hero-contact,
    .hero-innovation-v2 {
        padding: 120px 3% 60px;
    }

    .livraison-grid,
    .livraison-grid-reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

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

    .cta-redesign-features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-page,
    .hero-sport,
    .hero-livraison,
    .hero-budget,
    .hero-retours,
    .hero-revendeur,
    .hero-prix,
    .hero-premium,
    .hero-faq,
    .hero-contact,
    .hero-innovation-v2 {
        padding: 100px 3% 50px;
    }

    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
    .hero-stat-num { font-size: 22px; }
    .hero-stat-label { font-size: 11px; }

    .hero-sport-cta,
    .hero-faq-cta,
    .hero-livraison-cta,
    .hero-contact-cta,
    .hero-prix-cta,
    .hero-cta {
        flex-direction: column;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
    }

    .advantages-grid,
    .solutions-grid,
    .tips-grid,
    .pricing-grid,
    .garanties-grid,
    .process-steps,
    .seo-cards-3 {
        grid-template-columns: 1fr;
    }

    .sports-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sport-card-more-number {
        font-size: 40px;
    }

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

    .faq-grid,
    .faq-accordion,
    .faq-quick-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .faq-card,
    .faq-accordion details,
    .faq-quick-item {
        padding: 24px;
    }

    .cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .cta-text {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .cta-final-buttons,
    .cta-redesign-buttons,
    .livraison-cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary,
    .btn-cta-white,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }

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

    .hero-contact-badges {
        flex-direction: column;
    }

    .blog-hero {
        padding: 100px 3% 50px;
    }

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

    .blog-filters {
        flex-direction: column;
    }

    .filter-btn {
        width: 100%;
    }

    .blog-card-image {
        height: 200px;
    }

    .trust-items,
    .trust-container {
        gap: 24px;
    }

    .trust-item {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .hero-sport-title,
    .hero-faq-title,
    .hero-livraison-title,
    .hero-contact-title,
    .hero-budget-title,
    .hero-prix-title,
    .hero-retours-title,
    .hero-revendeur-title,
    .hero-page-title {
        font-size: clamp(28px, 8vw, 40px);
    }

    .trust-items,
    .trust-container {
        gap: 16px;
        flex-direction: column;
    }

    .cta-stats {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .stat-number { font-size: 22px; }
    .stat-label { font-size: 10px; }

    .hero-btns {
        flex-direction: column;
    }

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

/* ========================================
   PRODUCT TABS
   ======================================== */

@media (max-width: 768px) {
    .tabs-nav {
        flex-wrap: wrap;
        gap: 4px;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 14px;
        flex: 1 1 auto;
        min-width: calc(50% - 4px);
    }

    .product-tabs {
        padding: 0 3%;
        margin: 40px auto;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        min-width: 100%;
        text-align: center;
    }
}

/* ========================================
   REVEAL ANIMATION SCRIPT
   Auto-activates on scroll
   ======================================== */

/* ========================================
   BORDER-RADIUS - SELECTIVE ROUNDING
   Add soft corners to specific elements only
   Buttons: 6px, Badges: 4px, Images: 8px/50%
   ======================================== */

/* 1. BUTTONS - 6px rounded */
.btn,
.btn-yellow,
.btn-outline,
.btn-white,
.btn-black,
.btn-guide-primary,
.btn-guide-secondary,
.btn-cta-primary,
.btn-cta-secondary,
.form-submit,
button[type="submit"],
.cta-button,
.hero-cta .btn,
.design-hero-cta .btn {
    border-radius: 6px;
}

/* 3. BADGES - 4px rounded */
.design-hero-badge,
.hero-livraison-eyebrow,
.hero-sport-badge,
.badge,
.update-notice,
.zone-delay-badge,
.legal-hero-badge,
.rgpd-badge,
span.badge,
.trust-badge,
.feature-badge {
    border-radius: 4px;
}

/* 5. IMAGES & AVATARS */
/* Images normales - 8px rounded corners */
.hero-image img,
.section-image img,
.feature-image img,
.advantage-image img,
.blog-image img,
.product-image img {
    border-radius: 8px;
}

/* Avatars & Testimonials - Fully rounded (50%) */
.avatar,
.testimonial-avatar,
.client-avatar,
.review-avatar,
.author-avatar,
.user-avatar,
.testimonial-card img,
.review-card img {
    border-radius: 50%;
}

/* ========================================
   INNOVATION PAGE SPECIFIC STYLES
   ======================================== */

/* Badge variants */
.badge-large {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 12px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
}

/* Text utilities */
.text-large {
    font-size: 18px;
    line-height: 1.7;
    color: var(--gray-500);
    font-weight: 400;
}

.text-small {
    font-size: 14px;
    line-height: 1.6;
    color: var(--gray-500);
}

.text-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-600);
}

/* Card title */
.card-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.3;
}

/* CTA Final variant (same as cta-final-section) */
.cta-final {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.section-overlay-90 {
    position: relative;
}

.section-overlay-90::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.9);
    pointer-events: none;
    z-index: 0;
}

.container-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: uppercase;
}

.cta-subtitle {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* Grid utilities */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

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

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

@media (max-width: 968px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }

    .sav-comparison {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   PAGE HERO - Split 2-column layout
   Matches Homepage V12 / Sport.php design
   ======================================== */

.page-hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3% 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 85vh;
    align-items: center;
    gap: 60px;
}

.page-hero-content {
    padding: 40px 0;
    animation: fadeInUp 0.8s ease-out;
}

.page-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--green);
    color: var(--black);
    padding: 10px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 28px;
}

.page-hero-title {
    font-size: clamp(42px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    color: var(--black);
}

.page-hero-title .highlight,
.page-hero-title .yellow,
.page-hero-subtitle .yellow,
.page-cta-title .yellow,
.section-title .yellow {
    color: var(--black);
    background: var(--green);
    padding: 0 8px;
    display: inline;
    border-radius: 4px;
}

.page-hero-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray-500);
    margin-bottom: 36px;
    max-width: 520px;
}

.page-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.page-hero-stats {
    display: flex;
    gap: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--gray-200);
}

.page-hero-stat-num {
    font-size: 32px;
    font-weight: 900;
    color: var(--black);
}

.page-hero-stat-num span {
    color: var(--green);
}

.page-hero-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.page-hero-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    animation: fadeInRight 1s ease-out;
    height: 600px;
}

.page-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    transition: transform 0.6s ease;
}

.page-hero-image:hover img {
    transform: scale(1.03);
}

/* ========================================
   BUTTONS - V12 Design System
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn:hover svg { transform: translateX(4px); }

.btn-primary {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
}

.btn-primary:hover {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline {
    background: transparent;
    color: var(--black);
    border-color: var(--black);
}

.btn-outline:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

.btn-dark:hover {
    background: var(--green);
    color: var(--black);
    border-color: var(--green);
    transform: translateY(-2px);
}

/* ========================================
   TRUST BAR - Scrolling marquee
   ======================================== */

.trust-bar {
    background: var(--green);
    padding: 18px 0;
    overflow: hidden;
}

.trust-bar-scroll {
    display: flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    color: var(--black);
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
}

.trust-item svg {
    width: 20px;
    height: 20px;
    color: var(--black);
    stroke: var(--black);
}

/* ========================================
   SECTION STYLES - V12 Design System
   ======================================== */

.section {
    padding: 100px 0;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--black);
    color: var(--white);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 50px;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.section-title mark,
.guide-step-text mark,
.page-hero-title mark,
.page-cta-title mark {
    background: var(--green);
    color: var(--black);
    padding: 0 10px;
    border-radius: 4px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--gray-500);
    max-width: 600px;
    margin-top: 16px;
    line-height: 1.7;
}

.section-header-center .section-subtitle {
    margin: 16px auto 0;
}

.section-badge {
    display: inline-block;
    background: var(--green);
    color: var(--black);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

/* ========================================
   ADVANTAGE CARDS - V12 Design
   ======================================== */

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

.advantage-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    text-align: center;
}

.advantage-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gray-300);
}

.advantage-icon {
    width: 60px;
    height: 60px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
    color: var(--black);
}

.advantage-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.advantage-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
}

/* ========================================
   PAGE TRUST GRID
   ======================================== */

.page-trust-items {
    background: var(--green);
    padding: 18px 0;
    overflow: hidden;
}

.page-trust-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
    display: flex;
    gap: 60px;
    animation: marquee 40s linear infinite;
    will-change: transform;
}

.page-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
    color: var(--black);
}

.page-trust-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
}

.page-trust-item-title {
    font-weight: 700;
}

.page-trust-item-desc {
    display: none;
}

/* ========================================
   FAQ GRID - 2 Columns Cards (V12)
   ======================================== */

.faq-categories {
    padding: 100px 0;
    background: var(--white);
}

.faq-categories-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3%;
}

.faq-category {
    margin-bottom: 80px;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.faq-category-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    padding: 14px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-category-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
}

.faq-category-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: var(--black);
}

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

.faq-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.faq-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-icon svg {
    width: 24px;
    height: 24px;
    color: var(--black);
}

.faq-card h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.3;
    color: var(--black);
}

.faq-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

/* Legacy faq-item support */
.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border: 1px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

.faq-item-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    padding: 12px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.faq-item-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
    fill: none;
    stroke-width: 2;
}

.faq-item-content {
    flex: 1;
    text-align: left;
}

.faq-item-question {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black);
    line-height: 1.3;
}

.faq-item-answer {
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-500);
    margin: 0;
}

/* ========================================
   STATS GRID - Dark
   ======================================== */

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

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255,255,255,0.15);
}

.stat-card:last-child::after { display: none; }

.stat-num {
    font-size: 56px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    color: var(--green);
}

.stat-label {
    font-size: 14px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ========================================
   CTA BANNER - V12 Dark with stripes
   ======================================== */

.page-cta-section {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.page-cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 3%;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-cta-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--white);
}

.page-cta-subtitle {
    font-size: 17px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    line-height: 1.7;
}

.page-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-cta-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 600px;
    margin: 60px auto 0;
}

.page-cta-stat-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}

.page-cta-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* CTA Banner inline variant (sport.php style) */
.cta-banner {
    padding: 100px 0;
    background: var(--black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 20px,
        rgba(255,255,255,0.03) 20px,
        rgba(255,255,255,0.03) 40px
    );
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-text {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: var(--green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.cta-icon svg {
    width: 36px;
    height: 36px;
    color: var(--black);
}

.cta-content h3 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 16px;
    opacity: 0.7;
    max-width: 500px;
}

/* CTA Buttons (dark section) */
.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--green);
    background: var(--green);
    color: var(--black);
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 8px;
}

.btn-cta-primary:hover {
    background: var(--white);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    transition: all 0.2s ease;
    text-decoration: none;
    border-radius: 8px;
}

.btn-cta-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-2px);
}

/* ========================================
   BENTO GRID - Asymmetric mixed-size layout
   ======================================== */

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 20px;
}

.bento-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.bento-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border-color: var(--green);
}

.bento-card-wide { grid-column: span 2; }
.bento-card-tall { grid-row: span 2; }
/* Grille à 2 cols quand elle ne contient QUE des cartes wide (évite les colonnes vides) */
.bento-grid:not(:has(.bento-card:not(.bento-card-wide))) {
    grid-template-columns: repeat(2, 1fr);
}

.bento-card-dark {
    background: var(--black);
    color: var(--white);
    border-color: transparent;
}

.bento-card-accent {
    background: var(--green);
    border-color: transparent;
}

.bento-number {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.04em;
    color: var(--black);
    margin-bottom: 8px;
}

.bento-number span {
    font-size: 0.5em;
    color: var(--green);
}

.bento-card h3 {
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    color: var(--black);
}

.bento-card p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--black);
    margin: 0;
}

/* Overrides AFTER default bento-card rules (même spécificité, position = priorité) */
.bento-card-dark h3,
.bento-card-dark .bento-number,
.bento-card-dark p { color: var(--white); }

.bento-card-accent h3,
.bento-card-accent p { color: var(--white); }

.bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
}

.bento-icon svg {
    width: 100%;
    height: 100%;
}

/* ========================================
   GUIDE STEPPER - Horizontal step navigation
   ======================================== */

.guide-stepper {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 3%;
}

.guide-stepper::before {
    content: '';
    position: absolute;
    top: 64px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: var(--gray-200);
    z-index: 0;
}

.guide-stepper-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 1;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    flex: 1;
}

.guide-stepper-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 16px;
    color: var(--gray-400);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.guide-stepper-item:hover .guide-stepper-dot {
    background: var(--green);
    border-color: var(--green);
    color: var(--black);
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(25, 230, 107, 0.3);
}

.guide-stepper-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray-400);
    text-align: center;
    max-width: 100px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
}

.guide-stepper-item:hover .guide-stepper-label {
    color: var(--black);
}

/* ========================================
   GUIDE STEP HEADER - Section with large number
   ======================================== */

.guide-step-header {
    display: flex;
    align-items: flex-start;
    gap: 32px;
    margin-bottom: 3rem;
}

.guide-step-num {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 28px;
    color: var(--black);
    position: relative;
}

.guide-step-num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px dashed var(--gray-200);
}

.guide-step-text {
    flex: 1;
    padding-top: 8px;
}

.guide-step-text .section-badge {
    display: inline-block;
    margin-bottom: 8px;
}

.guide-step-text h2 {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--black);
    margin-bottom: 12px;
}

.guide-step-text p {
    font-size: 16px;
    color: var(--gray-500);
    line-height: 1.7;
    max-width: 680px;
}

/* ========================================
   PRODUCTION TIMELINE - Vertical connected
   ======================================== */

.production-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 72px;
}

.production-timeline::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 12px;
    bottom: 12px;
    width: 3px;
    background: linear-gradient(to bottom, var(--green), var(--gray-200) 60%, var(--green));
    border-radius: 3px;
}

.production-timeline-item {
    position: relative;
    padding-bottom: 32px;
}

.production-timeline-item:last-child {
    padding-bottom: 0;
}

.production-timeline-marker {
    position: absolute;
    left: -72px;
    top: 8px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 12px;
    color: var(--black);
    z-index: 1;
    transition: all 0.3s ease;
    letter-spacing: -0.02em;
}

.production-timeline-item:hover .production-timeline-marker {
    background: var(--green);
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(25, 230, 107, 0.3);
}

.production-timeline-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.production-timeline-item:hover .production-timeline-card {
    transform: translateX(6px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    border-color: var(--green);
}

.production-timeline-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 4px;
}

.production-timeline-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.6;
    margin: 0;
}

.production-timeline-item:last-child .production-timeline-marker {
    background: var(--green);
    border-color: var(--green);
}

.production-timeline-item:last-child .production-timeline-card {
    background: var(--black);
    border-color: transparent;
}

.production-timeline-item:last-child .production-timeline-card h3 {
    color: var(--white);
}

.production-timeline-item:last-child .production-timeline-card p {
    color: rgba(255,255,255,0.6);
}

/* ========================================
   GLASS SECTION - Frosted glass on dark gradient
   ======================================== */

.glass-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.glass-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(25,230,107,0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.glass-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(25,230,107,0.1) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    pointer-events: none;
}

.glass-section .section-title { color: var(--white); }
.glass-section .section-subtitle { color: rgba(255,255,255,0.7); }
.glass-section .section-badge {
    background: rgba(25, 230, 107, 0.15);
    color: var(--green);
}

.glass-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.4s ease;
}

.glass-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(25,230,107,0.4);
    transform: translateY(-4px);
}

.glass-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(25,230,107,0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.glass-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--green);
}

.glass-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.glass-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin: 0;
}

.glass-stat {
    font-size: 36px;
    font-weight: 900;
    color: var(--green);
    display: block;
    margin-bottom: 4px;
}

/* ========================================
   FEATURE STRIP - Horizontal metrics banner
   ======================================== */

.feature-strip {
    padding: 0;
    background: var(--black);
    overflow: hidden;
}

.feature-strip-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1400px;
    margin: 0 auto;
}

.feature-strip-item {
    padding: 48px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.feature-strip-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.1);
}

.feature-strip-item:last-child::after { display: none; }

.feature-strip-item:hover {
    background: rgba(25,230,107,0.05);
}

.feature-strip-num {
    font-size: 42px;
    font-weight: 900;
    color: var(--green);
    line-height: 1;
    margin-bottom: 8px;
}

.feature-strip-label {
    font-size: 13px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ========================================
   HOVER REVEAL CARDS - Expanding glow border
   ======================================== */

.hover-reveal-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.hover-reveal-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-100);
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.hover-reveal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.08);
    border-color: var(--gray-200);
}

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

.hover-reveal-icon {
    width: 48px;
    height: 48px;
    background: var(--green);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hover-reveal-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--black);
}

.hover-reveal-card h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--black);
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.hover-reveal-card p {
    font-size: 15px;
    color: var(--gray-500);
    line-height: 1.7;
    margin: 0;
}

.hover-reveal-detail {
    margin-top: 16px;
}

.hover-reveal-detail ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hover-reveal-detail li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hover-reveal-detail li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--green);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ========================================
   HIGHLIGHT BANNER - Large accent text section
   ======================================== */

.highlight-banner {
    padding: 80px 0;
    background: var(--green);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.highlight-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 100px,
        rgba(0,0,0,0.03) 100px,
        rgba(0,0,0,0.03) 101px
    );
    pointer-events: none;
}

.highlight-banner-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3%;
    position: relative;
    z-index: 1;
}

.highlight-banner-text {
    font-size: clamp(24px, 4vw, 44px);
    font-weight: 900;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.highlight-banner-sub {
    font-size: 16px;
    color: rgba(0,0,0,0.6);
    margin-top: 16px;
    font-weight: 500;
}

/* ========================================
   CREATIVE COMPONENTS - Responsive
   ======================================== */

@media (max-width: 968px) {
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-card-wide { grid-column: span 2; }
    .glass-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-strip-inner { grid-template-columns: repeat(4, 1fr); }
    .feature-strip-item { padding: 32px 16px; }
    .feature-strip-num { font-size: 32px; }
    .hover-reveal-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .bento-grid { grid-template-columns: 1fr; }
    .bento-card-wide { grid-column: span 1; }
    .bento-card-tall { grid-row: span 1; }
    .glass-grid { grid-template-columns: 1fr; }
    .feature-strip-inner { grid-template-columns: repeat(4, 1fr); }
    .feature-strip-item { padding: 20px 8px; }
    .feature-strip-num { font-size: 24px; }
    .feature-strip-label { font-size: 9px; letter-spacing: 0.04em; }
    .feature-strip-item::after { display: none; }
    .hover-reveal-card { padding: 28px; }
}

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes marquee {
    0% { transform: translate3d(0, 0, 0); }
    100% { transform: translate3d(-50%, 0, 0); }
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .page-hero {
        grid-template-columns: 1fr;
        padding: 0 3% 60px;
        min-height: auto;
        gap: 40px;
    }
    .page-hero-image { height: 400px; }
    .page-hero-content { padding: 0; }
    .faq-grid { grid-template-columns: 1fr; }
    .advantages-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-stepper-label { font-size: 10px; max-width: 80px; }
    .guide-step-header { gap: 24px; }
    .guide-step-num { width: 64px; height: 64px; font-size: 22px; }
}

@media (max-width: 768px) {
    .guide-stepper { flex-wrap: wrap; gap: 8px; padding: 24px 16px; }
    .guide-stepper::before { display: none; }
    .guide-stepper-dot { width: 40px; height: 40px; font-size: 14px; }
    .guide-stepper-label { display: none; }
    .guide-step-header { flex-direction: column; gap: 16px; text-align: center; align-items: center; }
    .guide-step-num { width: 56px; height: 56px; font-size: 20px; }
    .guide-step-num::after { inset: -4px; }
    .guide-step-text { padding-top: 0; }
    .guide-step-text p { max-width: 100%; }
    .production-timeline { padding-left: 56px; }
    .production-timeline::before { left: 20px; }
    .production-timeline-marker { width: 44px; height: 44px; left: -56px; font-size: 11px; }
    .page-hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 8px;
    }
    .page-hero-stat-num { font-size: 22px; }
    .page-hero-stat-label { font-size: 11px; }
    .faq-grid { gap: 16px; }
    .faq-card { padding: 24px; }
    .faq-item { padding: 24px; }
    .page-cta-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        max-width: 100%;
    }
    .page-cta-stat-number { font-size: 24px; }
    .page-cta-stat-label { font-size: 10px; letter-spacing: 0.03em; }
    .page-cta-buttons {
        flex-direction: column;
    }
    .page-cta-buttons a {
        width: 100%;
        justify-content: center;
    }
    .cta-inner { flex-direction: column; text-align: center; }
    .cta-text { flex-direction: column; }
    .stats-grid { grid-template-columns: repeat(4, 1fr); gap: 8px; }
    .stat-card { padding: 20px 8px; }
    .stat-num { font-size: 26px; }
    .stat-label { font-size: 10px; }
}

@media (max-width: 480px) {
    .page-hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
}

/* ========================================
   EMOTION PHOTO GALLERY
   ======================================== */
.emotion-gallery-section {
    background: #0a0a0a;
    padding: 64px 0;
}
.emotion-gallery-section .section-header-center .section-badge {
    background: rgba(25,230,107,0.15);
    color: var(--color-accent);
    border: 1px solid rgba(25,230,107,0.3);
}
.emotion-gallery-section .section-title {
    color: #fff;
}
.emotion-gallery-section mark {
    background: none;
    color: var(--color-accent);
    -webkit-text-fill-color: unset;
}
.emotion-photo-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 260px 260px;
    gap: 10px;
}
.emotion-photo-item {
    overflow: hidden;
    border-radius: 10px;
}
.emotion-photo-tall {
    grid-row: 1 / 3;
}
.emotion-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}
.emotion-photo-item:hover img {
    transform: scale(1.06);
}
@media (max-width: 768px) {
    .emotion-photo-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 180px 180px 180px;
    }
    .emotion-photo-tall {
        grid-column: 1 / 3;
        grid-row: auto;
        height: 260px;
    }
}
@media (max-width: 480px) {
    .emotion-photo-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .emotion-photo-tall {
        grid-column: auto;
    }
    .emotion-photo-item {
        height: 220px;
    }
}
