/* ========================================
   DEAX × Marielle Pugin - Partnership Page
   Modern, Animated, Professional Design
   ======================================== */

/* CSS Variables */
:root {
    /* Colors */
    --primary-orange: #F4956A;
    --primary-orange-dark: #D97040;
    --dark-navy: #1a1a1a;
    --darker-navy: #111111;
    --slate: #748182;
    --slate-light: #b8b8b8;
    --white: #FFFFFF;
    --off-white: #f2f2f2;
    --glass-bg: rgba(0, 0, 0, 0.03);
    --glass-border: rgba(0, 0, 0, 0.08);

    /* Gradients */
    --gradient-primary: linear-gradient(45deg, var(--primary-orange) 0%, var(--primary-orange-dark) 100%);
    --gradient-dark: linear-gradient(180deg, var(--dark-navy) 0%, var(--darker-navy) 100%);

    /* Typography */
    --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Montserrat', Georgia, sans-serif;

    /* Spacing */
    --section-padding: clamp(80px, 15vh, 150px);
    --container-padding: clamp(20px, 5vw, 80px);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Easing */
    --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    background-color: var(--off-white);
    color: var(--dark-navy);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Selection */
::selection {
    background-color: var(--primary-orange);
    color: var(--white);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-navy);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-orange);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-orange-dark);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1001;
    transition: width 0.1s linear;
}

/* Cursor Follower */
.cursor-follower {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.15s var(--ease-out-expo),
                width 0.3s var(--ease-out-expo),
                height 0.3s var(--ease-out-expo),
                opacity 0.3s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
    mix-blend-mode: difference;
}

body:hover .cursor-follower {
    opacity: 1;
}

.cursor-follower.active {
    width: 50px;
    height: 50px;
    background: rgba(244, 149, 106, 0.1);
}

@media (max-width: 768px) {
    .cursor-follower {
        display: none;
    }
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background-color: #ffffff;
    box-shadow: 0 1px 70px rgba(0, 0, 0, 0.12);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px var(--container-padding);
    transition: padding 0.3s ease;
}

.nav.scrolled .nav-container {
    padding: 10px var(--container-padding);
}

/* Logo */
.nav-logo-link {
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: filter 0.3s ease, opacity 0.3s ease;
    filter: brightness(0) invert(1);
}

.nav.scrolled .nav-logo-img {
    filter: brightness(0) saturate(100%);
}

/* Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Nav links (a + button) */
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 8px 12px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav.scrolled .nav-link {
    color: #333333;
}

.nav-link:hover,
.nav-link-active {
    color: var(--primary-orange) !important;
}

/* Dropdown wrapper */
.nav-dropdown-wrap {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 210px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1001;
    overflow: hidden;
}

.nav-dropdown-wrap:hover .nav-dropdown-menu,
.nav-dropdown-wrap.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 11px 18px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    border-bottom: 1px solid #f2f2f2;
    transition: background 0.15s ease, color 0.15s ease;
}

.nav-dropdown-menu a:last-child {
    border-bottom: none;
}

.nav-dropdown-menu a:hover {
    background: var(--off-white);
    color: var(--primary-orange);
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    flex-shrink: 0;
}

.ham-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}

.nav.scrolled .ham-line {
    background: #333333;
}

.nav-hamburger.open .ham-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open .ham-line:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open .ham-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile */
@media (max-width: 968px) {
    .nav-hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        background: #ffffff;
        border-top: 1px solid #e0e0e0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        padding: 8px 0 16px;
        gap: 0;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-link {
        color: #333333 !important;
        font-size: 15px;
        padding: 12px 24px;
        border-bottom: 1px solid #f5f5f5;
        width: 100%;
        justify-content: space-between;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-dropdown-wrap {
        width: 100%;
    }

    .nav-dropdown-wrap .nav-link {
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f8f8f8;
        display: none;
        padding: 4px 0;
    }

    .nav-dropdown-wrap.open .nav-dropdown-menu {
        display: block;
    }

    .nav-dropdown-menu a {
        padding: 10px 36px;
        border-bottom: none;
        font-size: 14px;
        color: #555555;
    }
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 120px var(--container-padding) var(--section-padding);
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: var(--white);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 16px 8px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    box-shadow: none;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.2s forwards;
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
    letter-spacing: -0.03em;
    color: var(--white);
}

.title-line {
    display: block;
    overflow: hidden;
}

.word {
    display: inline-block;
    opacity: 0;
    transform: scale(2.2) translateZ(0);
    filter: blur(12px);
    animation: wordZoomIn 0.8s var(--ease-out-expo) forwards;
}

.word[data-delay="0"] {
    animation-delay: 0.1s;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.04em;
    transition: color 0.5s ease;
}

.word[data-delay="0"]:hover {
    color: rgba(255, 255, 255, 0.35);
}

.word[data-delay="1"] {
    animation-delay: 0.28s;
    font-size: clamp(2rem, 5.5vw, 4rem);
    font-weight: 800;
}

.word[data-delay="2"] {
    animation-delay: 0.46s;
    font-size: clamp(2.6rem, 8vw, 5.5rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    background: linear-gradient(
        105deg,
        rgba(255,255,255,0.85) 0%,
        rgba(255,255,255,0.85) 30%,
        rgba(255, 210, 180, 1) 45%,
        #ffffff 50%,
        rgba(255, 210, 180, 1) 55%,
        rgba(255,255,255,0.85) 70%,
        rgba(255,255,255,0.85) 100%
    );
    background-size: 250% 100%;
    background-position: 150% center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: wordZoomIn 0.8s var(--ease-out-expo) 0.46s forwards, shimmerIdle 6s ease-in-out 2s infinite;
}

.word[data-delay="2"] {
    transition: filter 0.4s ease, transform 0.4s ease;
}

.word[data-delay="2"]:hover {
    filter: brightness(1.35) drop-shadow(0 0 18px rgba(244, 149, 106, 0.5));
    transform: scale(1.02);
}

@keyframes shimmerIdle {
    0%, 55%, 100% { background-position: 150% center; }
    28%            { background-position: -50% center; }
}

.word[data-delay="3"] { animation-delay: 0.6s; }
.word[data-delay="4"] { animation-delay: 0.7s; }
.word[data-delay="5"] { animation-delay: 0.8s; }

@keyframes wordZoomIn {
    0% {
        opacity: 0;
        transform: scale(2.2) translateZ(0);
        filter: blur(12px);
    }
    60% {
        opacity: 1;
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateZ(0);
        filter: blur(0px);
    }
}

.word.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out-expo) 0.9s forwards;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s var(--ease-out-expo) 1s forwards;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(244, 149, 106, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(244, 149, 106, 0.4);
}

.btn-primary svg {
    transition: transform var(--transition-fast);
}

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

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.btn-secondary:hover {
    background: var(--white);
    color: #333333;
    border-color: var(--white);
}

.btn-large {
    padding: 20px 48px;
    font-size: 1.1rem;
}

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

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

/* 3D Sphere */
.sphere-container {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: clamp(300px, 40vw, 600px);
    height: clamp(300px, 40vw, 600px);
    z-index: 1;
}

.sphere {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: sphereFloat 6s ease-in-out infinite;
}

@keyframes sphereFloat {
    0%, 100% { transform: translateY(0) rotateX(0) rotateY(0); }
    50% { transform: translateY(-20px) rotateX(5deg) rotateY(5deg); }
}

.sphere-inner {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.45) 0%, transparent 45%),
        radial-gradient(circle at 30% 30%, rgba(244, 149, 106, 0.85) 0%, transparent 55%),
        radial-gradient(circle at 70% 70%, rgba(217, 112, 64, 0.65) 0%, transparent 50%),
        linear-gradient(135deg, rgba(244, 149, 106, 0.3) 0%, rgba(217, 112, 64, 0.4) 100%);
    box-shadow:
        inset 20px 20px 60px rgba(255, 255, 255, 0.45),
        inset -10px -10px 40px rgba(217, 112, 64, 0.2),
        0 0 100px rgba(244, 149, 106, 0.5),
        0 0 200px rgba(244, 149, 106, 0.22);
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.sphere::before {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px dashed rgba(244, 149, 106, 0.4);
    animation: sphereRotate 20s linear infinite;
}

