/* ===================================
   VARIABLES & RESET
   =================================== */
:root {
    /* Color Palette - Fintech Premium */
    --noir-mat: #0c0c0c;
    --noir-velours: #181818;
    --or-24k: #cfb53b;
    --or-lumineux: #ffd700;
    --blanc-pur: #ffffff;
    --gris-titanium: #333333;
    --or-pale: #e8d7a0;

    /* Trust & Confidence Blues */
    --bleu-confiance: #1e40af;
    --bleu-royal: #2563eb;
    --bleu-clair: #3b82f6;
    --bleu-pale: #60a5fa;

    /* Shadows for Neomorphic Design */
    --shadow-light: rgba(255, 255, 255, 0.05);
    --shadow-dark: rgba(0, 0, 0, 0.7);
    --shadow-inset-light: rgba(255, 255, 255, 0.03);
    --shadow-inset-dark: rgba(0, 0, 0, 0.5);
    --shadow-blue: rgba(30, 64, 175, 0.3);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background: var(--noir-mat);
    color: var(--blanc-pur);
    overflow: hidden;
    height: 100vh;
    position: relative;
}

/* ===================================
   [F6] LOADING SCREEN
   =================================== */
.loading-screen {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--noir-mat);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    animation: loadingPulse 1.5s ease-in-out infinite;
}

.loading-f, .loading-f2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
}

.loading-f {
    color: var(--blanc-pur);
    animation: loadingLetterLeft 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-sep {
    font-size: 3rem;
    font-weight: 200;
    color: var(--bleu-royal);
    opacity: 0.4;
    animation: loadingSepFade 0.8s 0.3s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.loading-f2 {
    color: var(--or-24k);
    animation: loadingLetterRight 0.8s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes loadingLetterLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes loadingLetterRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes loadingSepFade {
    from { opacity: 0; transform: scaleY(0); }
    to { opacity: 0.4; transform: scaleY(1); }
}

@keyframes loadingPulse {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.loading-bar {
    width: 180px;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 2px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--or-24k), var(--bleu-royal));
    border-radius: 2px;
    animation: loadingProgress 1.8s 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loadingProgress {
    0% { width: 0%; }
    60% { width: 80%; }
    100% { width: 100%; }
}

.loading-text {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.3);
    animation: loadingTextFade 0.6s 0.5s both;
}

@keyframes loadingTextFade {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ===================================
   [F7] CUSTOM CURSOR
   =================================== */
@media (hover: hover) and (pointer: fine) {
    body {
        cursor: none;
    }

    .custom-cursor {
        position: fixed;
        top: 0;
        left: 0;
        width: 20px;
        height: 20px;
        border: 1.5px solid rgba(207, 181, 59, 0.5);
        border-radius: 50%;
        pointer-events: none;
        z-index: 100000;
        transition: width 0.2s ease, height 0.2s ease, border-color 0.2s ease, background 0.2s ease, transform 0.08s ease-out;
        transform: translate(-50%, -50%);
        mix-blend-mode: difference;
    }

    .custom-cursor.hovering {
        width: 44px;
        height: 44px;
        border-color: var(--or-24k);
        background: rgba(207, 181, 59, 0.08);
    }

    .custom-cursor-dot {
        position: fixed;
        top: 0;
        left: 0;
        width: 5px;
        height: 5px;
        background: var(--or-24k);
        border-radius: 50%;
        pointer-events: none;
        z-index: 100001;
        transform: translate(-50%, -50%);
        transition: opacity 0.15s ease;
    }

    a, button, .dot, .petal, .cta-button, .contact-card, .partner-logo, .network-item, .trust-card, .sim-btn, .sim-chip, .sim-radio-card, select, input, textarea {
        cursor: none !important;
    }
}

/* ===================================
   ACCESSIBILITY
   =================================== */
.skip-to-content {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100000;
    background: var(--or-24k);
    color: var(--noir-mat);
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 10px 10px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Focus-visible for all interactive elements */
:focus-visible {
    outline: 2px solid var(--or-24k);
    outline-offset: 3px;
}

.dot:focus-visible {
    outline: 2px solid var(--or-24k);
    outline-offset: 4px;
    border-radius: 50%;
}

.cta-button:focus-visible,
.sim-btn:focus-visible,
.sim-chip:focus-visible,
.sim-radio-card:focus-visible {
    outline: 2px solid var(--or-24k);
    outline-offset: 3px;
}

.petal:focus-visible {
    outline: 2px solid var(--or-24k);
    outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: none; /* handled by box-shadow in form styles */
}

/* ===================================
   FOOTER
   =================================== */
.site-footer {
    width: 100%;
    padding: 1.25rem 0 0.75rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-sep {
    opacity: 0.3;
}

.footer-fsma {
    font-weight: 500;
}

.footer-link {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--or-24k);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4rem;
    background: rgba(12, 12, 12, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(207, 181, 59, 0.1);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--blanc-pur);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-name {
    color: var(--blanc-pur);
}

.logo-separator {
    color: var(--bleu-royal);
    opacity: 0.5;
    font-weight: 300;
}

.logo-title {
    text-shadow: 0 0 15px var(--shadow-blue);
}

.nav-dots {
    display: flex;
    gap: 1rem;
    align-items: center;
    position: relative;
}

/* [F4] Progress indicator between dots */
.dots-progress-track {
    position: absolute;
    top: 50%;
    left: 7px;
    right: 7px;
    height: 2px;
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-50%);
    border-radius: 2px;
    z-index: 0;
    overflow: hidden;
}

.dots-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--or-24k), var(--bleu-royal));
    border-radius: 2px;
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 0 8px rgba(207, 181, 59, 0.4);
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--noir-velours);
    border: 2px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        3px 3px 6px var(--shadow-dark),
        -3px -3px 6px var(--shadow-light);
    position: relative;
    z-index: 1;
}

.dot:hover {
    border-color: var(--or-pale);
    transform: scale(1.15);
    box-shadow:
        3px 3px 8px var(--shadow-dark),
        -3px -3px 8px var(--shadow-light),
        0 0 15px rgba(207, 181, 59, 0.3);
}

/* Dot Tooltips */
.dot::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    padding: 0.4rem 0.75rem;
    background: rgba(24, 24, 24, 0.95);
    border: 1px solid rgba(207, 181, 59, 0.3);
    border-radius: 8px;
    color: var(--or-pale);
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    z-index: 100;
}

.dot:hover::before {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.dot.active {
    background: linear-gradient(135deg, var(--or-24k) 0%, var(--or-lumineux) 100%);
    border-color: var(--or-lumineux);
    box-shadow:
        0 0 25px rgba(207, 181, 59, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.3),
        3px 3px 8px var(--shadow-dark);
    transform: scale(1.2);
}

.dot.active::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px solid rgba(207, 181, 59, 0.3);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

/* Hamburger & Mobile Menu (hidden on desktop) */
.hamburger-btn {
    display: none;
}

.mobile-menu {
    display: none;
}

/* ===================================
   HORIZONTAL SCROLL CONTAINER
   =================================== */
.scroll-container {
    display: flex;
    height: 100vh;
    width: 500vw;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.section {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 4rem 3rem 4rem;
    position: relative;
    overflow: hidden;
}

/* Parallax transitions */
.section .content-wrapper {
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
}

/* Section leaving (going out of view) */
.section:not(.active-section) .content-wrapper {
    opacity: 0.2;
    transform: scale(0.96);
}

/* Active section */
.section.active-section .content-wrapper {
    opacity: 1;
    transform: scale(1);
}

.content-wrapper {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

/* ===================================
   NEOMORPHIC ELEMENTS
   =================================== */
.neomorphic {
    background: var(--noir-velours);
    box-shadow:
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.neomorphic:hover {
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 30px rgba(207, 181, 59, 0.1);
    border-color: rgba(207, 181, 59, 0.2);
}

.neomorphic:active {
    box-shadow:
        inset 4px 4px 8px var(--shadow-inset-dark),
        inset -4px -4px 8px var(--shadow-inset-light);
}

/* ===================================
   TYPOGRAPHY
   =================================== */
.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: -0.5px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--or-24k), transparent);
    border-radius: 2px;
}

.services-section .section-title {
    margin-bottom: 3rem;
    margin-top: -2rem;
}

.gold-text {
    color: var(--or-24k);
    text-shadow: 0 0 20px rgba(207, 181, 59, 0.3);
}

.blue-text {
    color: var(--bleu-royal);
    text-shadow: 0 0 20px var(--shadow-blue);
    font-weight: 600;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    background:
        linear-gradient(135deg,
            rgba(12, 12, 12, 0.95) 0%,
            rgba(24, 24, 24, 0.92) 50%,
            rgba(12, 12, 12, 0.95) 100%
        ),
        radial-gradient(ellipse at 20% 50%, rgba(30, 64, 175, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(207, 181, 59, 0.05) 0%, transparent 50%),
        var(--noir-mat);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(207,181,59,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-section .content-wrapper {
    position: relative;
    z-index: 1;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    font-weight: 500;
    z-index: 10;
    animation: fadeInUp 1s ease-out 2s both;
}

.scroll-text {
    letter-spacing: 1px;
    text-transform: uppercase;
}

.scroll-arrow {
    color: var(--or-24k);
    font-size: 1.25rem;
    animation: bounce-horizontal 2s ease-in-out infinite;
}

.scroll-arrow.left {
    animation-delay: 0s;
}

.scroll-arrow.right {
    animation-delay: 1s;
}

@keyframes bounce-horizontal {
    0%, 100% { transform: translateX(0); opacity: 0.5; }
    50% { transform: translateX(10px); opacity: 1; }
}

/* Decorative Particles */
.particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    color: var(--or-24k);
    font-size: 1.5rem;
    opacity: 0.15;
    animation: float-particle 15s ease-in-out infinite;
}

.particle-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    top: 70%;
    left: 85%;
    animation-delay: 3s;
    animation-duration: 15s;
}

.particle-3 {
    top: 35%;
    right: 15%;
    animation-delay: 6s;
    animation-duration: 18s;
}

.particle-4 {
    bottom: 25%;
    left: 20%;
    animation-delay: 2s;
    animation-duration: 14s;
}

.particle-5 {
    top: 80%;
    right: 25%;
    animation-delay: 8s;
    animation-duration: 16s;
}

@keyframes float-particle {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.15;
    }
    25% {
        transform: translate(20px, -30px) rotate(90deg);
        opacity: 0.25;
    }
    50% {
        transform: translate(-15px, -60px) rotate(180deg);
        opacity: 0.15;
    }
    75% {
        transform: translate(10px, -30px) rotate(270deg);
        opacity: 0.25;
    }
}

.hero-content {
    flex: 1;
    padding-right: 4rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-weight: 300;
}

.slogan-trio {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.slogan-word {
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.5px;
    color: var(--or-pale);
    opacity: 0;
    animation: fadeInSlogan 0.6s ease-out forwards;
}

.slogan-word.blue-text {
    color: var(--bleu-royal) !important;
}

.slogan-word:nth-child(1) { animation-delay: 0.2s; }
.slogan-word:nth-child(2) { animation-delay: 0.4s; }
.slogan-word:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeInSlogan {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.name-highlight {
    background: linear-gradient(135deg, var(--or-lumineux) 0%, var(--bleu-clair) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    filter: brightness(1.3);
}

.credentials {
    margin-bottom: 2.5rem;
}

.hero-subtitle {
    margin-bottom: 1.25rem;
}

.expertise-line {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 0.75rem;
    margin-bottom: 2rem;
}

.hero-description {
    margin-top: 2rem;
    max-width: 700px;
}

.hero-description p {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem;
}

.hero-description strong {
    font-weight: 600;
}

.pillars {
    display: flex;
    gap: 2.5rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.pillar {
    font-size: 1.125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
}

.tagline {
    font-size: 1.125rem;
    color: var(--or-pale);
    font-style: italic;
    margin-top: 2rem !important;
    padding-left: 1.5rem;
    border-left: 3px solid var(--or-24k);
}

.hero-cta-group {
    display: flex;
    gap: 1.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.hero-section .content-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.hero-visual {
    flex: 0 0 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
}

.floating-card {
    padding: 3rem;
    text-align: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.card-header {
    margin-bottom: 1rem;
}

.card-label {
    font-size: 0.875rem;
    color: var(--or-pale);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.card-value {
    font-size: 5rem;
    font-weight: 700;
    color: var(--blanc-pur);
    margin: 1rem 0;
}

.card-footer {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.blue-card {
    border: 1px solid rgba(37, 99, 235, 0.3);
    background: rgba(24, 24, 24, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blue-card:hover {
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 30px var(--shadow-blue),
        inset 0 0 20px rgba(37, 99, 235, 0.1);
    border-color: var(--bleu-royal);
    background: rgba(30, 64, 175, 0.1);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(24, 24, 24, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid var(--bleu-royal);
    border-radius: 50px;
    box-shadow:
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light),
        0 0 20px var(--shadow-blue),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    animation-delay: 3s;
}

.badge-check {
    font-size: 1.25rem;
    color: var(--bleu-royal);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
}

.badge-text {
    font-size: 0.95rem;
    color: var(--blanc-pur);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* ===================================
   BUTTONS
   =================================== */
.cta-button {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--noir-mat);
    background: linear-gradient(135deg, var(--or-24k) 0%, var(--or-lumineux) 100%);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.cta-button .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.cta-button:hover .arrow {
    transform: translateX(5px);
}

.full-width {
    width: 100%;
    justify-content: center;
}

.blue-accent {
    background: linear-gradient(135deg, var(--bleu-royal) 0%, var(--bleu-clair) 100%);
    color: var(--blanc-pur);
    position: relative;
    overflow: visible;
}

.blue-accent::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--or-lumineux), var(--or-24k));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.blue-accent:hover::after {
    opacity: 1;
}

.blue-accent:hover {
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 30px var(--shadow-blue),
        0 0 40px rgba(207, 181, 59, 0.3);
}

.gold-accent {
    background: linear-gradient(135deg, var(--or-24k) 0%, var(--or-lumineux) 100%);
    color: var(--noir-mat);
}

.gold-accent:hover {
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 35px rgba(207, 181, 59, 0.5);
    transform: translateY(-3px);
}

/* ===================================
   SERVICES SECTION - SUNFLOWER
   =================================== */
.services-section {
    background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

/* Particle container */
.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212, 175, 55, 1) 0%, rgba(212, 175, 55, 0.7) 40%, rgba(212, 175, 55, 0.3) 70%, transparent 100%);
    box-shadow:
        0 0 12px rgba(212, 175, 55, 0.8),
        0 0 20px rgba(212, 175, 55, 0.4);
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

@keyframes float1 {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 0.3;
    }
    50% {
        transform: translate(var(--tx), var(--ty));
        opacity: 1;
    }
}
@keyframes float2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: translate(var(--tx), var(--ty)) rotate(180deg);
        opacity: 1;
    }
}
@keyframes float3 {
    0%, 100% {
        transform: translate(0, 0) scale(0.8);
        opacity: 0.3;
    }
    25% {
        transform: translate(calc(var(--tx) * 0.5), calc(var(--ty) * 0.5)) scale(1.2);
        opacity: 0.8;
    }
    75% {
        transform: translate(calc(var(--tx) * -0.3), calc(var(--ty) * -0.3)) scale(1);
        opacity: 0.9;
    }
}

.services-display-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    min-height: 600px;
    padding: 0 2rem;
    transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.services-display-wrapper.service-active {
    justify-content: space-around;
    gap: 2rem;
}


.sunflower-container {
    position: relative;
    width: 600px;
    height: 600px;
    flex-shrink: 0;
    transition: all 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-display-wrapper.service-active .sunflower-container {
    transform: translateX(-8%);
}

.sunflower-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--or-24k), var(--or-lumineux));
    z-index: 10;
    box-shadow:
        8px 8px 16px var(--shadow-dark),
        -8px -8px 16px var(--shadow-light),
        0 0 30px rgba(207, 181, 59, 0.4);
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.services-display-wrapper.service-active .sunflower-center {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.6;
}

.center-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--noir-mat);
    text-align: center;
    padding: 1rem;
}

.petal {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 5;
    /* Neomorphic effect */
    box-shadow:
        -5px -5px 15px rgba(255, 255, 255, 0.05),
        5px 5px 15px rgba(0, 0, 0, 0.5),
        inset -2px -2px 5px rgba(255, 255, 255, 0.02);
}

.petal:hover {
    transform: translateY(-5px) scale(1.05);
    z-index: 8;
    box-shadow:
        -5px -5px 15px rgba(255, 255, 255, 0.05),
        5px 5px 20px rgba(0, 0, 0, 0.6),
        0 10px 30px rgba(212, 175, 55, 0.3);
}

/* Inactive petals when one is selected */
.services-display-wrapper.service-active .petal:not(.active) {
    opacity: 0.5;
}

.petal.active {
    z-index: 9;
    /* Golden ring with pulse */
    box-shadow:
        -5px -5px 15px rgba(255, 255, 255, 0.05),
        5px 5px 20px rgba(0, 0, 0, 0.6),
        0 0 0 3px rgba(212, 175, 55, 0.6),
        0 0 30px rgba(212, 175, 55, 0.5);
    animation: pulseRing 2s ease-in-out infinite;
}

@keyframes pulseRing {
    0%, 100% {
        box-shadow:
            -5px -5px 15px rgba(255, 255, 255, 0.05),
            5px 5px 20px rgba(0, 0, 0, 0.6),
            0 0 0 3px rgba(212, 175, 55, 0.6),
            0 0 30px rgba(212, 175, 55, 0.5);
    }
    50% {
        box-shadow:
            -5px -5px 15px rgba(255, 255, 255, 0.05),
            5px 5px 20px rgba(0, 0, 0, 0.6),
            0 0 0 4px rgba(212, 175, 55, 0.8),
            0 0 40px rgba(212, 175, 55, 0.7);
    }
}

.petal-icon {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    transition: transform 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.petal-icon svg {
    width: 2rem;
    height: 2rem;
}

/* SVG Icon Sizing */
.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
}

.network-icon svg {
    width: 1.75rem;
    height: 1.75rem;
    flex-shrink: 0;
}

.trust-icon-large svg {
    width: 1.5rem;
    height: 1.5rem;
}

.contact-item-icon svg {
    width: 1.75rem;
    height: 1.75rem;
}

/* Softer icon colors for contact cards */
.contact-item-icon.blue-text {
    color: var(--bleu-pale);
    text-shadow: none;
    opacity: 0.7;
}

.contact-item-icon.gold-text {
    color: var(--or-pale);
    text-shadow: none;
    opacity: 0.7;
}

.contact-item:hover .contact-item-icon.blue-text {
    opacity: 0.9;
}

.contact-item:hover .contact-item-icon.gold-text {
    opacity: 0.9;
}

.stat-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

/* Softer stat icon colors */
.stat-icon.blue-text {
    color: var(--bleu-pale);
    text-shadow: none;
    opacity: 0.65;
}

.stat-icon.gold-text {
    color: var(--or-pale);
    text-shadow: none;
    opacity: 0.65;
}

.social-icon-link svg {
    width: 1.15rem;
    height: 1.15rem;
}

.badge-check svg {
    width: 1.1rem;
    height: 1.1rem;
}

.petal.active .petal-icon {
    animation: iconPulse 1.5s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

.petal-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.petal-number {
    font-size: 0.6rem;
    color: var(--or-24k);
    font-weight: 700;
    opacity: 0.7;
}

/* Position each petal in a perfect pentagon (72° apart) */
.petal-1 {
    top: 12%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.petal-1:hover {
    transform: translate(-50%, calc(-50% - 5px)) scale(1.05);
}

.petal-1.active {
    transform: translate(-50%, -50%);
}

.petal-2 {
    top: 38%;
    left: 86%;
    transform: translate(-50%, -50%);
}

.petal-2:hover {
    transform: translate(-50%, calc(-50% - 5px)) scale(1.05);
}

.petal-2.active {
    transform: translate(-50%, -50%);
}

.petal-3 {
    top: 81%;
    left: 72%;
    transform: translate(-50%, -50%);
}

.petal-3:hover {
    transform: translate(-50%, calc(-50% - 5px)) scale(1.05);
}

.petal-3.active {
    transform: translate(-50%, -50%);
}

.petal-4 {
    top: 81%;
    left: 28%;
    transform: translate(-50%, -50%);
}

.petal-4:hover {
    transform: translate(-50%, calc(-50% - 5px)) scale(1.05);
}

.petal-4.active {
    transform: translate(-50%, -50%);
}

.petal-5 {
    top: 38%;
    left: 14%;
    transform: translate(-50%, -50%);
}

.petal-5:hover {
    transform: translate(-50%, calc(-50% - 5px)) scale(1.05);
}

.petal-5.active {
    transform: translate(-50%, -50%);
}

/* Service Details Cards */
.service-details-container {
    width: 0;
    max-width: 500px;
    max-height: 70vh;
    overflow: hidden;
    transition: width 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
    display: none;
    border-radius: 20px;
    will-change: width;
}

.service-details-container.active {
    width: 45%;
    overflow-y: auto;
    overflow-x: hidden;
    display: block;
}

/* Hide scrollbar but keep functionality */
.service-details-container::-webkit-scrollbar {
    width: 8px;
}

.service-details-container::-webkit-scrollbar-track {
    background: transparent;
}

.service-details-container::-webkit-scrollbar-thumb {
    background: rgba(207, 181, 59, 0.3);
    border-radius: 10px;
}

.service-details-container::-webkit-scrollbar-thumb:hover {
    background: rgba(207, 181, 59, 0.5);
}

.service-detail-card {
    padding: 2rem;
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    display: none;
    overflow: hidden;
    border-radius: 20px;
    /* Glassmorphism */
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.service-detail-card.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: all;
    display: block;
    animation: slideInBounce 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

@keyframes slideInBounce {
    0% {
        opacity: 0;
        transform: translateX(50px);
    }
    70% {
        transform: translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--or-24k);
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.close-btn:hover {
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--or-24k);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

/* Navigation buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid rgba(212, 175, 55, 0.4);
    color: var(--or-24k);
    font-size: 1.5rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 10;
    opacity: 0.7;
}

.nav-prev {
    left: -50px;
}

.nav-next {
    right: -50px;
}

.nav-btn:hover {
    opacity: 1;
    background: rgba(212, 175, 55, 0.3);
    border-color: var(--or-24k);
    transform: translateY(-50%) scale(1.15);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.nav-btn:active {
    transform: translateY(-50%) scale(0.95);
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--or-pale);
    text-align: left;
}

.service-intro {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    line-height: 1.6;
    text-align: left;
}

.service-details {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.service-details li {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
}

.service-detail-card.active .service-details li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger animation for list items */
.service-detail-card.active .service-details li:nth-child(1) { transition-delay: 0.15s; }
.service-detail-card.active .service-details li:nth-child(2) { transition-delay: 0.25s; }
.service-detail-card.active .service-details li:nth-child(3) { transition-delay: 0.35s; }
.service-detail-card.active .service-details li:nth-child(4) { transition-delay: 0.45s; }
.service-detail-card.active .service-details li:nth-child(5) { transition-delay: 0.55s; }

.service-details li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--or-24k);
    font-weight: 700;
    transition: transform 0.3s ease;
}

.service-details li:hover::before {
    transform: translateX(3px);
}

.service-details li strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
}

.service-highlight {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 0.9rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
}

.blue-border {
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.blue-border:hover {
    border-color: var(--bleu-royal);
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 25px var(--shadow-blue);
}

.gold-border {
    border: 1px solid rgba(207, 181, 59, 0.15);
}

.gold-border:hover {
    border-color: var(--or-24k);
}

.blue-icon {
    filter: drop-shadow(0 0 10px var(--shadow-blue));
}

.gold-icon {
    filter: drop-shadow(0 0 10px rgba(207, 181, 59, 0.3));
}

/* ===================================
   PROCESS SECTION
   =================================== */
.process-timeline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 4rem;
    position: relative;
}

.process-step {
    flex: 1;
    text-align: center;
    z-index: 2;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--or-24k);
    border-radius: 50%;
}

.process-step h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--blanc-pur);
}

.process-step p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

.process-connector {
    flex: 0 0 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--or-24k), var(--or-pale));
    position: relative;
    z-index: 1;
}