.sphere::after {
    content: '';
    position: absolute;
    inset: -50px;
    border-radius: 50%;
    border: 1px dashed rgba(244, 149, 106, 0.2);
    animation: sphereRotate 30s linear infinite reverse;
}

@keyframes sphereRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    animation: fadeInUp 0.8s var(--ease-out-expo) 1.2s forwards;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
    position: relative;
    overflow: hidden;
}

.scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--primary-orange);
    animation: scrollLineMove 1.5s ease-in-out infinite;
}

@keyframes scrollLineMove {
    0% { top: -20px; }
    100% { top: 60px; }
}

.scroll-indicator span {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.45);
}

@media (max-width: 1024px) {
    .sphere-container {
        position: absolute;
        right: -10%;
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .sphere-container {
        display: none;
    }
}

/* ========================================
   Marquee Section
   ======================================== */
.marquee-section {
    padding: 30px 0;
    background: var(--dark-navy);
    overflow: hidden;
}

.marquee {
    display: flex;
    width: 100%;
    overflow: hidden;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
}

.marquee-content span {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.marquee-dot {
    color: var(--primary-orange) !important;
    font-size: 0.5rem !important;
}

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

/* ========================================
   Vision Section
   ======================================== */
.vision-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
}

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

.section-number {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-orange);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--dark-navy);
}

.section-header.light .section-title {
    color: var(--white);
}

.section-header.light .section-number {
    color: var(--primary-orange);
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--slate-light);
    margin-top: 15px;
    max-width: 500px;
}

.vision-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 80px;
    align-items: center;
}

.vision-text {
    max-width: 600px;
}

.vision-intro {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
    line-height: 1.5;
    color: var(--dark-navy);
    margin-bottom: 30px;
}

.vision-intro em {
    font-style: italic;
    color: var(--primary-orange);
}

.vision-body {
    font-size: 1.1rem;
    color: var(--slate);
    line-height: 1.8;
}

.vision-body strong {
    color: var(--dark-navy);
    font-weight: 600;
}

.vision-stats {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.vision-round-logo-wrap {
    display: flex;
    justify-content: center;
    margin-bottom: -16px;
}

.vision-round-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(244, 149, 106, 0.25);
    animation: psFloat 3.5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.stat {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 0.95rem;
    color: var(--slate);
    font-weight: 500;
}

/* Floating Text */
.floating-text-container {
    position: absolute;
    bottom: 100px;
    left: 0;
    right: 0;
    overflow: hidden;
    pointer-events: none;
}

.floating-text {
    font-size: clamp(4rem, 12vw, 10rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(15, 23, 42, 0.08);
    white-space: nowrap;
    animation: floatText 30s linear infinite;
}

@keyframes floatText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 968px) {
    .vision-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .vision-stats {
        flex-direction: row;
        justify-content: center;
    }

    .stat {
        flex: 1;
        max-width: 200px;
    }
}

@media (max-width: 600px) {
    .vision-stats {
        flex-direction: column;
    }

    .stat {
        max-width: 100%;
    }
}

/* ========================================
   Partners Section
   ======================================== */
.partners-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--off-white) 0%, #FFF0E6 100%);
}

.partners-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
}

.partner-card {
    position: relative;
    background: var(--white);
    border-radius: 5px;
    padding: 50px 40px;
    overflow: hidden;
    transition: transform var(--transition-medium), box-shadow var(--transition-medium);
}

.partner-card:hover {
    transform: translateY(-10px);
}

.deax-card:hover {
    box-shadow: 0 30px 80px rgba(244, 149, 106, 0.2);
}

.marielle-card:hover {
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.deax-card .card-glow {
    background: var(--gradient-primary);
}

.marielle-card .card-glow {
    background: linear-gradient(90deg, var(--dark-navy) 0%, var(--slate) 100%);
}

.card-content {
    position: relative;
    z-index: 1;
}

.partner-logo {
    margin-bottom: 20px;
}

.partner-logo-img {
    display: block;
    max-height: 64px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    margin-bottom: 6px;
}

.partner-logo-img--round {
    width: 80px;
    height: 80px;
    max-height: 80px;
    max-width: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-person {
    display: block;
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-style: italic;
    font-weight: 400;
    color: var(--primary-orange);
    margin-top: 2px;
}

.ci-person-name {
    font-family: var(--font-display);
    font-size: 12px;
    font-style: italic;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
    margin-top: -2px;
}

.partner-logo .logo-subtitle {
    display: block;
    font-size: 0.9rem;
    color: var(--slate);
    font-weight: 500;
    margin-top: 4px;
}

.partner-tagline {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--slate);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.partner-services {
    list-style: none;
    margin-bottom: 30px;
}

.partner-services li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 0.95rem;
    color: var(--dark-navy);
}

.partner-services svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.partner-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--dark-navy);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color var(--transition-fast), gap var(--transition-fast);
}

.partner-link:hover {
    color: var(--primary-orange);
    gap: 12px;
}

/* Partners Connection */
.partners-connection {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.connection-line {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--primary-orange), transparent);
}

.connection-symbol {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-orange);
    animation: symbolPulse 2s ease-in-out infinite;
}

@keyframes symbolPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@media (max-width: 968px) {
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .partners-connection {
        flex-direction: row;
        gap: 30px;
    }

    .connection-line {
        width: 60px;
        height: 2px;
        background: linear-gradient(to right, transparent, var(--primary-orange), transparent);
    }
}

/* ========================================
   Services Section - Dark Theme
   ======================================== */
.services-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(244, 149, 106, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(217, 112, 64, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.services-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-orange), rgba(244, 149, 106, 0.2));
}

.service-item {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    gap: 30px;
    padding: 40px 0;
    position: relative;
    align-items: start;
}

.service-item:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 90px;
    right: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.05);
}

.service-number {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-orange);
    position: relative;
    z-index: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.service-content p {
    font-size: 1rem;
    color: var(--slate-light);
    line-height: 1.7;
    max-width: 500px;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(244, 149, 106, 0.1);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-orange);
}

.service-item:hover .service-icon {
    background: var(--primary-orange);
}

.service-item:hover .service-icon svg {
    color: var(--white);
}

@media (max-width: 768px) {
    .timeline-line {
        display: none;
    }

    .service-item {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 30px;
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 5px;
        margin-bottom: 20px;
    }

    .service-item:not(:last-child)::after {
        display: none;
    }

    .service-number {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }

    .service-icon {
        position: absolute;
        top: 30px;
        right: 30px;
    }
}

/* ========================================
   Advantages Section
   ======================================== */
.advantages-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--off-white);
}

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

.advantage-card {
    background: var(--white);
    border-radius: 5px;
    padding: 40px 30px;
    text-align: center;
    transition: all var(--transition-medium);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.advantage-icon {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(244, 149, 106, 0.1) 0%, rgba(217, 112, 64, 0.05) 100%);
    border-radius: 50%;
    transition: all var(--transition-medium);
}

.advantage-card:hover .icon-bg {
    transform: scale(1.1);
    background: var(--gradient-primary);
}

.advantage-icon svg {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    color: var(--primary-orange);
    transition: color var(--transition-medium);
}

.advantage-card:hover .advantage-icon svg {
    color: var(--white);
}

.advantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 12px;
}

.advantage-card p {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.6;
}

/* Large Scroll Text */
.large-scroll-text {
    margin-top: 100px;
    overflow: hidden;
}

.scroll-text-content {
    display: flex;
    gap: 60px;
    animation: scrollText 25s linear infinite;
}

.scroll-text-content span {
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    white-space: nowrap;
    color: var(--dark-navy);
}

.scroll-text-content span.outline {
    color: transparent;
    -webkit-text-stroke: 2px var(--dark-navy);
}

@keyframes scrollText {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

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

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
    padding: var(--section-padding) 0;
    position: relative;
    overflow: hidden;
    background: var(--dark-navy);
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 30% 30%, rgba(244, 149, 106, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 70%, rgba(217, 112, 64, 0.1) 0%, transparent 40%);
    animation: gradientMove 15s ease-in-out infinite;
}

@keyframes gradientMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-5%, -5%) rotate(5deg); }
}

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

.cta-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: 1.2rem;
    color: var(--slate-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    margin-bottom: 50px;
}

.cta-contacts {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--slate-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.contact-item:hover {
    color: var(--primary-orange);
}

.contact-item svg {
    color: var(--primary-orange);
}

/* CTA How It Works */
.cta-how-it-works {
    margin-bottom: 50px;
    text-align: center;
}

.how-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 149, 106, 0.15);
    border: 1px solid rgba(244, 149, 106, 0.3);
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.how-badge svg {
    color: var(--primary-orange);
}

.how-badge span {
    color: var(--primary-orange);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.how-text {
    font-size: 1.1rem;
    color: var(--slate-light);
    line-height: 1.7;
}

.how-text strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* CTA Partner Sites */
.cta-partner-sites {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.partner-site-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 5px;
    padding: 25px 35px;
    text-decoration: none;
    transition: all var(--transition-medium);
    min-width: 300px;
}

.partner-site-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-orange);
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(244, 149, 106, 0.2);
}

.partner-site-card .site-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 149, 106, 0.1);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-medium);
}

.partner-site-card:hover .site-icon {
    background: var(--primary-orange);
}

.partner-site-card .site-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-orange);
    transition: color var(--transition-medium);
}

.partner-site-card:hover .site-icon svg {
    color: var(--white);
}

.partner-site-card .site-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.partner-site-card .site-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
}

.partner-site-card .site-type {
    font-size: 0.85rem;
    color: var(--slate);
}

.partner-site-card .site-url {
    font-size: 0.9rem;
    color: var(--primary-orange);
    font-weight: 500;
}

.partner-site-card .site-arrow {
    color: var(--slate);
    transition: all var(--transition-medium);
    flex-shrink: 0;
}

.partner-site-card:hover .site-arrow {
    color: var(--primary-orange);
    transform: translateX(5px);
}

.partner-or {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-or span {
    font-size: 1rem;
    color: var(--slate);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Reminder */
.cta-reminder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(244, 149, 106, 0.15) 0%, rgba(217, 112, 64, 0.1) 100%);
    border: 1px solid rgba(244, 149, 106, 0.2);
    border-radius: 16px;
    padding: 20px 30px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-reminder svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.cta-reminder p {
    font-size: 1rem;
    color: var(--white);
    margin: 0;
}

.cta-reminder strong {
    color: var(--primary-orange);
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-partner-sites {
        flex-direction: column;
        gap: 20px;
    }

    .partner-site-card {
        min-width: 100%;
        padding: 20px 25px;
    }

    .partner-or {
        padding: 10px 0;
    }

    .cta-reminder {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 20px;
    }
}

/* ========================================
   Footer
   ======================================== */
.footer {
    padding: 50px 0 30px;
    background: var(--darker-navy);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--slate);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 20px;
}