/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    background: linear-gradient(135deg, rgba(12, 12, 12, 0.98) 0%, rgba(24, 24, 24, 0.95) 100%);
}

.about-section {
    align-items: flex-start;
    padding-top: 8rem;
}

.about-section .content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.about-subtitle {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    color: var(--blanc-pur);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}

.about-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--or-24k), var(--or-lumineux));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(207, 181, 59, 0.5);
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ---- About Hero (Profile Banner) ---- */
.about-hero {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(26, 26, 26, 0.6);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 1.5rem 2rem;
    border: 1px solid rgba(207, 181, 59, 0.2);
    box-shadow:
        10px 10px 24px var(--shadow-dark),
        -10px -10px 24px var(--shadow-light),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    transition: border-color 0.4s ease;
    width: 100%;
    max-width: 1400px;
}

.about-hero:hover {
    border-color: rgba(207, 181, 59, 0.35);
}

/* Photo Placeholder */
.profile-photo-frame {
    flex-shrink: 0;
    position: relative;
    width: 120px;
    height: 120px;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.9), rgba(12, 12, 12, 0.9));
    border: 2px solid rgba(207, 181, 59, 0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.photo-placeholder::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 22px;
    background: conic-gradient(from 0deg, var(--or-24k), var(--bleu-royal), var(--or-24k));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.about-hero:hover .photo-placeholder::before {
    opacity: 0.6;
}

.about-hero:hover .photo-placeholder {
    border-color: transparent;
    box-shadow: 0 0 30px rgba(207, 181, 59, 0.15);
}

.placeholder-icon {
    width: 48px;
    height: 48px;
    color: rgba(207, 181, 59, 0.4);
    transition: color 0.4s ease;
}

.about-hero:hover .placeholder-icon {
    color: rgba(207, 181, 59, 0.6);
}

.placeholder-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: 500;
}

.photo-frame-glow {
    position: absolute;
    inset: -15px;
    border-radius: 30px;
    background: radial-gradient(circle, rgba(207, 181, 59, 0.08) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-hero:hover .photo-frame-glow {
    opacity: 1;
}

/* Profile Hero Content */
.profile-hero-content {
    flex: 1;
}

.profile-hero-content .section-title {
    font-size: 2rem;
}

.profile-role {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--or-pale);
    margin-bottom: 0.25rem;
}

.profile-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 1rem;
}

.profile-bio {
    font-size: 0.92rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    max-width: 600px;
}

/* Stats Bar */
.profile-stats-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    background: rgba(12, 12, 12, 0.5);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    width: fit-content;
}

.profile-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.2rem;
}

.profile-stat-number {
    font-size: 1.6rem;
    font-weight: 700;
    font-family: var(--font-display);
    line-height: 1;
}

.profile-stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    white-space: nowrap;
}

.profile-stat-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent, rgba(207, 181, 59, 0.3), transparent);
}

/* ---- About Tabs ---- */
.about-tabs {
    display: flex;
    align-items: center;
    gap: 4px;
    width: 100%;
    max-width: 1400px;
    background: rgba(20, 20, 20, 0.6);
    border-radius: 14px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.3);
    position: relative;
}

.about-tab {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.5);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.about-tab svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.about-tab:hover {
    color: rgba(255, 255, 255, 0.8);
}

.about-tab:hover svg {
    opacity: 0.8;
}

.about-tab.active {
    color: var(--or-24k);
}