.footer-links a {
    color: var(--slate-light);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-orange);
}

.footer-separator {
    color: var(--slate);
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--slate);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
}

/* ========================================
   Synergy Section - The Magic
   ======================================== */
.synergy-section {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

.synergy-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.synergy-gradient {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background:
        radial-gradient(ellipse at 30% 20%, rgba(244, 149, 106, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(217, 112, 64, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(244, 149, 106, 0.05) 0%, transparent 60%);
    animation: synergyGradient 20s ease-in-out infinite;
}

@keyframes synergyGradient {
    0%, 100% { transform: translate(-50%, -50%) scale(1) rotate(0deg); }
    50% { transform: translate(-50%, -50%) scale(1.1) rotate(5deg); }
}

.synergy-particles {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(244, 149, 106, 0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(2px 2px at 60% 40%, rgba(244, 149, 106, 0.2), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(255, 255, 255, 0.15), transparent),
        radial-gradient(2px 2px at 30% 80%, rgba(244, 149, 106, 0.25), transparent),
        radial-gradient(2px 2px at 70% 20%, rgba(255, 255, 255, 0.2), transparent);
    animation: particles 30s linear infinite;
}

@keyframes particles {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100px); }
}

.synergy-section .container {
    position: relative;
    z-index: 2;
}

/* Partnership Badge */
.partnership-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(244, 149, 106, 0.2) 0%, rgba(217, 112, 64, 0.1) 100%);
    border: 1px solid rgba(244, 149, 106, 0.3);
    padding: 12px 24px;
    border-radius: 5px;
    margin-bottom: 40px;
    backdrop-filter: blur(10px);
}

.partnership-badge svg {
    color: var(--primary-orange);
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(10deg); }
}

.partnership-badge span {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Synergy Header */
.synergy-header {
    text-align: center;
    margin-bottom: 80px;
}

.synergy-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.synergy-title .title-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.synergy-title .title-gradient::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Fusion Visual */
.fusion-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 100px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.fusion-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all var(--transition-medium);
}

.fusion-left {
    background: linear-gradient(135deg, rgba(244, 149, 106, 0.2) 0%, rgba(217, 112, 64, 0.1) 100%);
    border: 2px solid rgba(244, 149, 106, 0.3);
    animation: fusionPulseLeft 3s ease-in-out infinite;
}

.fusion-right {
    background: linear-gradient(135deg, rgba(244, 149, 106, 0.15) 0%, rgba(244, 149, 106, 0.1) 100%);
    border: 2px solid rgba(244, 149, 106, 0.3);
    animation: fusionPulseRight 3s ease-in-out infinite;
}

@keyframes fusionPulseLeft {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

@keyframes fusionPulseRight {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

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

.fusion-icon {
    display: block;
    margin-bottom: 10px;
}

.fusion-icon svg {
    width: 40px;
    height: 40px;
    color: var(--white);
}

.fusion-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Fusion Center */
.fusion-center {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fusion-plus {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary-orange);
    z-index: 2;
    animation: plusPulse 2s ease-in-out infinite;
}

@keyframes plusPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

.fusion-spark {
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--primary-orange);
    border-radius: 50%;
    animation: spark 2s ease-in-out infinite;
}

.fusion-spark:nth-child(1) {
    top: 0;
    left: 50%;
    animation-delay: 0s;
}

.fusion-spark:nth-child(2) {
    bottom: 10px;
    left: 10px;
    animation-delay: 0.3s;
}

.fusion-spark:nth-child(3) {
    bottom: 10px;
    right: 10px;
    animation-delay: 0.6s;
}

@keyframes spark {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Fusion Result */
.fusion-result {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    background: var(--gradient-primary);
    box-shadow: 0 0 60px rgba(244, 149, 106, 0.4),
                0 0 120px rgba(244, 149, 106, 0.2);
    animation: resultGlow 3s ease-in-out infinite;
    margin-left: 20px;
}

@keyframes resultGlow {
    0%, 100% {
        box-shadow: 0 0 60px rgba(244, 149, 106, 0.4),
                    0 0 120px rgba(244, 149, 106, 0.2);
    }
    50% {
        box-shadow: 0 0 80px rgba(244, 149, 106, 0.5),
                    0 0 160px rgba(244, 149, 106, 0.3);
    }
}

.result-glow {
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 2px dashed rgba(244, 149, 106, 0.3);
    animation: resultRotate 10s linear infinite;
}

@keyframes resultRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.result-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
    margin-bottom: 8px;
}

.result-label {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Explanation Cards */
.synergy-explanation {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.explanation-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-medium);
    backdrop-filter: blur(10px);
}

.explanation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.explanation-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: rgba(244, 149, 106, 0.2);
}

.explanation-card:hover::before {
    transform: scaleX(1);
}

.explanation-card .card-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(244, 149, 106, 0.1);
    line-height: 1;
}

.explanation-card .card-icon {
    width: 60px;
    height: 60px;
    background: rgba(244, 149, 106, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all var(--transition-medium);
}

.explanation-card:hover .card-icon {
    background: var(--primary-orange);
}

.explanation-card .card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-orange);
    transition: color var(--transition-medium);
}

.explanation-card:hover .card-icon svg {
    color: var(--white);
}

.explanation-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.explanation-card p {
    font-size: 1rem;
    color: var(--slate-light);
    line-height: 1.7;
}

.explanation-card p strong {
    color: var(--primary-orange);
    font-weight: 600;
}

/* Synergy Statement */
.synergy-statement {
    text-align: center;
    margin-bottom: 80px;
    padding: 60px 40px;
    background: rgba(244, 149, 106, 0.05);
    border-radius: 5px;
    border: 1px solid rgba(244, 149, 106, 0.1);
    position: relative;
}

.synergy-statement blockquote {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.5;
    position: relative;
}