.about-tab.active svg {
    opacity: 1;
    color: var(--or-24k);
}

.tab-indicator {
    position: absolute;
    top: 5px;
    bottom: 5px;
    left: 5px;
    width: calc(33.333% - 6px);
    background: rgba(207, 181, 59, 0.08);
    border: 1px solid rgba(207, 181, 59, 0.2);
    border-radius: 10px;
    transition: left 0.4s cubic-bezier(0.22, 1, 0.36, 1), width 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

/* ---- Tab Panels ---- */
.about-tab-panels {
    width: 100%;
    max-width: 1400px;
    position: relative;
    flex: 1;
    min-height: 0;
}

.about-panel {
    display: none;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* Panel inner content - centered and constrained */
.about-tab-panels {
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 181, 59, 0.2) transparent;
}

.about-tab-panels::-webkit-scrollbar {
    width: 4px;
}

.about-tab-panels::-webkit-scrollbar-thumb {
    background: rgba(207, 181, 59, 0.2);
    border-radius: 2px;
}

.about-panel-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    background: rgba(20, 20, 20, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 16px;
}

/* Panel: Profil */
.about-panel .profile-tagline {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.25rem;
}

.about-panel .profile-bio {
    font-size: 0.93rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
}

.profile-pillars {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
}

.profile-pillars .pillar {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.5px;
}

.profile-motto {
    font-family: var(--font-display);
    font-size: 1rem;
    color: var(--or-pale);
    line-height: 1.6;
    margin: 1rem 0 1.25rem;
    padding-left: 1rem;
    border-left: 2px solid rgba(207, 181, 59, 0.3);
}

/* Panel: Confiance */
.about-panel .trust-grid {
    max-width: 700px;
    margin: 0.75rem auto 0;
}

/* Panel: Réseau */
.about-panel .network-list {
    max-width: 650px;
    margin: 0.75rem auto 0;
}


/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-top: 1rem;
}

.trust-card-wide {
    grid-column: 1 / -1;
}

.trust-card {
    padding: 1.25rem;
    text-align: center;
    background: rgba(24, 24, 24, 0.4);
    border-radius: 16px;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeScaleIn 0.6s ease-out forwards;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--or-24k), var(--or-lumineux));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-card:hover::before {
    transform: scaleX(1);
}

.trust-card:nth-child(1) { animation-delay: 0.1s; }
.trust-card:nth-child(2) { animation-delay: 0.15s; }
.trust-card:nth-child(3) { animation-delay: 0.2s; }
.trust-card:nth-child(4) { animation-delay: 0.25s; }
.trust-card:nth-child(5) { animation-delay: 0.3s; }

@keyframes fadeScaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.trust-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(24, 24, 24, 0.7);
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 30px rgba(207, 181, 59, 0.2);
}

.trust-icon-large {
    width: 52px;
    height: 52px;
    margin: 0 auto 0.75rem;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.trust-card.blue-border .trust-icon-large {
    background: rgba(37, 99, 235, 0.1);
    border: 1.5px solid rgba(37, 99, 235, 0.2);
}

.trust-card.gold-border .trust-icon-large {
    background: rgba(207, 181, 59, 0.08);
    border: 1.5px solid rgba(207, 181, 59, 0.2);
}

.trust-card-wide .trust-icon-large {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(207, 181, 59, 0.08));
    border: 1.5px solid rgba(207, 181, 59, 0.15);
}

.trust-icon-large svg {
    width: 24px;
    height: 24px;
}

.trust-card:hover .trust-icon-large {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 18px rgba(207, 181, 59, 0.3);
}

.trust-card.blue-border:hover .trust-icon-large {
    background: rgba(37, 99, 235, 0.2);
    border-color: var(--bleu-royal);
    box-shadow: 0 0 18px rgba(37, 99, 235, 0.3);
}

.trust-card.gold-border:hover .trust-icon-large {
    background: rgba(207, 181, 59, 0.2);
    border-color: var(--or-24k);
}

.trust-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--blanc-pur);
    margin-bottom: 0.35rem;
}

.trust-card p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.45;
    margin: 0;
}

/* Wide trust card styling */
.trust-card-wide {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-align: left;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(207, 181, 59, 0.04));
    border: 1px solid rgba(207, 181, 59, 0.15) !important;
}

.trust-card-wide .trust-icon-large {
    margin: 0;
    flex-shrink: 0;
}

/* Network */
.network-list {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.network-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 1rem;
    background: rgba(24, 24, 24, 0.4);
    border: 1px solid rgba(207, 181, 59, 0.12);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    animation: fadeSlideIn 0.6s ease-out forwards;
}

.network-item:nth-child(1) { animation-delay: 0.2s; }
.network-item:nth-child(2) { animation-delay: 0.3s; }
.network-item:nth-child(3) { animation-delay: 0.4s; }

.network-item:hover {
    transform: translateX(8px);
    background: rgba(24, 24, 24, 0.7);
    border-color: rgba(207, 181, 59, 0.3);
    box-shadow:
        6px 6px 14px var(--shadow-dark),
        -6px -6px 14px var(--shadow-light),
        0 0 16px rgba(207, 181, 59, 0.15);
}

.network-item .network-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.network-item .network-icon svg {
    width: 28px;
    height: 28px;
}

.network-item:hover .network-icon {
    transform: scale(1.15) rotate(360deg);
}

.network-info {
    text-align: left;
    flex: 1;
}

.network-info h4 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--or-pale);
    margin-bottom: 0.15rem;
}

.network-info p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
    margin: 0;
}

/* FSMA Badge Block */
.fsma-badge-block {
    margin-top: 0.5rem;
}

.fsma-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1.2rem;
    background: rgba(37, 99, 235, 0.06);
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 12px;
}

.fsma-badge svg {
    color: var(--bleu-royal);
    flex-shrink: 0;
}

.fsma-badge-text {
    display: flex;
    flex-direction: column;
}

.fsma-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
}

.fsma-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--bleu-pale);
    font-family: var(--font-body);
    letter-spacing: 0.5px;
}

.fsma-group {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
    margin-top: 0.5rem;
    padding-left: 0.25rem;
    line-height: 1.4;
}

/* Partners Carousel */
.partners-section {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* Hero partners - compact version */
.hero-partners {
    position: absolute;
    bottom: 38px;
    left: 0;
    right: 0;
    margin-top: 0;
    z-index: 2;
}

.hero-partners .partners-carousel {
    margin-top: 0;
    padding: 0.75rem 0;
    background: rgba(12, 12, 12, 0.4);
    border-radius: 0;
}

.hero-partners .partner-logo {
    width: 60px;
    height: 60px;
}

.hero-partners .partners-track {
    gap: 1.5rem;
}

.hero-partners .partner-img {
    width: 55%;
    height: 55%;
}

.hero-partners .partners-carousel::before {
    background: linear-gradient(90deg, rgba(12, 12, 12, 1) 0%, rgba(12, 12, 12, 0.5) 50%, transparent 100%);
}

.hero-partners .partners-carousel::after {
    background: linear-gradient(90deg, transparent 0%, rgba(12, 12, 12, 0.5) 50%, rgba(12, 12, 12, 1) 100%);
}

.partners-carousel {
    overflow: hidden;
    margin-top: 2rem;
    position: relative;
    padding: 1.5rem 0;
    background: rgba(24, 24, 24, 0.3);
    border-radius: 20px;
}

.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(90deg, rgba(24, 24, 24, 1) 0%, rgba(24, 24, 24, 0.5) 50%, transparent 100%);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(24, 24, 24, 0.5) 50%, rgba(24, 24, 24, 1) 100%);
}

.partners-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    will-change: transform;
    transition: none;
}

.partner-logo {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--noir-velours);
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow:
        6px 6px 12px var(--shadow-dark),
        -6px -6px 12px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.partner-logo:hover {
    transform: translateY(-10px) scale(1.1);
    border-color: rgba(207, 181, 59, 0.3);
    box-shadow:
        12px 12px 24px var(--shadow-dark),
        -12px -12px 24px var(--shadow-light),
        0 0 30px rgba(207, 181, 59, 0.3);
}

.partner-img {
    width: 65%;
    height: 65%;
    object-fit: contain;
    filter: brightness(0) invert(1) opacity(0.7);
    transition: all 0.4s ease;
}

.partner-logo:hover .partner-img {
    filter: brightness(0) invert(1) opacity(1);
    transform: scale(1.1);
}

/* Keep native colors for multicolor logos (e.g. ING lion) */
.partner-img-native {
    filter: opacity(0.75);
}

.partner-logo:hover .partner-img-native {
    filter: opacity(1);
}

.partner-initials {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.partner-logo:hover .partner-initials {
    transform: scale(1.15);
    color: rgba(255, 255, 255, 1);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

/* Golden Particles Background */
.contact-section .contact-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.contact-section .particle {
    position: absolute;
    background: var(--or-24k);
    border-radius: 50%;
    opacity: 0.4;
    pointer-events: none;
}

/* Glow Effect */
.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(207, 181, 59, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Content Wrapper */
.contact-content-wrapper {
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Contact Layout - Top Section */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInSlideLeft 0.8s ease-out 0.2s forwards;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact-big-title {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--blanc-pur);
    margin: 0;
    position: relative;
}

.title-accent {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--or-24k), var(--or-lumineux));
    margin-top: 1rem;
    border-radius: 2px;
    position: relative;
}

.title-accent::after {
    content: '✦';
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--or-24k);
    font-size: 1rem;
    opacity: 0.8;
}