.synergy-statement .quote-mark {
    color: var(--primary-orange);
    font-size: 1.5em;
    opacity: 0.5;
}

.synergy-statement .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Synergy Flow */
.synergy-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 22px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    transition: all var(--transition-medium);
    width: 150px;
    min-height: 130px;
    justify-content: center;
}

.flow-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(244, 149, 106, 0.3);
    transform: translateY(-5px);
}

.flow-item.flow-final {
    background: var(--gradient-primary);
    border-color: transparent;
}

.flow-item.flow-final:hover {
    transform: translateY(-5px) scale(1.02);
}

.flow-icon {
    width: 50px;
    height: 50px;
    background: rgba(244, 149, 106, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-final .flow-icon {
    background: rgba(255, 255, 255, 0.2);
}

.flow-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-orange);
}

.flow-final .flow-icon svg {
    color: var(--white);
}

.flow-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-align: center;
}

.flow-arrow {
    color: var(--primary-orange);
    opacity: 0.5;
}

.flow-arrow svg {
    width: 24px;
    height: 24px;
}

/* Floating Words */
.synergy-floating {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.float-word {
    position: absolute;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.03);
    text-transform: uppercase;
    white-space: nowrap;
}

.float-word:nth-child(1) {
    top: 15%;
    left: -5%;
    animation: floatWord1 25s linear infinite;
}

.float-word:nth-child(2) {
    top: 50%;
    right: -10%;
    animation: floatWord2 30s linear infinite;
}

.float-word:nth-child(3) {
    bottom: 20%;
    left: 10%;
    animation: floatWord3 20s linear infinite;
}

@keyframes floatWord1 {
    0% { transform: translateX(0); }
    100% { transform: translateX(100px); }
}

@keyframes floatWord2 {
    0% { transform: translateX(0); }
    100% { transform: translateX(-100px); }
}

@keyframes floatWord3 {
    0% { transform: translateX(0) rotate(-5deg); }
    100% { transform: translateX(50px) rotate(-5deg); }
}

/* Responsive */
@media (max-width: 1024px) {
    .synergy-explanation {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fusion-visual {
        flex-direction: column;
        gap: 30px;
    }

    .fusion-result {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .synergy-flow {
        flex-direction: column;
        gap: 20px;
    }

    .flow-arrow {
        transform: rotate(90deg);
    }

    .fusion-circle {
        width: 120px;
        height: 120px;
    }

    .fusion-result {
        width: 150px;
        height: 150px;
    }

    .synergy-statement {
        padding: 40px 20px;
    }
}

/* ========================================
   Reveal Animations
   ======================================== */
.reveal-text,
.reveal-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo),
                transform 0.8s var(--ease-out-expo);
}

.reveal-text.visible,
.reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for reveal-items */
.reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-item:nth-child(4) { transition-delay: 0.3s; }
.reveal-item:nth-child(5) { transition-delay: 0.4s; }

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
        --container-padding: 20px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* ========================================
   Partnership Section
   ======================================== */
.partnership-section {
    padding: 96px 0 80px;
    background: var(--white);
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.ps-header {
    text-align: center;
    margin-bottom: 72px;
}

.ps-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 16px;
}

.ps-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--dark-navy);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.ps-title em {
    font-style: italic;
    font-family: var(--font-display);
    color: var(--primary-orange);
}

.ps-subtitle {
    font-size: 1.1rem;
    color: var(--slate);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Duo Layout */
.ps-duo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 56px;
}

/* Partner Card */
.ps-partner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 36px;
    background: var(--off-white);
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: box-shadow var(--transition-medium), transform var(--transition-medium);
    height: 100%;
}

.ps-partner:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.09);
}

/* Logo Wrap */
.ps-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

/* Brand Images */
.ps-brand-img {
    max-height: 110px;
    max-width: 220px;
    width: auto;
    object-fit: contain;
    display: block;
}

.ps-mp .ps-brand-img {
    animation: psFloat 3.5s ease-in-out infinite;
    animation-delay: 0.6s;
    filter: drop-shadow(0 12px 24px rgba(15, 23, 42, 0.18));
    width: 135px;
    height: 135px;
    max-width: 135px;
    max-height: 135px;
}

.ps-deax .ps-brand-img {
    animation: psFloat 3.5s ease-in-out infinite;
    animation-delay: 0s;
    filter: drop-shadow(0 12px 24px rgba(244, 149, 106, 0.3));
}

.ps-brand-img--round {
    border-radius: 50%;
    overflow: hidden;
    max-height: 110px;
    max-width: 110px;
    width: 110px;
    height: 110px;
    object-fit: cover;
}

@keyframes psFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
}

.ps-brand-name {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(26px, 3.5vw, 40px);
    letter-spacing: -1.5px;
    color: var(--dark-navy);
    line-height: 1;
}

.ps-by-name {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 400;
    font-style: italic;
    color: var(--slate);
    letter-spacing: 0.3px;
    margin-top: -8px;
}

.ps-mp .ps-brand-name {
    font-family: var(--font-display);
    font-weight: 700;
}

/* Role Badge */
.ps-role {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-orange);
    background: rgba(244, 149, 106, 0.1);
    border: 1px solid rgba(244, 149, 106, 0.2);
    padding: 6px 14px;
    border-radius: 4px;
    margin-bottom: 18px;
}

/* Description */
.ps-desc {
    font-size: 0.95rem;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

/* Services Mini List */
.ps-services-mini {
    list-style: none;
    width: 100%;
    margin-bottom: 28px;
    text-align: left;
}

.ps-services-mini li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--dark-navy);
    font-weight: 500;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.ps-services-mini li:last-child {
    border-bottom: none;
}

.ps-services-mini svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

/* Discount Per Partner */
.ps-discount {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(244, 149, 106, 0.08);
    border: 1px solid rgba(244, 149, 106, 0.3);
    border-radius: 6px;
    padding: 12px 20px;
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

.ps-discount-badge {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--primary-orange);
    letter-spacing: -1px;
    line-height: 1;
}

.ps-discount-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate);
}

/* Separator */
.ps-separator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    align-self: stretch;
    justify-content: center;
}

.ps-sep-line {
    flex: 1;
    width: 2px;
    min-height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(244, 149, 106, 0.35), transparent);
}