.contact-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    max-width: 450px;
}

/* Social Proof Stats */
.contact-stats {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.contact-stat {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    opacity: 0;
}

.contact-stat:nth-child(1) { animation: fadeInSlideLeft 0.6s ease-out 0.4s forwards; }
.contact-stat:nth-child(2) { animation: fadeInSlideLeft 0.6s ease-out 0.6s forwards; }
.contact-stat:nth-child(3) { animation: fadeInSlideLeft 0.6s ease-out 0.8s forwards; }

.stat-icon {
    font-size: 1.25rem;
}

/* Contact Items */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 0;
}

.contact-card {
    background: rgba(26, 26, 26, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 16px;
    padding: 1rem 1.25rem;
    backdrop-filter: blur(10px);
    opacity: 0;
}

.contact-card:nth-child(1) { animation: fadeInSlideRight 0.6s ease-out 0.5s forwards; }
.contact-card:nth-child(2) { animation: fadeInSlideRight 0.6s ease-out 0.7s forwards; }
.contact-card:nth-child(3) { animation: fadeInSlideRight 0.6s ease-out 0.9s forwards; }

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.contact-item:hover {
    transform: scale(1.02);
    box-shadow:
        0 0 30px rgba(207, 181, 59, 0.2),
        8px 8px 20px var(--shadow-dark),
        -8px -8px 20px var(--shadow-light);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-item-icon {
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.contact-item:hover .contact-item-icon {
    transform: scale(1.15);
}

/* Phone vibration animation */
a.contact-item:hover .contact-item-icon {
    animation: vibrate 0.3s ease-in-out;
}

@keyframes vibrate {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px) rotate(-5deg); }
    75% { transform: translateX(3px) rotate(5deg); }
}

.contact-item-content h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.copy-hint {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    text-transform: lowercase;
    margin-left: 0.5rem;
}

.contact-item-content p {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--blanc-pur);
    margin: 0;
}

/* Email Copy Functionality */
#emailContact {
    cursor: pointer;
}

#emailContact:hover {
    background: rgba(207, 181, 59, 0.05);
}

.copy-feedback {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%) scale(0);
    background: var(--or-24k);
    color: #0c0c0c;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

#emailContact.copied .copy-feedback {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}

/* Social Icons */
.social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-icon-link {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    text-decoration: none;
    background: var(--noir-velours);
    color: rgba(255, 255, 255, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: socialIconBounce 2s ease-in-out infinite;
}

.social-icon-link:nth-child(1) { animation-delay: 0s; }
.social-icon-link:nth-child(2) { animation-delay: 0.2s; }
.social-icon-link:nth-child(3) { animation-delay: 0.4s; }

@keyframes socialIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* LinkedIn */
.social-icon-link:nth-child(1):hover {
    color: #0A66C2;
    border-color: #0A66C2;
    box-shadow: 0 0 18px rgba(10, 102, 194, 0.35);
    animation: none;
}

/* Facebook */
.social-icon-link:nth-child(2):hover {
    color: #1877F2;
    border-color: #1877F2;
    box-shadow: 0 0 18px rgba(24, 119, 242, 0.35);
    animation: none;
}

/* Instagram */
.social-icon-link:nth-child(3):hover {
    color: #E4405F;
    border-color: #E4405F;
    box-shadow: 0 0 18px rgba(228, 64, 95, 0.35);
    animation: none;
}

.social-icon-link:hover {
    transform: scale(1.15);
    animation: none;
}

/* [U6] Social Coming Soon */
.social-coming-soon {
    cursor: default;
}

.social-soon-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-style: italic;
    letter-spacing: 0.3px;
}

/* Form Section */
.contact-form-section {
    margin-top: 1.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 1s forwards;
}

.form-section-title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--blanc-pur);
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Tally Container - Glassmorphism */
.tally-container {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.9), rgba(15, 15, 15, 0.95));
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 2rem;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.5),
        inset 0 1px 2px rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    max-width: 900px;
    margin: 0 auto;
}

.tally-form-embed {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tally-placeholder {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

/* Animation Keyframes */
@keyframes fadeInSlideLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInSlideRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===================================
   PROCESS SECTION ENHANCEMENTS
   =================================== */
.step-icon {
    margin-bottom: 0.75rem;
}

.step-icon svg {
    width: 2rem;
    height: 2rem;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.step-detail-item {
    font-size: 0.8rem;
    color: var(--or-pale);
    padding: 0.3rem 0.75rem;
    background: rgba(207, 181, 59, 0.08);
    border: 1px solid rgba(207, 181, 59, 0.15);
    border-radius: 20px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.step-detail-item:hover {
    background: rgba(207, 181, 59, 0.15);
    border-color: rgba(207, 181, 59, 0.3);
    transform: translateY(-2px);
}

/* ===================================
   COUNTER ANIMATION
   =================================== */
.counter {
    display: inline-block;
    font-variant-numeric: tabular-nums;
}

/* ===================================
   ANIMATION OPTIMIZATION — pause when not visible
   =================================== */
.section:not(.active-section) .particle,
.section:not(.active-section) .floating-card,
.section:not(.active-section) .trust-badge,
.section:not(.active-section) .scroll-indicator *,
.section:not(.active-section) .social-icon-link,
.section:not(.active-section) .petal.active .petal-icon,
.section:not(.active-section) .particles-container .particle {
    animation-play-state: paused !important;
}

/* ===================================
   STAGGER ANIMATION KEYFRAMES
   =================================== */
@keyframes staggerFromLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes staggerFadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===================================
   TESTIMONIALS
   =================================== */
.testimonials-block {
    margin-top: 3rem;
    width: 100%;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.testimonial-card {
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(207, 181, 59, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(207, 181, 59, 0.25);
}

.testimonial-stars {
    display: flex;
    gap: 0.2rem;
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.author-name {
    font-weight: 600;
    color: var(--or-24k);
    font-size: 0.85rem;
}

.author-context {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
}

/* ===================================
   NATIVE CONTACT FORM
   =================================== */
.contact-form {
    padding: 2rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.form-group .required {
    color: var(--or-24k);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--noir-velours);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.75rem 1rem;
    color: var(--blanc-pur);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--bleu-royal);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23ffffff80' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-group select option {
    background: var(--noir-velours);
    color: var(--blanc-pur);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-submit-btn {
    width: 100%;
    justify-content: center;
    margin-top: 0.5rem;
}

.form-success-message {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: #10b981;
}

.form-success-message svg {
    flex-shrink: 0;
}

.form-success-message p {
    font-size: 0.95rem;
    font-weight: 500;
}

/* ===================================
   SIMULATOR OVERLAY & MODAL
   =================================== */
.simulator-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.simulator-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.simulator-modal {
    width: 100%;
    max-width: 900px;
    max-height: 90vh;
    background: var(--noir-mat);
    border: 1px solid rgba(207, 181, 59, 0.15);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(207, 181, 59, 0.05);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.simulator-overlay.active .simulator-modal {
    transform: translateY(0) scale(1);
}

.simulator-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(24, 24, 24, 0.8);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.simulator-close svg {
    width: 18px;
    height: 18px;
}

.simulator-close:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

/* Stepper */
.simulator-stepper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    gap: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(24, 24, 24, 0.5);
    flex-shrink: 0;
}

.stepper-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
    min-width: 70px;
}

.stepper-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.4);
    background: transparent;
    transition: all 0.3s ease;
}

.stepper-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    transition: color 0.3s ease;
}

.stepper-step.active .stepper-circle {
    background: var(--bleu-royal);
    border-color: var(--bleu-royal);
    color: #fff;
    box-shadow: 0 0 15px rgba(37, 99, 235, 0.4);
}

.stepper-step.active .stepper-label {
    color: var(--bleu-royal);
}

.stepper-step.completed .stepper-circle {
    background: var(--or-24k);
    border-color: var(--or-24k);
    color: var(--noir-mat);
}

.stepper-step.completed .stepper-label {
    color: var(--or-24k);
}

.stepper-step.future {
    opacity: 0.5;
}

.stepper-connector {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.stepper-connector.completed {
    background: var(--or-24k);
}

/* Steps Container */
.simulator-steps-container {
    flex: 1;
    overflow-y: auto;
    padding: 2rem;
    position: relative;
}

.simulator-steps-container::-webkit-scrollbar {
    width: 6px;
}

.simulator-steps-container::-webkit-scrollbar-track {
    background: transparent;
}

.simulator-steps-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

/* Step common */
.sim-step {
    max-width: 700px;
    margin: 0 auto;
    animation: staggerFadeUp 0.4s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.sim-step-badge {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #06b6d4;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.sim-step-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--blanc-pur);
}

.sim-step-subtitle {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

/* Radio cards */
.sim-radio-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.sim-radio-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: var(--noir-velours);
    cursor: pointer;
    transition: all 0.3s ease;
}

.sim-radio-card input[type="radio"] {
    display: none;
}

.sim-radio-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(24, 24, 24, 0.8);
}

.sim-radio-card.selected {
    border-color: var(--or-24k);
    background: rgba(207, 181, 59, 0.05);
    box-shadow: 0 0 20px rgba(207, 181, 59, 0.08);
}

.sim-radio-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sim-radio-icon svg {
    width: 28px;
    height: 28px;
    color: var(--bleu-pale);
}

.sim-radio-card.selected .sim-radio-icon svg {
    color: var(--or-24k);
}

.sim-radio-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.sim-radio-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--blanc-pur);
}

.sim-radio-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.sim-radio-check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.sim-radio-check svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sim-radio-card.selected .sim-radio-check {
    background: var(--or-24k);
    border-color: var(--or-24k);
}

.sim-radio-card.selected .sim-radio-check svg {
    opacity: 1;
    color: var(--noir-mat);
}

/* First purchase checkbox */
.sim-first-purchase-wrap {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    background: rgba(37, 99, 235, 0.05);
    border: 1px solid rgba(37, 99, 235, 0.15);
}

/* Checkbox */
.sim-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.5rem;
}

.sim-checkbox-label input[type="checkbox"] {
    display: none;
}

.sim-checkbox-custom {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    position: relative;
    transition: all 0.3s ease;
}

.sim-checkbox-label input:checked + .sim-checkbox-custom {
    background: var(--bleu-royal);
    border-color: var(--bleu-royal);
}

.sim-checkbox-label input:checked + .sim-checkbox-custom::after {
    content: '\2713';
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
}

/* Chips */
.sim-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.sim-chip {
    padding: 0.5rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sim-chip:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.04);
}

.sim-chip.selected {
    background: var(--bleu-royal);
    border-color: var(--bleu-royal);
    color: #fff;
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.3);
}

/* Region section */
.sim-region-section {
    margin-bottom: 2rem;
}

/* Hint text */
.sim-hint {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.25rem;
    line-height: 1.4;
}

/* Field label */
.sim-field-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0.5rem;
}

/* Slider groups */
.sim-slider-group {
    margin-bottom: 1.25rem;
}

.sim-small-group {
    margin-bottom: 0.75rem;
}

.sim-input-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sim-input {
    background: var(--noir-velours);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 0.7rem 1rem;
    color: var(--blanc-pur);
    font-family: var(--font-body);
    font-size: 1rem;
    width: 100%;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.sim-input:focus {
    border-color: var(--bleu-royal);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
}

.sim-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.sim-textarea {
    resize: vertical;
    min-height: 80px;
}

.sim-input-suffix {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    flex-shrink: 0;
    min-width: 2rem;
}

/* Range slider */
.sim-range {
    width: 100%;
    height: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    outline: none;
    margin-top: 0.75rem;
    cursor: pointer;
}

.sim-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--or-24k);
    box-shadow: 0 0 10px rgba(207, 181, 59, 0.4);
    cursor: pointer;
    transition: box-shadow 0.3s ease;
}

.sim-range::-webkit-slider-thumb:hover {
    box-shadow: 0 0 18px rgba(207, 181, 59, 0.6);
}

.sim-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--or-24k);
    border: none;
    box-shadow: 0 0 10px rgba(207, 181, 59, 0.4);
    cursor: pointer;
}

.sim-range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.3rem;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.35);
}

/* Summary / fees card */
.sim-summary-card,
.sim-fees-card {
    padding: 1.25rem;
    border-radius: 14px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-fees-header {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bleu-clair);
    padding: 0.5rem 0.75rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.sim-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
}

.sim-summary-row:last-child {
    border-bottom: none;
}

.sim-summary-row span:first-child {
    color: rgba(255, 255, 255, 0.6);
}

.sim-summary-row span:last-child {
    font-weight: 600;
    color: var(--blanc-pur);
}

.sim-summary-highlight {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.25rem;
    padding-top: 0.75rem;
}

.sim-summary-highlight span:last-child {
    color: var(--or-24k);
    font-size: 1rem;
}

.sim-ltv-value {
    font-weight: 700 !important;
}

.sim-accent {
    color: #06b6d4 !important;
}

.sim-danger {
    color: #ef4444 !important;
}

.sim-warning-text {
    color: #f59e0b !important;
}

/* Guarantee extra */
.sim-guarantee-extra {
    padding: 1rem 1.25rem;
    margin: 0.75rem 0 1rem;
    border-radius: 12px;
    background: rgba(207, 181, 59, 0.03);
    border: 1px solid rgba(207, 181, 59, 0.1);
}

.sim-equity-display {
    font-size: 0.85rem;
    color: var(--or-pale);
    margin-top: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: rgba(207, 181, 59, 0.08);
    border-radius: 8px;
}

/* Rate card */
.sim-rate-card {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(37, 99, 235, 0.05);
}

.sim-rate-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0.75rem;
}

.sim-rate-value {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--or-24k);
    text-shadow: 0 0 30px rgba(207, 181, 59, 0.2);
}

.sim-rate-details {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.5rem;
}

.sim-rate-table {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-rate-table-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.sim-rate-table-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.35);
}

.sim-rate-table-item span:last-child {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--blanc-pur);
}

/* Monthly card */
.sim-monthly-card {
    text-align: center;
    padding: 1.75rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid rgba(207, 181, 59, 0.15);
    background: rgba(207, 181, 59, 0.03);
}

.sim-monthly-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--or-24k);
}

.sim-monthly-suffix {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

/* Disclaimer */
.sim-disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.5;
    margin: 1rem 0;
    font-style: italic;
}

/* Form grid */
.sim-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.sim-field-group {
    margin-bottom: 1.5rem;
}

/* Navigation buttons */
.sim-nav-buttons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.sim-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.sim-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.sim-btn-primary {
    background: linear-gradient(135deg, var(--bleu-royal), var(--bleu-confiance));
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.sim-btn-primary:hover:not(:disabled) {
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

.sim-btn-outline {
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.sim-btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.25);
}

.sim-btn-full {
    width: 100%;
    justify-content: center;
    padding: 1rem;
    background: linear-gradient(135deg, var(--bleu-royal), #0d9488);
    font-size: 1rem;
}

.sim-btn-full:hover {
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
    transform: translateY(-1px);
}

/* --- Step 5: Results --- */
.sim-result-header {
    text-align: center;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(6, 182, 212, 0.05));
    margin-bottom: 1.5rem;
}

.sim-result-amount {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--or-24k);
    text-shadow: 0 0 40px rgba(207, 181, 59, 0.2);
    margin: 0.5rem 0;
}

.sim-result-metrics {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-result-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sim-metric-label {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.sim-metric-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--blanc-pur);
}

/* Diagnostic */
.sim-diagnostic {
    padding: 1.25rem;
    border-radius: 14px;
    margin: 1.5rem 0;
}

.sim-diag-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.sim-diag-icon {
    font-size: 1.2rem;
}

.sim-diag-title {
    font-weight: 700;
    font-size: 1rem;
}

.sim-diag-text {
    font-size: 0.85rem;
    line-height: 1.5;
}