.ps-sep-x-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border: 2px solid rgba(244, 149, 106, 0.35);
    border-radius: 50%;
    background: rgba(244, 149, 106, 0.05);
    animation: sepPulse 2.8s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes sepPulse {
    0%, 100% { transform: scale(1); border-color: rgba(244, 149, 106, 0.35); }
    50% { transform: scale(1.1); border-color: rgba(244, 149, 106, 0.7); box-shadow: 0 0 20px rgba(244, 149, 106, 0.2); }
}

.ps-sep-x {
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--primary-orange);
    line-height: 1;
}

/* Total Discount Banner */
.ps-equals-bridge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 32px 0 24px;
}

.ps-equals-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(244, 149, 106, 0.25));
}

.ps-equals-line:last-child {
    background: linear-gradient(to left, transparent, rgba(244, 149, 106, 0.25));
}

.ps-equals-sign {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-orange);
    font-family: var(--font-display);
    line-height: 1;
    opacity: 0.9;
    letter-spacing: -1px;
}

.ps-total-discount {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(244, 149, 106, 0.2);
    box-shadow: 0 12px 50px rgba(244, 149, 106, 0.1), 0 2px 8px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
}

.ps-total-discount::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 3px;
    border-radius: 0 0 4px 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
}

.ps-total-discount::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(244, 149, 106, 0.05) 0%, transparent 65%);
    pointer-events: none;
}

.ps-td-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.ps-td-warning-row {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff5ef;
    border: 1px solid rgba(244, 149, 106, 0.3);
    border-radius: 50px;
    padding: 4px 14px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-orange-dark);
}

.ps-td-warning-icon {
    flex-shrink: 0;
    color: var(--primary-orange-dark);
}

.ps-td-main-line {
    font-size: 0.9rem;
    color: rgba(20, 15, 10, 0.4);
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.01em;
}

.ps-td-highlight-row {
    display: flex;
    align-items: center;
    gap: 16px;
}

.ps-td-number {
    font-size: clamp(3.2rem, 7vw, 5rem);
    font-weight: 900;
    color: var(--primary-orange-dark);
    letter-spacing: -3px;
    line-height: 1;
    font-family: var(--font-display);
}

.ps-td-underline {
    text-decoration: underline;
    text-decoration-color: var(--primary-orange);
    text-decoration-thickness: 3px;
    text-underline-offset: 7px;
    text-decoration-style: solid;
}

.ps-td-aside {
    font-size: 0.78rem;
    color: rgba(20, 15, 10, 0.4);
    font-weight: 500;
    line-height: 1.6;
    text-align: left;
    border-left: 2px solid rgba(244, 149, 106, 0.35);
    padding-left: 12px;
}

.ps-td-sub-line {
    font-size: 0.78rem;
    color: rgba(20, 15, 10, 0.35);
    font-style: italic;
    margin: 0;
    max-width: 400px;
}

@media (max-width: 900px) {
    .ps-duo {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ps-separator {
        flex-direction: row;
        align-self: auto;
        height: auto;
        gap: 16px;
    }

    .ps-sep-line {
        flex: 1;
        width: 100%;
        height: 2px;
        min-height: 0;
        background: linear-gradient(to right, transparent, rgba(244, 149, 106, 0.35), transparent);
    }

    .ps-total-discount {
        padding: 36px 28px;
    }

    .ps-td-inner {
        gap: 12px;
    }

    .ps-td-highlight-row {
        gap: 14px;
    }
}

@media (max-width: 600px) {
    .partnership-section {
        padding: 60px 0;
    }

    .ps-partner {
        padding: 32px 24px;
    }
}

/* ========================================
   Pack Partenariat Section
   ======================================== */
.pack-section {
    background: var(--dark-navy);
    overflow: hidden;
    position: relative;
}

/* Split Screen */
.pack-split {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    min-height: 480px;
    position: relative;
}

.pack-half {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 56px;
    gap: 20px;
    text-align: center;
    position: relative;
}

.pack-half-deax {
    background: linear-gradient(135deg, rgba(244, 149, 106, 0.1) 0%, rgba(217, 112, 64, 0.03) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.pack-half-mp {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo in pack */
.pack-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 4px;
}

.pack-mark {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: psFloat 3.5s ease-in-out infinite;
}

.pack-mark-deax {
    background: linear-gradient(135deg, var(--primary-orange), var(--primary-orange-dark));
    box-shadow: 0 14px 40px rgba(244, 149, 106, 0.4);
    animation-delay: 0s;
}

.pack-mark-mp {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
    animation-delay: 0.7s;
}

.pack-name {
    font-family: var(--font-primary);
    font-weight: 900;
    font-size: clamp(26px, 3vw, 38px);
    letter-spacing: -1.5px;
    color: var(--white);
    line-height: 1;
}

.pack-half-mp .pack-name {
    font-family: var(--font-display);
    font-weight: 700;
}

.pack-by-name {
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3px;
    margin-top: -6px;
}

.pack-role {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--primary-orange);
}

.pack-list {
    list-style: none;
    text-align: left;
    width: 100%;
    max-width: 260px;
}

.pack-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pack-list li:last-child {
    border-bottom: none;
}

.pack-list svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

.pack-discount-chip {
    display: inline-block;
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--primary-orange);
    background: rgba(244, 149, 106, 0.1);
    border: 1px solid rgba(244, 149, 106, 0.3);
    padding: 8px 20px;
    border-radius: 6px;
    letter-spacing: -0.5px;
    margin-top: 4px;
}

/* Centre × avec anneaux */
.pack-multiply {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}

.pack-x {
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--primary-orange);
    z-index: 2;
    position: relative;
    text-shadow: 0 0 30px rgba(244, 149, 106, 0.6);
    animation: packXPulse 2.5s ease-in-out infinite;
}

@keyframes packXPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.15); opacity: 0.85; }
}

.pack-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(244, 149, 106, 0.6);
    width: 56px;
    height: 56px;
    animation: packRingExpand 3s ease-out infinite;
}

.pack-ring-1 { animation-delay: 0s; }
.pack-ring-2 { animation-delay: 1s; }
.pack-ring-3 { animation-delay: 2s; }

@keyframes packRingExpand {
    0%   { width: 56px;  height: 56px;  opacity: 0.7; }
    100% { width: 220px; height: 220px; opacity: 0; }
}