.sim-diag-solid {
    background: rgba(6, 182, 212, 0.08);
    border: 1px solid rgba(6, 182, 212, 0.25);
}
.sim-diag-solid .sim-diag-title { color: #06b6d4; }
.sim-diag-solid .sim-diag-text { color: rgba(6, 182, 212, 0.8); }

.sim-diag-optimize {
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.25);
}
.sim-diag-optimize .sim-diag-title { color: #f59e0b; }
.sim-diag-optimize .sim-diag-text { color: rgba(245, 158, 11, 0.8); }

.sim-diag-difficult {
    background: rgba(239, 68, 68, 0.08);
    border: 1px solid rgba(239, 68, 68, 0.25);
}
.sim-diag-difficult .sim-diag-title { color: #ef4444; }
.sim-diag-difficult .sim-diag-text { color: rgba(239, 68, 68, 0.8); }

/* Analysis points */
.sim-analysis {
    margin: 1.5rem 0;
}

.sim-analysis-point {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.85rem;
    line-height: 1.4;
}

.sim-analysis-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
    margin-top: 0.1rem;
}

.sim-analysis-success { color: #06b6d4; }
.sim-analysis-warning { color: #f59e0b; }
.sim-analysis-danger { color: #ef4444; }

/* Contact section in results */
.sim-contact-section {
    padding: 2rem;
    border-radius: 16px;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 1rem;
}

.sim-contact-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blanc-pur);
    margin-bottom: 0.5rem;
}

.sim-contact-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Recap card */
.sim-recap-card {
    padding: 1.25rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 1.5rem;
}

.sim-recap-title {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 1rem;
}

.sim-recap-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.sim-recap-item {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.sim-recap-item span {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
}

.sim-recap-item strong {
    font-size: 0.85rem;
    color: var(--blanc-pur);
    font-weight: 600;
}

/* Contact form in simulator */
.sim-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.sim-contact-success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: #10b981;
    margin-bottom: 1.5rem;
}

.sim-contact-success p {
    font-weight: 600;
    font-size: 1rem;
}

/* Trust badges */
.sim-trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.sim-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.05em;
}

/* ===================================
   SIMULATOR RESPONSIVE
   =================================== */
@media (max-width: 768px) {
    .simulator-modal {
        max-width: 100%;
        max-height: 100vh;
        height: 100vh;
        border-radius: 0;
        border: none;
    }

    .simulator-stepper {
        padding: 1rem;
        gap: 0;
    }

    .stepper-step {
        min-width: 50px;
    }

    .stepper-circle {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }

    .stepper-label {
        font-size: 0.6rem;
    }

    .stepper-connector {
        width: 20px;
    }

    .simulator-steps-container {
        padding: 1.5rem;
    }

    .sim-step-title {
        font-size: 1.35rem;
    }

    .sim-radio-card {
        padding: 1rem;
    }

    .sim-form-grid {
        grid-template-columns: 1fr;
    }

    .sim-rate-value {
        font-size: 2.25rem;
    }

    .sim-monthly-value {
        font-size: 2rem;
    }

    .sim-result-amount {
        font-size: 2.5rem;
    }

    .sim-result-metrics {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .sim-result-metric {
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
    }

    .sim-rate-table {
        gap: 1rem;
    }

    .sim-recap-grid {
        grid-template-columns: 1fr;
    }

    .sim-nav-buttons {
        flex-direction: column-reverse;
    }

    .sim-btn {
        width: 100%;
        justify-content: center;
    }

    .sim-trust-badges {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .simulator-stepper {
        padding: 0.75rem 0.5rem;
    }

    .stepper-label {
        display: none;
    }

    .stepper-connector {
        width: 15px;
    }

    .simulator-steps-container {
        padding: 1rem;
    }

    .sim-step-title {
        font-size: 1.2rem;
    }

    .sim-contact-section {
        padding: 1.25rem;
    }

    .sim-chips {
        gap: 0.4rem;
    }

    .sim-chip {
        padding: 0.4rem 0.9rem;
        font-size: 0.8rem;
    }
}

/* ===================================
   RESPONSIVE
   =================================== */

/* --- 1400px: Large desktop adjustments --- */
@media (max-width: 1400px) {
    .content-wrapper {
        padding: 0 3rem;
    }

    .sunflower-container {
        width: 500px;
        height: 500px;
    }

    .petal {
        width: 105px;
        height: 105px;
    }

    .sunflower-center {
        width: 120px;
        height: 120px;
    }
}

/* --- 1024px: Tablet landscape --- */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1.5rem 2.5rem;
    }

    .section {
        padding: 5rem 2rem 2rem 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .slogan-trio {
        gap: 1rem;
    }

    .slogan-word {
        font-size: 2.5rem;
    }

    .hero-section .content-wrapper {
        gap: 2rem;
    }

    .hero-visual {
        flex: 0 0 300px;
    }

    .floating-card {
        padding: 2rem;
    }

    .card-value {
        font-size: 4rem;
    }

    /* Sunflower adjustments */
    .sunflower-container {
        width: 420px;
        height: 420px;
    }

    .petal {
        width: 95px;
        height: 95px;
    }

    .petal-icon svg {
        width: 1.75rem;
        height: 1.75rem;
    }

    .sunflower-center {
        width: 110px;
        height: 110px;
    }

    .service-details-container.active {
        width: 50%;
    }

    /* About adjustments */
    .about-hero {
        gap: 2rem;
        padding: 2rem;
    }

    .profile-photo-frame {
        width: 130px;
        height: 130px;
    }

    .profile-hero-content .section-title {
        font-size: 1.7rem;
    }

    .trust-card {
        padding: 1rem;
    }

    /* Testimonials adjustments */
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    /* Contact adjustments */
    .contact-big-title {
        font-size: 3rem;
    }

    .contact-layout {
        gap: 2rem;
    }
}

/* --- 768px: Tablet portrait / large phone --- */
@media (max-width: 768px) {

    /* === P4: Switch to vertical scroll on mobile === */
    body {
        overflow: visible;
        overflow-x: hidden;
        height: auto;
    }

    .scroll-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        transform: none !important;
        transition: none;
    }

    .section {
        width: 100%;
        height: auto;
        min-height: 100vh;
        min-height: 100dvh;
        overflow: visible;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        padding: 5rem 1.5rem 2rem 1.5rem;
    }

    .content-wrapper {
        padding: 0 !important;
    }

    .section .content-wrapper {
        opacity: 1 !important;
        transform: none !important;
        padding-top: 1rem !important;
        padding-bottom: 2rem !important;
    }

    /* === P1: Hamburger menu === */
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hide dot nav on mobile */
    .nav-dots {
        display: none;
    }

    /* Hamburger button */
    .hamburger-btn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        background: none;
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 8px;
        cursor: pointer;
        padding: 6px;
        transition: all 0.3s ease;
        z-index: 1002;
    }

    .hamburger-btn:hover {
        border-color: var(--or-24k);
    }

    .hamburger-btn span {
        display: block;
        width: 100%;
        height: 2px;
        background: var(--blanc-pur);
        border-radius: 2px;
        transition: all 0.3s ease;
        transform-origin: center;
    }

    .hamburger-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    /* Mobile menu overlay */
    .mobile-menu {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background: rgba(12, 12, 12, 0.97);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        z-index: 1001;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.4s ease, visibility 0.4s ease;
    }

    .mobile-menu.active {
        opacity: 1;
        visibility: visible;
    }

    .mobile-menu-link {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 2rem;
        color: rgba(255, 255, 255, 0.6);
        text-decoration: none;
        font-family: var(--font-display);
        font-size: 1.5rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        width: 100%;
        max-width: 300px;
        border-left: 3px solid transparent;
    }

    .mobile-menu-link:hover,
    .mobile-menu-link.active {
        color: var(--or-24k);
        border-left-color: var(--or-24k);
    }

    .mobile-menu-link .menu-number {
        font-family: var(--font-body);
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--bleu-royal);
        opacity: 0.5;
    }

    /* --- Hero mobile --- */
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
        position: relative;
    }

    .hero-section .content-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .slogan-trio {
        justify-content: center;
        gap: 0.5rem;
    }

    .slogan-word {
        font-size: 1.75rem;
    }

    .expertise-line {
        font-size: 0.95rem;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 350px;
        justify-content: center;
    }

    .hero-visual {
        flex: 0 0 auto;
        width: 100%;
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }

    .floating-card {
        padding: 1.5rem;
    }

    .card-value {
        font-size: 3rem;
        margin: 0.5rem 0;
    }

    .scroll-indicator {
        display: none;
    }

    /* === P2: Partners carousel at bottom of hero === */
    .hero-partners {
        position: relative;
        bottom: auto;
        left: auto;
        right: auto;
        margin-top: 2rem;
        width: 100%;
    }

    .hero-partners .partner-logo {
        width: 55px;
        height: 55px;
    }

    .hero-partners .partners-track {
        gap: 1rem;
    }

    /* === P3: Services mobile - vertical cards === */
    .section-title {
        font-size: 2rem;
    }

    .services-display-wrapper {
        flex-direction: column;
        min-height: auto;
        gap: 1.5rem;
        padding: 0;
    }

    .sunflower-container {
        position: relative;
        width: 100%;
        height: auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        padding: 0;
    }

    .sunflower-center {
        display: none;
    }

    .petal {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100%;
        min-width: 0;
        max-width: none;
        height: auto;
        aspect-ratio: 1;
        border-radius: 16px;
    }

    .petal:hover {
        transform: translateY(-3px) scale(1.03) !important;
    }

    .petal.active {
        transform: none !important;
    }

    .services-display-wrapper.service-active .sunflower-container {
        transform: none;
    }

    .service-details-container {
        max-width: 100%;
        max-height: none;
    }

    .service-details-container.active {
        width: 100%;
    }

    .services-display-wrapper.service-active {
        flex-direction: column;
    }

    .nav-btn {
        position: relative;
        left: auto !important;
        right: auto !important;
        top: auto;
        transform: none;
        display: inline-flex;
    }

    .nav-btn:hover {
        transform: scale(1.15);
    }

    .nav-btn:active {
        transform: scale(0.95);
    }

    .service-detail-card {
        border-radius: 16px;
    }

    .service-detail-card .nav-btn {
        position: absolute;
        top: auto;
        bottom: 1rem;
    }

    .service-detail-card .nav-prev {
        left: 1rem !important;
    }

    .service-detail-card .nav-next {
        right: 1rem !important;
    }

    /* --- Process mobile --- */
    .process-timeline {
        flex-direction: column;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .process-connector {
        width: 2px;
        height: 40px;
        flex: 0 0 40px;
        background: linear-gradient(180deg, var(--or-24k), var(--or-pale));
        margin: 0 auto;
    }

    .process-step {
        text-align: center;
    }

    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .process-step h3 {
        font-size: 1.25rem;
    }

    .step-details {
        gap: 0.4rem;
    }

    .step-detail-item {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }

    /* === P5: About section centered on mobile === */
    .about-section {
        padding-top: 5rem;
        align-items: center;
    }

    .about-section .content-wrapper {
        align-items: center;
        max-width: 600px;
    }

    .about-hero {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
        width: 100%;
    }

    .profile-photo-frame {
        width: 120px;
        height: 120px;
    }

    .profile-hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .profile-hero-content .section-title {
        font-size: 1.5rem;
    }

    .profile-bio {
        max-width: 100%;
    }

    .profile-stats-bar {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .about-tabs {
        width: 100%;
    }

    .about-tab span {
        font-size: 0.78rem;
    }

    .about-tab svg {
        width: 16px;
        height: 16px;
    }

    .about-tab-panels {
        width: 100%;
    }

    .about-panel-inner {
        max-width: 100%;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.65rem;
    }

    .trust-card {
        padding: 0.9rem;
    }

    .trust-icon-large {
        width: 42px;
        height: 42px;
    }

    .trust-icon-large svg {
        width: 20px;
        height: 20px;
    }

    .trust-card h4 {
        font-size: 0.82rem;
    }

    .trust-card p {
        font-size: 0.72rem;
    }

    .trust-card-wide {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .partners-section {
        margin-top: 1.5rem;
    }

    .partner-logo {
        width: 70px;
        height: 70px;
    }

    .partner-initials {
        font-size: 1.1rem;
    }

    /* --- Testimonials mobile --- */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonials-block {
        margin-top: 2rem;
    }

    /* --- Contact form mobile --- */
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    /* === P6: Contact section centered on mobile === */
    .contact-section {
        align-items: center;
    }

    .contact-section .content-wrapper {
        max-width: 600px;
    }

    .contact-content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .contact-big-title {
        font-size: 2.5rem;
        text-align: center;
    }

    .contact-subtitle {
        text-align: center;
        max-width: 100%;
    }

    .title-accent {
        margin: 0.5rem auto;
    }

    .contact-left {
        align-items: center;
        text-align: center;
    }

    .contact-stats {
        align-items: center;
    }

    .contact-right {
        width: 100%;
    }

    .contact-form-section {
        margin-top: 1rem;
        width: 100%;
    }

    .form-section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .site-footer {
        text-align: center;
    }

    .tally-container {
        padding: 1.5rem;
    }

    .tally-form-embed {
        min-height: 200px;
    }
}

/* --- 480px: Small phone --- */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.75rem 1rem;
    }

    .logo {
        font-size: 1rem;
    }

    .section {
        padding: 4rem 1rem 1rem 1rem;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .slogan-word {
        font-size: 1.35rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Services - 2 cols on very small */
    .sunflower-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .petal {
        min-width: 0;
    }

    .petal-icon svg {
        width: 1.5rem;
        height: 1.5rem;
    }

    .petal-title {
        font-size: 0.65rem;
    }

    .service-detail-card {
        padding: 1.25rem;
    }

    .service-detail-card h3 {
        font-size: 1.2rem;
    }

    .service-details li {
        font-size: 0.85rem;
    }

    /* About small */
    .about-hero {
        padding: 1.25rem;
        gap: 1rem;
    }

    .profile-photo-frame {
        width: 100px;
        height: 100px;
    }

    .profile-hero-content .section-title {
        font-size: 1.3rem;
    }

    .profile-role {
        font-size: 0.9rem;
    }

    .profile-bio {
        font-size: 0.85rem;
    }

    .profile-stats-bar {
        flex-direction: column;
        gap: 0.75rem;
        padding: 0.75rem 1rem;
    }

    .profile-stat-divider {
        width: 40px;
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(207, 181, 59, 0.3), transparent);
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-icon-large {
        width: 38px;
        height: 38px;
    }

    .trust-icon-large svg {
        width: 18px;
        height: 18px;
    }

    .network-item {
        padding: 0.75rem;
    }

    .about-subtitle {
        font-size: 1.15rem;
    }

    .fsma-badge {
        padding: 0.75rem;
    }

    /* Contact small */
    .contact-big-title {
        font-size: 2rem;
    }

    .contact-card {
        padding: 0.75rem 1rem;
    }

    .contact-item-content p {
        font-size: 1rem;
    }

    .social-icon-link {
        width: 38px;
        height: 38px;
    }

    .form-section-title {
        font-size: 1.25rem;
    }

    /* Process small */
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .process-step h3 {
        font-size: 1.1rem;
    }

    .process-step p {
        font-size: 0.85rem;
    }
}

/* --- Allow vertical scroll within sections on small viewports (desktop only) --- */
@media (max-height: 700px) and (min-width: 769px) {
    body {
        overflow-y: auto;
    }

    .section {
        min-height: 100vh;
        height: auto;
    }
}

/* --- Touch device optimizations --- */
@media (hover: none) and (pointer: coarse) {
    .dot::before {
        display: none;
    }

    .dot {
        width: 22px;
        height: 22px;
    }

    .petal:hover {
        transform: none !important;
    }

    .petal.active {
        transform: none !important;
    }

    .trust-card:hover {
        transform: none;
    }

    .partner-logo:hover {
        transform: none;
    }

    .social-icon-link {
        animation: none;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section > * {
    animation: fadeInUp 0.8s ease-out;
}

/* ===================================
   LEGAL MODALS
   =================================== */
.legal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.legal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.legal-modal {
    background: #141414;
    border: 1px solid rgba(207, 181, 59, 0.15);
    border-radius: 16px;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(207, 181, 59, 0.05);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.legal-overlay.active .legal-modal {
    transform: translateY(0) scale(1);
}

.legal-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.legal-modal-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: var(--or-24k);
    margin: 0;
}

.legal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.legal-close:hover {
    background: rgba(207, 181, 59, 0.1);
    border-color: rgba(207, 181, 59, 0.3);
    color: var(--or-24k);
}

.legal-content {
    padding: 32px;
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: rgba(207, 181, 59, 0.2) transparent;
}

.legal-content::-webkit-scrollbar {
    width: 6px;
}

.legal-content::-webkit-scrollbar-track {
    background: transparent;
}

.legal-content::-webkit-scrollbar-thumb {
    background: rgba(207, 181, 59, 0.2);
    border-radius: 3px;
}

.legal-content h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    color: var(--or-24k);
    margin: 28px 0 12px;
}

.legal-content h3:first-child {
    margin-top: 0;
}

.legal-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0 0 12px;
}

.legal-content ul {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.92rem;
    line-height: 1.7;
    padding-left: 20px;
    margin: 0 0 12px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content strong {
    color: rgba(255, 255, 255, 0.9);
}

.legal-content a {
    color: var(--or-24k);
    text-decoration: none;
    border-bottom: 1px solid rgba(207, 181, 59, 0.3);
    transition: border-color 0.3s ease;
}

.legal-content a:hover {
    border-color: var(--or-24k);
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
    font-size: 0.88rem;
}

.legal-table th {
    background: rgba(207, 181, 59, 0.08);
    color: var(--or-24k);
    padding: 10px 14px;
    text-align: left;
    font-weight: 600;
    border-bottom: 1px solid rgba(207, 181, 59, 0.15);
}

.legal-table td {
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-table tr:last-child td {
    border-bottom: none;
}

.legal-update {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    font-style: italic;
    color: rgba(255, 255, 255, 0.4) !important;
    font-size: 0.85rem !important;
}

.legal-btn {
    display: inline-block;
    margin-top: 16px;
    padding: 10px 24px;
    background: rgba(207, 181, 59, 0.1);
    border: 1px solid rgba(207, 181, 59, 0.3);
    border-radius: 8px;
    color: var(--or-24k);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-btn:hover {
    background: rgba(207, 181, 59, 0.2);
    border-color: var(--or-24k);
}

/* ===================================
   COOKIE BANNER
   =================================== */
#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10001;
    background: #141414;
    border-top: 1px solid rgba(207, 181, 59, 0.15);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

#cookieBanner.active {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-banner-text a {
    color: var(--or-24k);
    text-decoration: none;
    border-bottom: 1px solid rgba(207, 181, 59, 0.3);
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    white-space: nowrap;
}

.cookie-btn-accept {
    background: var(--or-24k);
    color: #0c0c0c;
    border-color: var(--or-24k);
}

.cookie-btn-accept:hover {
    background: #e0c84a;
    box-shadow: 0 4px 15px rgba(207, 181, 59, 0.3);
}

.cookie-btn-refuse {
    background: transparent;
    color: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.15);
}

.cookie-btn-refuse:hover {
    color: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.3);
}

.cookie-btn-settings {
    background: transparent;
    color: var(--or-24k);
    border-color: rgba(207, 181, 59, 0.3);
}

.cookie-btn-settings:hover {
    background: rgba(207, 181, 59, 0.1);
    border-color: var(--or-24k);
}

/* ===================================
   COOKIE PREFERENCES TOGGLES
   =================================== */
.cookie-pref-group {
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-pref-group:last-of-type {
    border-bottom: none;
}

.cookie-pref-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-pref-info {
    flex: 1;
}

.cookie-pref-info h3 {
    margin: 0 0 4px !important;
    font-size: 1.05rem !important;
}

.cookie-pref-info p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

.cookie-toggle {
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.cookie-toggle-slider {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    transition: background 0.3s ease;
}

.cookie-toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--or-24k);
}

.cookie-toggle input:checked + .cookie-toggle-slider::after {
    left: 25px;
    background: #0c0c0c;
}

.cookie-toggle-locked {
    cursor: default;
}

.cookie-toggle-locked .cookie-toggle-slider {
    opacity: 0.5;
}

.cookie-toggle-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    white-space: nowrap;
}

.cookie-pref-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cookie-pref-actions .cookie-btn {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
}

/* Cookie banner mobile */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        padding: 16px 20px;
        gap: 16px;
    }

    .cookie-banner-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
        padding: 12px 20px;
    }

    .legal-modal {
        width: 95%;
        max-height: 85vh;
    }

    .legal-modal-header {
        padding: 18px 20px;
    }

    .legal-modal-header h2 {
        font-size: 1.3rem;
    }

    .legal-content {
        padding: 20px;
    }

    .legal-table {
        font-size: 0.8rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 8px 10px;
    }
}

/* Smooth scrolling performance */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