/* Pack Banner */
.pack-banner {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 64px var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(244, 149, 106, 0.06) 0%, transparent 100%);
}

.pack-banner-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
    max-width: 720px;
}

.pack-badge-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-orange);
    background: rgba(244, 149, 106, 0.1);
    border: 1px solid rgba(244, 149, 106, 0.3);
    padding: 10px 24px;
    border-radius: 5px;
}

.pack-badge-label svg {
    animation: starSpin 5s linear infinite;
}

.pack-desc {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.65;
    font-family: var(--font-display);
    font-weight: 400;
}

.pack-total-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.pack-total-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.pack-total-num {
    font-size: clamp(2.4rem, 5vw, 3.5rem);
    font-weight: 900;
    color: var(--primary-orange);
    letter-spacing: -2px;
    line-height: 1;
    text-shadow: 0 0 30px rgba(244, 149, 106, 0.4);
}

.pack-total-sub {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.pack-divider-v {
    width: 1px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.pack-cta {
    margin-top: 8px;
}

@media (max-width: 860px) {
    .pack-split {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .pack-multiply {
        padding: 24px 0;
        height: 80px;
    }

    .pack-ring {
        width: 48px;
        height: 48px;
    }

    @keyframes packRingExpand {
        0%   { width: 48px;  height: 48px;  opacity: 0.7; }
        100% { width: 160px; height: 160px; opacity: 0; }
    }

    .pack-half {
        padding: 52px 32px;
    }

    .pack-half-deax {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .pack-half-mp {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 600px) {
    .pack-total-row {
        gap: 24px;
    }

    .pack-divider-v {
        display: none;
    }

    .pack-banner {
        padding: 48px var(--container-padding);
    }
}

/* ========================================
   Problème / Solution Section
   ======================================== */
.problem-section {
    background: var(--dark-navy);
    overflow: hidden;
    padding: 80px 0 88px;
    position: relative;
}

/* Bruit de fond subtil */
.problem-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 10% 20%, rgba(244, 149, 106, 0.05) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 90% 80%, rgba(244, 149, 106, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Titre */
.ps2-head {
    text-align: center;
    margin-bottom: 64px;
}

.ps2-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 20px;
}

.ps2-title {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

/* Mot "déraillent" avec barré animé */
.ps2-struck {
    position: relative;
    color: rgba(248, 113, 113, 0.9);
    display: inline-block;
}

.ps2-struck::after {
    content: '';
    position: absolute;
    left: 0;
    top: 52%;
    width: 100%;
    height: 3px;
    background: #f87171;
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.9s;
}

.reveal-text.visible .ps2-struck::after {
    transform: scaleX(1);
}

.ps2-dim {
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 400;
}

.ps2-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* Tableau comparatif */
.ps2-table {
    display: flex;
    flex-direction: column;
    gap: 3px;
    border-radius: 10px;
    overflow: hidden;
}

/* Chaque ligne = grille 3 colonnes */
.ps2-row {
    display: grid;
    grid-template-columns: 160px 1fr 1fr;
    gap: 3px;
}

/* Cellule de base */
.ps2-cell {
    padding: 20px 24px;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Colonne topic (libellé) */
.ps2-cell-topic {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.ps2-cell-topic svg {
    flex-shrink: 0;
    opacity: 0.5;
}

/* En-tête colonnes */
.ps2-header-row .ps2-cell {
    padding: 14px 24px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 6px;
}

.ps2-th-bad {
    color: #f87171;
    background: rgba(248, 113, 113, 0.08);
    border: 1px solid rgba(248, 113, 113, 0.15);
}

.ps2-th-good {
    color: var(--primary-orange);
    background: rgba(244, 149, 106, 0.08);
    border: 1px solid rgba(244, 149, 106, 0.15);
}

/* Cellule mauvaise (rouge) */
.ps2-cell-bad {
    background: rgba(248, 113, 113, 0.04);
    border: 1px solid rgba(248, 113, 113, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.55);
    position: relative;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.ps2-cell-bad strong {
    color: #f87171;
    font-weight: 600;
}

.ps2-cell-bad::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #f87171;
    border-radius: 6px 0 0 6px;
    opacity: 0.4;
}

.ps2-row:hover .ps2-cell-bad {
    background: rgba(248, 113, 113, 0.07);
    border-color: rgba(248, 113, 113, 0.2);
}

/* Cellule bonne (pêche) */
.ps2-cell-good {
    background: rgba(244, 149, 106, 0.05);
    border: 1px solid rgba(244, 149, 106, 0.12);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
    transition: background var(--transition-fast), border-color var(--transition-fast);
}

.ps2-cell-good strong {
    color: var(--primary-orange);
    font-weight: 600;
}

.ps2-cell-good::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-orange);
    border-radius: 6px 0 0 6px;
    opacity: 0.5;
}

.ps2-row:hover .ps2-cell-good {
    background: rgba(244, 149, 106, 0.09);
    border-color: rgba(244, 149, 106, 0.22);
}

/* Stagger des lignes — les reveal-item dans ps2-table */
.ps2-table .reveal-item:nth-child(1) { transition-delay: 0s; }
.ps2-table .reveal-item:nth-child(2) { transition-delay: 0.08s; }
.ps2-table .reveal-item:nth-child(3) { transition-delay: 0.16s; }
.ps2-table .reveal-item:nth-child(4) { transition-delay: 0.24s; }

/* Animation d'entrée des cellules internes quand la ligne devient visible */
.ps2-row .ps2-cell-bad,
.ps2-row .ps2-cell-good {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.5s var(--ease-out-expo),
                transform 0.5s var(--ease-out-expo),
                background var(--transition-fast),
                border-color var(--transition-fast);
}

.ps2-row.visible .ps2-cell-bad {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.05s;
}

.ps2-row.visible .ps2-cell-good {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

@media (max-width: 860px) {
    .ps2-row {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .ps2-cell-topic {
        grid-column: 1 / -1;
        border-radius: 6px 6px 0 0;
    }

    .ps2-cell-bad,
    .ps2-cell-good {
        border-radius: 0 0 6px 6px;
    }

    .ps2-header-row {
        display: none;
    }
}

@media (max-width: 560px) {
    .ps2-row {
        grid-template-columns: 1fr;
    }

    .problem-section {
        padding: 60px 0 72px;
    }

    .ps2-head {
        margin-bottom: 40px;
    }
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    background: var(--off-white);
    padding: var(--section-padding) var(--container-padding);
}

.contact-header {
    max-width: 560px;
    margin-bottom: 64px;
}

.contact-eyebrow {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.contact-header h2 {
    font-size: clamp(34px, 5vw, 52px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    color: var(--dark-navy);
    margin-bottom: 16px;
}

.contact-header h2 em {
    font-style: italic;
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--primary-orange);
}

.contact-header p {
    font-size: 17px;
    color: var(--slate);
    line-height: 1.7;
    margin-bottom: 24px;
}

.contact-trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.ct-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-orange);
    background: rgba(244, 149, 106, 0.1);
    border: 1px solid rgba(244, 149, 106, 0.3);
    padding: 6px 12px;
    border-radius: 3px;
}

.ct-badge svg {
    color: var(--primary-orange);
    flex-shrink: 0;
}

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

/* Contact Infos */
.contact-infos {
    background: #111111;
    border-radius: 5px;
    padding: 40px 36px;
}

.ci-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px 0;
}

.ci-block:first-of-type {
    padding-top: 0;
}

.ci-logo-img {
    width: 44px;
    height: 44px;
    max-width: 44px;
    max-height: 44px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
}

.ci-logo-img--round {
    border-radius: 50%;
}

.ci-block-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    overflow: hidden;
}

.ci-block-text a {
    overflow-wrap: break-word;
    word-break: break-all;
}

.ci-block-text strong {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
}

.ci-block-text span {
    font-size: 12px;
    color: rgba(148, 163, 184, 0.75);
    letter-spacing: 0.2px;
}

.ci-block-text a {
    font-size: 14px;
    color: var(--primary-orange);
    text-decoration: none;
    margin-top: 6px;
    transition: opacity var(--transition-fast);
}

.ci-block-text a:hover {
    opacity: 0.75;
}

.ci-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.07);
}

.ci-note {
    font-size: 13px;
    color: rgba(148, 163, 184, 0.6);
    line-height: 1.65;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin-top: 8px;
}

.ci-note a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.ci-note a:hover {
    color: var(--primary-orange);
}

/* Sites cards */
.ci-sites {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ci-sites-label {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: none;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--font-display);
    font-style: italic;
    text-align: center;
    margin-bottom: 16px;
    margin-bottom: 14px;
}

.ci-sites-cards {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ci-site-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.ci-site-card img {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    object-fit: contain;
}

.ci-site-card-text {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 0;
}

.ci-site-card-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.ci-site-card-text span {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
}

.ci-site-arrow {
    flex-shrink: 0;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* DEAX — orange */
.ci-site-card--deax {
    background: rgba(217, 112, 64, 0.15);
    border-color: rgba(217, 112, 64, 0.35);
}

.ci-site-card--deax .ci-site-arrow {
    color: rgba(217, 112, 64, 0.7);
}

.ci-site-card--deax:hover {
    background: rgba(217, 112, 64, 0.32);
    border-color: rgba(217, 112, 64, 0.9);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(217, 112, 64, 0.35);
}

.ci-site-card--deax:hover .ci-site-arrow {
    transform: translate(3px, -3px);
    color: var(--primary-orange-dark);
}

/* Marielle — pêche */
.ci-site-card--mp {
    background: rgba(244, 149, 106, 0.12);
    border-color: rgba(244, 149, 106, 0.3);
}

.ci-site-card--mp .ci-site-arrow {
    color: rgba(244, 149, 106, 0.7);
}

.ci-site-card--mp:hover {
    background: rgba(244, 149, 106, 0.28);
    border-color: rgba(244, 149, 106, 0.85);
    transform: scale(1.03);
    box-shadow: 0 8px 32px rgba(244, 149, 106, 0.32);
}

.ci-site-card--mp:hover .ci-site-arrow {
    transform: translate(3px, -3px);
    color: var(--primary-orange);
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cf-field label {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-navy);
    letter-spacing: 0.3px;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
    padding: 14px 16px;
    border: 1px solid #cccccc;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--dark-navy);
    background: var(--white);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

/* Option Cards */
.cf-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.cf-option {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 18px 16px;
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    cursor: pointer;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
    text-align: left;
    font-family: var(--font-primary);
}

.cf-option:hover {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(244, 149, 106, 0.08);
}

.cf-option.selected {
    border-color: var(--primary-orange);
    background: rgba(244, 149, 106, 0.05);
    box-shadow: 0 0 0 3px rgba(244, 149, 106, 0.12);
}

.cf-opt-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(15, 23, 42, 0.05);
    border-radius: 8px;
    color: var(--dark-navy);
    transition: background var(--transition-fast), color var(--transition-fast);
}

.cf-option.selected .cf-opt-icon {
    background: var(--primary-orange);
    color: var(--white);
}

.cf-opt-main {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.3;
}

.cf-opt-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--slate);
    letter-spacing: 0.2px;
}

.cf-reassure {
    font-size: 13px;
    color: var(--slate);
    text-align: center;
    margin-top: -4px;
}

@media (max-width: 640px) {
    .cf-options {
        grid-template-columns: 1fr;
    }
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(244, 149, 106, 0.1);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder {
    color: var(--slate-light);
}

.cf-field textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
    box-shadow: 0 6px 20px rgba(244, 149, 106, 0.3);
    width: fit-content;
}

.cf-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(244, 149, 106, 0.4);
}

.cf-submit:active {
    transform: translateY(0);
}

.cf-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cf-feedback {
    display: none;
    font-size: 14px;
    line-height: 1.6;
    padding: 14px 18px;
    border-radius: 10px;
}

.cf-feedback.success {
    display: block;
    background: rgba(34, 197, 94, 0.08);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.cf-feedback.error {
    display: block;
    background: rgba(239, 68, 68, 0.07);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, 0.15);
}

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

    .cf-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .contact-infos {
        padding: 28px 20px;
    }

    .ci-block {
        gap: 12px;
    }

    .ci-logo-img {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .ci-block-text {
        min-width: 0;
    }

    .ci-block-text a {
        word-break: break-all;
    }
}
