/* ===========================================
   Allopass Final 2026
   Premium Fintech Landing Page
   =========================================== */

/* ===========================================
   CSS Variables
   =========================================== */
:root {
    /* Colors */
    --gold: #d4af37;
    --gold-light: #f0d875;
    --gold-dark: #b8960c;

    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;

    --purple: #7c3aed;

    --success: #10b981;

    --bg-light: #f8fafc;
    --bg-secondary: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #0f172a;
    --bg-darker: #020617;

    --text-dark: #0f172a;
    --text-body: #475569;
    --text-muted: #94a3b8;
    --text-light: #f8fafc;

    --border: #e2e8f0;
    --border-light: #f1f5f9;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #7c3aed 100%);
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #f0d875 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', var(--font-sans);

    /* Layout */
    --container-width: 1280px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;

    /* Border Radius */
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Global hidden attribute fix (v7.5.0 hotfix) */
[hidden] {
    display: none !important;
}

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

ul,
ol {
    list-style: none;
}

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

/* ===========================================
   Utilities
   =========================================== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

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

.section-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(25px, 5vw, 35px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    max-width: 600px;
    line-height: 1.7;
}

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

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

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

/* ===========================================
   Buttons
   =========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    white-space: nowrap;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 16px;
}

.btn-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base);
}

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

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.btn-outline {
    border: 2px solid var(--border);
    color: var(--text-dark);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    color: var(--text-body);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--text-dark);
    box-shadow: var(--shadow-lg);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-ghost-white {
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ===========================================
   Navigation
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 12px 0;
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
}

.nav-links a:hover {
    color: var(--text-dark);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    padding: 100px 24px 40px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile-nav-links a {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===========================================
   Hero Section
   =========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

/* Circuit Background Animation */
.hero-circuit-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.circuit-svg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.circuit-base-lines path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.circuit-nodes circle {
    fill: var(--primary);
}

/* Pulse Lines Animation */
.pulse-line {
    fill: none;
    stroke: var(--primary-light);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 6px var(--primary));
}

.pulse-line.gold {
    stroke: var(--gold);
    filter: drop-shadow(0 0 6px var(--gold));
}

.pl-1 {
    stroke-dasharray: 30 400;
    stroke-dashoffset: 430;
    animation: pulse-flow 5s ease-in-out infinite;
    animation-delay: 0s;
}

.pl-2 {
    stroke-dasharray: 20 200;
    stroke-dashoffset: 220;
    animation: pulse-flow-short 3s ease-in-out infinite;
    animation-delay: 0.5s;
}

.pl-3 {
    stroke-dasharray: 30 400;
    stroke-dashoffset: 430;
    animation: pulse-flow 5s ease-in-out infinite;
    animation-delay: 1s;
}

.pl-4 {
    stroke-dasharray: 30 400;
    stroke-dashoffset: 430;
    animation: pulse-flow 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.pl-5 {
    stroke-dasharray: 20 200;
    stroke-dashoffset: 220;
    animation: pulse-flow-short 3s ease-in-out infinite;
    animation-delay: 2s;
}

.pl-6 {
    stroke-dasharray: 30 400;
    stroke-dashoffset: 430;
    animation: pulse-flow 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.pl-7 {
    stroke-dasharray: 30 350;
    stroke-dashoffset: 380;
    animation: pulse-flow-mid 4s ease-in-out infinite;
    animation-delay: 0.3s;
}

.pl-8 {
    stroke-dasharray: 25 250;
    stroke-dashoffset: 275;
    animation: pulse-flow-short 3.5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.pl-9 {
    stroke-dasharray: 30 350;
    stroke-dashoffset: 380;
    animation: pulse-flow-mid 4s ease-in-out infinite;
    animation-delay: 2.1s;
}

.pl-10 {
    stroke-dasharray: 35 450;
    stroke-dashoffset: 485;
    animation: pulse-flow-gold 6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.pl-11 {
    stroke-dasharray: 35 450;
    stroke-dashoffset: 485;
    animation: pulse-flow-gold 6s ease-in-out infinite;
    animation-delay: 1.7s;
}

.pl-12 {
    stroke-dasharray: 35 450;
    stroke-dashoffset: 485;
    animation: pulse-flow-gold 6s ease-in-out infinite;
    animation-delay: 3.2s;
}

.pl-13 {
    stroke-dasharray: 35 450;
    stroke-dashoffset: 485;
    animation: pulse-flow-gold 6s ease-in-out infinite;
    animation-delay: 4.7s;
}

@keyframes pulse-flow {
    0% {
        stroke-dashoffset: 430;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes pulse-flow-short {
    0% {
        stroke-dashoffset: 220;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes pulse-flow-mid {
    0% {
        stroke-dashoffset: 380;
        opacity: 0;
    }

    10% {
        opacity: 0.8;
    }

    90% {
        opacity: 0.8;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

@keyframes pulse-flow-gold {
    0% {
        stroke-dashoffset: 485;
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(37, 99, 235, 0.08), transparent),
        radial-gradient(ellipse 60% 40% at 80% 20%, rgba(124, 58, 237, 0.05), transparent),
        radial-gradient(ellipse 50% 30% at 20% 80%, rgba(212, 175, 55, 0.05), transparent);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Hero Content */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-content.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 24px;
}

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

@keyframes badge-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 500px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

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

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s ease 0.3s, transform 0.8s ease 0.3s;
}

.hero-visual.visible {
    opacity: 1;
    transform: scale(1);
}

.logo-hub {
    position: relative;
    width: 240px;
    height: 240px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hub-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: hub-glow-pulse 4s ease-in-out infinite;
}

@keyframes hub-glow-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.15);
        opacity: 0.9;
    }
}

.hero-logo-a {
    position: relative;
    width: 180px;
    height: 180px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
    z-index: 2;
}

/* Floating Cards */
.floating-cards {
    position: absolute;
    inset: -60px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 12px 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    animation: float 6s ease-in-out infinite;
}

.floating-card .card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    font-size: 16px;
}

.card-icon.green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.card-icon.blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.card-icon.purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--purple);
}

.card-1 {
    top: 0;
    left: -30px;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: -50px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 10px;
    left: 0;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
    z-index: 3;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--border);
    border-radius: 12px;
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scroll-bounce 2s infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    50% {
        opacity: 0.3;
        transform: translateX(-50%) translateY(12px);
    }
}

/* ===========================================
   Trusted Section
   =========================================== */
.trusted {
    padding: 50px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.trusted-label {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.trusted-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-muted);
    opacity: 0.5;
    transition: opacity var(--transition-base);
}

.trusted-logo:hover {
    opacity: 0.8;
}

/* ===========================================
   Solutions Section - Circular Layout
   =========================================== */
.solutions {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, #eef4ff 0%, #e8f0fe 50%, #f0f7ff 100%);
    position: relative;
    overflow: hidden;
}

/* Container pour le layout circulaire */
.solutions-circular-wrapper {
    position: relative;
    width: 100%;
    max-width: 850px;
    height: 620px;
    margin: 50px auto 0;
}

/* Logo A central */
.solutions-center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    z-index: 10;
}

.circuit-a-logo {
    width: 100%;
    height: 100%;
}

/* Anneaux du A */
.a-ring {
    transform-origin: 80px 80px;
}

.a-ring-1 {
    animation: a-ring-rotate 35s linear infinite;
}

.a-ring-2 {
    animation: a-ring-rotate 25s linear infinite reverse;
}

.a-ring-3 {
    animation: a-ring-rotate 18s linear infinite;
}

@keyframes a-ring-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Animation des lignes du A */
.a-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: draw-a-line 1.2s ease-out forwards;
}

.a-line-left {
    animation-delay: 0.2s;
}

.a-line-right {
    animation-delay: 0.4s;
}

.a-line-bar {
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
    animation-delay: 0.6s;
}

@keyframes draw-a-line {
    to {
        stroke-dashoffset: 0;
    }
}

/* Noeuds du A */
.a-node-glow {
    opacity: 0;
    animation: a-node-appear 0.3s ease-out forwards;
}

.a-node-glow:nth-child(4) {
    animation-delay: 0.8s;
}

.a-node-glow:nth-child(5) {
    animation-delay: 0.9s;
}

.a-node-glow:nth-child(6) {
    animation-delay: 1s;
}

.a-node-glow:nth-child(7) {
    animation-delay: 1.1s;
}

.a-node-glow:nth-child(8) {
    animation-delay: 1.2s;
}

@keyframes a-node-appear {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Pulse du A */
.a-pulse {
    animation: a-pulse-expand 3s ease-out infinite;
    animation-delay: 1.5s;
}

@keyframes a-pulse-expand {
    0% {
        r: 30;
        opacity: 0.5;
    }

    100% {
        r: 70;
        opacity: 0;
    }
}

/* SVG des connexions */
.solutions-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Animation des lignes de connexion */
.conn-line {
    stroke-dasharray: 25 250;
    stroke-dashoffset: 275;
    animation: conn-line-flow 4s ease-in-out infinite;
}

.cl-1 {
    animation-delay: 0s;
}

.cl-2 {
    animation-delay: 0.7s;
}

.cl-3 {
    animation-delay: 1.4s;
}

.cl-4 {
    animation-delay: 2.1s;
}

.cl-5 {
    animation-delay: 2.8s;
}

.cl-6 {
    animation-delay: 3.5s;
}

@keyframes conn-line-flow {
    0% {
        stroke-dashoffset: 275;
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Noeuds de connexion */
.cn-node {
    animation: cn-node-pulse 2.5s ease-in-out infinite;
}

.cn-1 {
    animation-delay: 0s;
}

.cn-2 {
    animation-delay: 0.4s;
}

.cn-3 {
    animation-delay: 0.8s;
}

.cn-4 {
    animation-delay: 1.2s;
}

.cn-5 {
    animation-delay: 1.6s;
}

.cn-6 {
    animation-delay: 2s;
}

@keyframes cn-node-pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

/* Orbite des solutions */
.solutions-orbit {
    position: absolute;
    inset: 0;
    z-index: 5;
}

.sol-item {
    position: absolute;
    transform: translate(-50%, -50%);
}

/* Positionnement des 6 solutions autour */
.sol-1 {
    top: 5%;
    left: 50%;
}

/* Haut */
.sol-2 {
    top: 22%;
    left: 88%;
}

/* Haut-droite */
.sol-3 {
    top: 78%;
    left: 88%;
}

/* Bas-droite */
.sol-4 {
    top: 95%;
    left: 50%;
}

/* Bas */
.sol-5 {
    top: 78%;
    left: 12%;
}

/* Bas-gauche */
.sol-6 {
    top: 22%;
    left: 12%;
}

/* Haut-gauche */

/* Cartes de solution */
.sol-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 18px 14px;
    text-align: center;
    width: 145px;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.sol-card:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.15);
    border-color: var(--primary-light);
}

.sol-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.sol-icon object {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sol-card h3 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
    line-height: 1.3;
}

.sol-card p {
    font-size: 10px;
    color: var(--text-muted);
    line-height: 1.3;
}

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

position: absolute;
transform: translate(-50%, -50%);
}

/* Positionnement des 6 solutions */
.item-1 {
    top: 8%;
    left: 50%;
}

/* Haut */
.item-2 {
    top: 22%;
    left: 85%;
}

/* Haut-droite */
.item-3 {
    top: 78%;
    left: 85%;
}

/* Bas-droite */
.item-4 {
    top: 92%;
    left: 50%;
}

/* Bas */
.item-5 {
    top: 78%;
    left: 15%;
}

/* Bas-gauche */
.item-6 {
    top: 22%;
    left: 15%;
}

/* Haut-gauche */

/* Cartes circulaires */
.solution-card-circular {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 20px 16px;
    text-align: center;
    width: 150px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.solution-card-circular:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.solution-icon-img {
    width: 52px;
    height: 52px;
    margin: 0 auto 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.solution-icon-img object {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.solution-card-circular h3 {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
    line-height: 1.3;
}

.solution-card-circular p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.3;
}

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

.section-circuit-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.circuit-svg-section {
    width: 100%;
    height: 100%;
}

.circuit-svg-section .circuit-base-lines path {
    fill: none;
    stroke: var(--primary);
    stroke-width: 1.5;
    stroke-linecap: round;
}

.advantages .container {
    position: relative;
    z-index: 1;
}

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

.advantages-list {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.advantage-item {
    display: flex;
    gap: 16px;
}

.advantage-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: white;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

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

.advantage-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.advantage-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

/* Stats Card */
.stats-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-xl);
}

.stats-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 28px;
}

.stats-card-title {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.stats-card-badge.live {
    font-size: 12px;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.big-stat {
    text-align: center;
    margin-bottom: 28px;
}

.big-stat-value {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1;
}

.big-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 8px;
}

.stats-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 28px;
}

.mini-stat {
    text-align: center;
    padding: 14px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
}

.mini-stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

.mini-stat-label {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 4px;
}

.stats-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 70px;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.chart-bar {
    flex: 1;
    height: var(--height);
    background: var(--border);
    border-radius: 4px 4px 0 0;
    transition: all var(--transition-base);
}

.chart-bar.active {
    background: var(--gradient-primary);
}

.chart-bar:hover {
    background: var(--primary-light);
}

/* ===========================================
   Coverage Section
   =========================================== */
.coverage {
    padding: var(--section-padding) 0;
}

.coverage-map {
    margin-top: 50px;
}

.map-container {
    position: relative;
    height: 350px;
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 40px;
}

.map-container::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%232563eb' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.map-highlight {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
    animation: map-pulse 4s ease-in-out infinite;
}

.map-highlight.europe {
    width: 180px;
    height: 180px;
    top: 20%;
    left: 45%;
}

.map-highlight.americas {
    width: 160px;
    height: 160px;
    top: 30%;
    left: 15%;
    animation-delay: 1.3s;
}

.map-highlight.asia {
    width: 200px;
    height: 200px;
    top: 25%;
    right: 10%;
    animation-delay: 2.6s;
}

@keyframes map-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.6;
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
    }
}

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

.region {
    text-align: center;
    padding: 28px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.region:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

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

.region-count {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(37, 99, 235, 0.1);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.region p {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===========================================
   Trust Section
   =========================================== */
.trust {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
    color: var(--text-light);
    position: relative;
    overflow: hidden;
}

.trust .container {
    position: relative;
    z-index: 1;
}

.trust .section-tag {
    color: var(--gold);
}

.trust .section-title {
    color: white;
}

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

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

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.trust-badge-icon {
    font-size: 26px;
}

.trust-badge-text strong {
    display: block;
    font-size: 15px;
    color: white;
    margin-bottom: 2px;
}

.trust-badge-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.trust-testimonial blockquote {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.trust-testimonial p {
    font-size: 18px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    color: white;
}

.author-info strong {
    display: block;
    color: white;
    font-size: 15px;
}

.author-info span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

/* ===========================================
   CTA Section
   =========================================== */
.cta {
    padding: var(--section-padding) 0;
}

.cta-card {
    position: relative;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    padding: 70px;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-circle:nth-child(1) {
    width: 250px;
    height: 250px;
    top: -40px;
    right: -40px;
}

.cta-circle:nth-child(2) {
    width: 350px;
    height: 350px;
    top: 0;
    right: -80px;
}

.cta-circle:nth-child(3) {
    width: 450px;
    height: 450px;
    top: 40px;
    right: -120px;
}

/* ===========================================
   Footer
   =========================================== */
.footer {
    background: var(--bg-darker);
    color: rgba(255, 255, 255, 0.7);
    padding: 70px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-links a {
    padding: 8px 12px;
    /* ajustable selon ton design */
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: inline-flex;
    /* inline-flex pour que le bouton prenne la taille du texte */
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all var(--transition-base);
}


.social-links a:hover {
    background: var(--primary);
    color: white;
}

.footer-links h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 18px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
}

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a:hover {
    color: white;
}

/* ===========================================
   Responsive Design
   =========================================== */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }

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

@media (max-width: 992px) {

    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .mobile-menu {
        display: block;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .floating-cards {
        display: none;
    }

    .advantages-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

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

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

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

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

    .cta-card {
        padding: 40px 28px;
    }

    .cta-card h2 {
        font-size: 26px;
    }

    .cta-decoration {
        display: none;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-legal {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        display: none;
    }

    .logo-hub {
        width: 180px;
        height: 180px;
    }

    .hero-logo-a {
        width: 130px;
        height: 130px;
    }

    .map-container {
        height: 220px;
    }
}

/* ===========================================
   Globe Network Visualization
   =========================================== */
.globe-container {
    position: relative;
    width: 100%;
    max-width: 480px;
    aspect-ratio: 1;
}

.globe-network {
    width: 100%;
    height: 100%;
}

/* Flow lines animation */
.globe-flow {
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    filter: url(#softGlow);
}

.gf-1,
.gf-4,
.gf-7,
.gf-10 {
    stroke: #3b82f6;
}

.gf-2,
.gf-5,
.gf-8,
.gf-11 {
    stroke: #60a5fa;
}

.gf-3,
.gf-6,
.gf-9,
.gf-12 {
    stroke: #8b5cf6;
}

.gf-1 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 0s;
}

.gf-2 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 0.3s;
}

.gf-3 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 0.6s;
}

.gf-4 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 0.9s;
}

.gf-5 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 1.2s;
}

.gf-6 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 1.5s;
}

.gf-7 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 1.8s;
}

.gf-8 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 2.1s;
}

.gf-9 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 2.4s;
}

.gf-10 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 2.7s;
}

.gf-11 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 3s;
}

.gf-12 {
    stroke-dasharray: 20 150;
    stroke-dashoffset: 170;
    animation: globe-flow-anim 4s ease-in-out infinite;
    animation-delay: 3.3s;
}

@keyframes globe-flow-anim {
    0% {
        stroke-dashoffset: 170;
        opacity: 0;
    }

    10% {
        opacity: 0.9;
    }

    90% {
        opacity: 0.9;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Globe nodes */
.globe-node {
    fill: #3b82f6;
    filter: url(#softGlow);
}

.gn-1,
.gn-4,
.gn-7,
.gn-10 {
    fill: #3b82f6;
}

.gn-2,
.gn-5,
.gn-8,
.gn-11 {
    fill: #60a5fa;
}

.gn-3,
.gn-6,
.gn-9,
.gn-12 {
    fill: #8b5cf6;
}

.globe-node {
    animation: node-pulse-globe 3s ease-in-out infinite;
}

.gn-1 {
    animation-delay: 0s;
}

.gn-2 {
    animation-delay: 0.25s;
}

.gn-3 {
    animation-delay: 0.5s;
}

.gn-4 {
    animation-delay: 0.75s;
}

.gn-5 {
    animation-delay: 1s;
}

.gn-6 {
    animation-delay: 1.25s;
}

.gn-7 {
    animation-delay: 1.5s;
}

.gn-8 {
    animation-delay: 1.75s;
}

.gn-9 {
    animation-delay: 2s;
}

.gn-10 {
    animation-delay: 2.25s;
}

.gn-11 {
    animation-delay: 2.5s;
}

.gn-12 {
    animation-delay: 2.75s;
}

@keyframes node-pulse-globe {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.3);
    }
}

/* Node rings */
.node-ring {
    animation: ring-pulse 4s ease-in-out infinite;
}

.nr-1 {
    animation-delay: 0s;
}

.nr-2 {
    animation-delay: 1.3s;
}

.nr-3 {
    animation-delay: 2.6s;
}

@keyframes ring-pulse {

    0%,
    100% {
        opacity: 0.2;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.15);
    }
}

/* Hub animation */
.hub-glow-globe {
    animation: hub-glow-pulse-globe 3s ease-in-out infinite;
}

@keyframes hub-glow-pulse-globe {

    0%,
    100% {
        opacity: 0.7;
        transform: scale(1);
        transform-origin: 250px 250px;
    }

    50% {
        opacity: 1;
        transform: scale(1.15);
        transform-origin: 250px 250px;
    }
}

.hub-ring-1,
.hub-ring-2,
.hub-ring-3 {
    transform-origin: 250px 250px;
}

.hub-ring-1 {
    animation: hub-ring-rotate 20s linear infinite;
}

.hub-ring-2 {
    animation: hub-ring-rotate 15s linear infinite reverse;
}

.hub-ring-3 {
    animation: hub-ring-rotate 10s linear infinite;
}

@keyframes hub-ring-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Particles */
.g-particle {
    animation: particle-float 6s ease-in-out infinite;
}

.gp-1 {
    animation-delay: 0s;
}

.gp-2 {
    animation-delay: 1s;
}

.gp-3 {
    animation-delay: 2s;
}

.gp-4 {
    animation-delay: 3s;
}

.gp-5 {
    animation-delay: 4s;
}

@keyframes particle-float {

    0%,
    100% {
        opacity: 0.4;
        transform: translateY(0);
    }

    50% {
        opacity: 0.8;
        transform: translateY(-8px);
    }
}

/* Globe grid subtle rotation */
.globe-grid {
    transform-origin: 250px 250px;
    animation: globe-rotate 120s linear infinite;
}

@keyframes globe-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .globe-container {
        max-width: 380px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .globe-container {
        max-width: 320px;
    }
}

@media (max-width: 480px) {
    .globe-container {
        max-width: 280px;
    }
}

/* ===========================================
   Section Circuits - Distributed Animation
   =========================================== */

/* Solutions section circuits */
.solutions {
    position: relative;
    overflow: hidden;
}

.solutions-circuits {
    z-index: 0;
}

.solutions .container {
    position: relative;
    z-index: 1;
}

/* Coverage section circuits */
.coverage {
    position: relative;
    overflow: hidden;
}

.coverage-circuits {
    z-index: 0;
}

.coverage .container {
    position: relative;
    z-index: 1;
}

/* Footer circuits */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-circuits {
    z-index: 0;
}

.footer .container {
    position: relative;
    z-index: 1;
}

/* Section pulse animations - varied timings */
.section-pl-1 {
    stroke-dasharray: 25 250;
    stroke-dashoffset: 275;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 0s;
}

.section-pl-2 {
    stroke-dasharray: 25 250;
    stroke-dashoffset: 275;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 1.2s;
}

.section-pl-3 {
    stroke-dasharray: 20 200;
    stroke-dashoffset: 220;
    animation: section-pulse 4.5s ease-in-out infinite;
    animation-delay: 2.5s;
}

.section-pl-4 {
    stroke-dasharray: 20 200;
    stroke-dashoffset: 220;
    animation: section-pulse 4.5s ease-in-out infinite;
    animation-delay: 3.8s;
}

.section-pl-5 {
    stroke-dasharray: 30 350;
    stroke-dashoffset: 380;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 0.5s;
}

.section-pl-6 {
    stroke-dasharray: 30 350;
    stroke-dashoffset: 380;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

.section-pl-7 {
    stroke-dasharray: 30 350;
    stroke-dashoffset: 380;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 3.5s;
}

.section-pl-8 {
    stroke-dasharray: 30 350;
    stroke-dashoffset: 380;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 5s;
}

.section-pl-9 {
    stroke-dasharray: 25 200;
    stroke-dashoffset: 225;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 0.3s;
}

.section-pl-10 {
    stroke-dasharray: 25 200;
    stroke-dashoffset: 225;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.section-pl-11 {
    stroke-dasharray: 25 200;
    stroke-dashoffset: 225;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 2.8s;
}

.section-pl-12 {
    stroke-dasharray: 25 200;
    stroke-dashoffset: 225;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 4s;
}

.section-pl-13 {
    stroke-dasharray: 25 250;
    stroke-dashoffset: 275;
    animation: section-pulse 5.5s ease-in-out infinite;
    animation-delay: 0s;
}

.section-pl-14 {
    stroke-dasharray: 25 250;
    stroke-dashoffset: 275;
    animation: section-pulse 5.5s ease-in-out infinite;
    animation-delay: 1.4s;
}

.section-pl-15 {
    stroke-dasharray: 20 200;
    stroke-dashoffset: 220;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 2.8s;
}

.section-pl-16 {
    stroke-dasharray: 20 200;
    stroke-dashoffset: 220;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 4.2s;
}

@keyframes section-pulse {
    0% {
        stroke-dashoffset: var(--offset, 275);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* Section pulse line styles */
.section-pulses .pulse-line {
    fill: none;
    stroke: var(--primary-light);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 4px var(--primary));
}

.section-pulses .pulse-line.gold {
    stroke: var(--gold);
    filter: drop-shadow(0 0 4px var(--gold));
}

/* Make circuits in dark sections more visible */
.footer .circuit-base-lines path {
    stroke: rgba(255, 255, 255, 0.15);
}

.footer .circuit-nodes circle {
    fill: rgba(255, 255, 255, 0.2);
}

.footer .section-pulses .pulse-line {
    stroke: rgba(96, 165, 250, 0.6);
    filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.4));
}

.footer .section-pulses .pulse-line.gold {
    stroke: rgba(212, 175, 55, 0.7);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.5));
}

/* ===========================================
   Audience Section
   =========================================== */
.audience {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.audience .container {
    position: relative;
    z-index: 1;
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.audience__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 16px;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.audience__item:hover {
    background: white;
    border-color: var(--primary-light);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.audience__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: all var(--transition-base);
}

.audience__item:hover .audience__icon {
    background: var(--gradient-primary);
}

.audience__icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
    transition: stroke var(--transition-base);
}

.audience__item:hover .audience__icon svg {
    stroke: white;
}

.audience__name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

/* ===========================================
   Responsive - Solutions Circular & Audience
   =========================================== */
@media (max-width: 1200px) {
    .solutions-circular-wrapper {
        max-width: 750px;
        height: 560px;
    }

    .solutions-center-logo {
        width: 140px;
        height: 140px;
    }

    .sol-card {
        width: 130px;
        padding: 14px 10px;
    }

    .sol-card h3 {
        font-size: 11px;
    }

    .sol-card p {
        font-size: 9px;
    }

    .audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 640px;
    }
}

@media (max-width: 992px) {
    .solutions-circular-wrapper {
        display: none;
    }

    .audience__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 560px;
        gap: 16px;
    }

    .audience__item {
        padding: 20px 12px;
    }

    .audience__icon {
        width: 48px;
        height: 48px;
    }

    .audience__name {
        font-size: 13px;
    }
}

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

@media (max-width: 480px) {
    .audience__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .audience__item {
        padding: 16px 10px;
    }

    .audience__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .audience__icon svg {
        width: 22px;
        height: 22px;
    }

    .audience__name {
        font-size: 12px;
    }
}

/* ===========================================
   Circuits Pulse - Solutions, Audience, Trust, CTA
   =========================================== */

/* --- Solutions section pulse --- */
.spl-s1 {
    stroke-dasharray: 18 200;
    stroke-dashoffset: 218;
    animation: section-pulse 5.5s ease-in-out infinite;
    animation-delay: 0s;
}

.spl-s2 {
    stroke-dasharray: 18 240;
    stroke-dashoffset: 258;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 2s;
}

.spl-s3 {
    stroke-dasharray: 18 200;
    stroke-dashoffset: 218;
    animation: section-pulse 5.5s ease-in-out infinite;
    animation-delay: 3.2s;
}

.spl-s4 {
    stroke-dasharray: 18 240;
    stroke-dashoffset: 258;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 4.8s;
}

/* --- Audience section pulse --- */
.spl-a1 {
    stroke-dasharray: 15 180;
    stroke-dashoffset: 195;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.spl-a2 {
    stroke-dasharray: 12 140;
    stroke-dashoffset: 152;
    animation: section-pulse 4.5s ease-in-out infinite;
    animation-delay: 2.3s;
}

.spl-a3 {
    stroke-dasharray: 15 180;
    stroke-dashoffset: 195;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 3.8s;
}

.spl-a4 {
    stroke-dasharray: 12 140;
    stroke-dashoffset: 152;
    animation: section-pulse 4.5s ease-in-out infinite;
    animation-delay: 5.2s;
}

/* --- Trust section pulse (doré) --- */
.spl-t1 {
    stroke-dasharray: 18 230;
    stroke-dashoffset: 248;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 0.3s;
}

.spl-t2 {
    stroke-dasharray: 12 140;
    stroke-dashoffset: 152;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 2.2s;
}

.spl-t3 {
    stroke-dasharray: 18 230;
    stroke-dashoffset: 248;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 3.6s;
}

.spl-t4 {
    stroke-dasharray: 12 140;
    stroke-dashoffset: 152;
    animation: section-pulse 5s ease-in-out infinite;
    animation-delay: 5.1s;
}

/* Trust pulse gold override */
.trust .section-pulses .pulse-line.gold {
    stroke: rgba(212, 175, 55, 0.55);
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.35));
}

/* --- CTA section circuits --- */
.cta-circuits {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.cta-pulse-line {
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.25));
}

.cpl-1 {
    stroke-dasharray: 14 170;
    stroke-dashoffset: 184;
    animation: cta-pulse 5s ease-in-out infinite;
    animation-delay: 0s;
}

.cpl-2 {
    stroke-dasharray: 14 200;
    stroke-dashoffset: 214;
    animation: cta-pulse 5.5s ease-in-out infinite;
    animation-delay: 1.6s;
}

.cpl-3 {
    stroke-dasharray: 14 170;
    stroke-dashoffset: 184;
    animation: cta-pulse 5s ease-in-out infinite;
    animation-delay: 3s;
}

.cpl-4 {
    stroke-dasharray: 14 200;
    stroke-dashoffset: 214;
    animation: cta-pulse 5.5s ease-in-out infinite;
    animation-delay: 4.3s;
}

@keyframes cta-pulse {
    0% {
        stroke-dashoffset: 214;
        opacity: 0;
    }

    12% {
        opacity: 0.45;
    }

    88% {
        opacity: 0.45;
    }

    100% {
        stroke-dashoffset: 0;
        opacity: 0;
    }
}

/* ===========================================
   Solutions Grid 8 - New Layout
   =========================================== */
.solutions-grid-8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.sol-card-8 {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all var(--transition-base);
    overflow: hidden;
}

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

.sol-card-8:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.12);
    border-color: var(--primary-light);
}

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

.sol-icon-8 {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(124, 58, 237, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

.sol-icon-8 object {
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sol-info h3 {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.sol-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Badge "Nouveau" pour Apple/Google Pay */
.sol-card-new {
    border-color: rgba(16, 185, 129, 0.3);
}

.sol-card-new::before {
    background: linear-gradient(135deg, #10b981, #059669);
}

.sol-badge-new {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Solutions Grid 8 */
@media (max-width: 1100px) {
    .solutions-grid-8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .sol-card-8 {
        padding: 20px 16px;
    }
}

/* ===========================================
   Trust Section - Redesigned
   =========================================== */
.trust-header {
    margin-bottom: 50px;
}

.trust-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.trust-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.trust-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-4px);
}

.trust-card-main {
    border-color: rgba(212, 175, 55, 0.25);
}

.trust-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(240, 216, 117, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-card-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--gold);
}

.trust-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
}

.trust-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 16px;
}

.trust-card-link {
    display: inline-block;
    margin-top: 8px;
}

.trust-partner-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.trust-partner-logo:hover {
    opacity: 1;
}

.trust-badge-inline {
    margin-top: 8px;
}

.badge-certified {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

/* Trust Stats */
.trust-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.trust-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 6px;
}

.trust-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Trust */
@media (max-width: 992px) {
    .trust-cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 600px) {
    .trust-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .trust-stat-value {
        font-size: 28px;
    }
}

/* ===========================================
   CTA Section - Dual Cards
   =========================================== */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.cta-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    overflow: hidden;
}

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

.cta-card-ades {
    background: linear-gradient(135deg, #eb5e2a 0%, #d54820 100%);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-card h2 {
    font-family: var(--font-display);
    font-size: 26px;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    line-height: 1.3;
}

.cta-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 24px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* ADES specific styles */
.ades-logo-wrapper {
    margin-bottom: 16px;
}

.ades-logo {
    display: block;
    width: 160px;
    aspect-ratio: 768 / 262;
    height: auto;
    border-radius: 8px;
    background: #ffffff;
    padding: 10px 16px;
}

.btn-ades {
    background: #000000;
    color: #ffffff;
    border: 2px solid #000000;
}

.btn-ades:hover {
    background: #ffffff;
    color: #000000;
}

/* ADES pulse animations */
.ades-pulse-line {
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

.apl-1 {
    stroke-dasharray: 12 150;
    stroke-dashoffset: 162;
    animation: cta-pulse 5s ease-in-out infinite;
    animation-delay: 0.5s;
}

.apl-2 {
    stroke-dasharray: 12 150;
    stroke-dashoffset: 162;
    animation: cta-pulse 5s ease-in-out infinite;
    animation-delay: 2.5s;
}

/* CTA Decorations */
.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.cta-circle:nth-child(1) {
    width: 180px;
    height: 180px;
    top: -30px;
    right: -30px;
}

.cta-circle:nth-child(2) {
    width: 260px;
    height: 260px;
    top: 0;
    right: -60px;
}

.cta-circle:nth-child(3) {
    width: 340px;
    height: 340px;
    top: 30px;
    right: -90px;
}

.cta-decoration-ades .cta-circle {
    border-color: rgba(0, 0, 0, 0.1);
}

/* Responsive CTA */
@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 40px 30px;
    }

    .cta-card h2 {
        font-size: 22px;
    }
}

@media (max-width: 600px) {
    .cta-card {
        padding: 32px 24px;
    }

    .cta-decoration {
        display: none;
    }
}

/* Additional pulse animations for new sections */
.spl-s5 {
    stroke-dasharray: 18 200;
    stroke-dashoffset: 218;
    animation: section-pulse 5.5s ease-in-out infinite;
    animation-delay: 1.5s;
}

.spl-s6 {
    stroke-dasharray: 18 240;
    stroke-dashoffset: 258;
    animation: section-pulse 6s ease-in-out infinite;
    animation-delay: 3.5s;
}

.spl-s7 {
    stroke-dasharray: 18 200;
    stroke-dashoffset: 218;
    animation: section-pulse 5.5s ease-in-out infinite;
    animation-delay: 5s;
}

/* ===========================================
   Dropdown Navigation - Desktop v7.1.0
   =========================================== */
.nav-item {
    position: relative;
}

.nav-item--dropdown {
    position: relative;
}

.nav-dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px 0;
    transition: color var(--transition-fast);
}

.nav-dropdown-trigger:hover {
    color: var(--text-dark);
}

.dropdown-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.dropdown-open .dropdown-chevron {
    transform: rotate(180deg);
}

/* Dropdown Menu Panel */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    min-width: 220px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 8px 0;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.18s ease;
    z-index: 1000;
    list-style: none;
}

/* Arrow pointer */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.95);
    border-left: 1px solid rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-body);
    transition: all 0.15s ease;
    text-decoration: none;
}

.dropdown-menu a:hover {
    background: rgba(37, 99, 235, 0.06);
    color: var(--primary);
}

.dropdown-menu a:focus {
    outline: none;
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

/* Remove underline effect from dropdown links */
.dropdown-menu a::after {
    display: none;
}

/* ===========================================
   Mobile Dropdown Navigation v7.1.0
   =========================================== */
.mobile-nav-item {
    margin: 0;
}

.mobile-nav-item--dropdown {
    position: relative;
}

.mobile-dropdown-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
}

.mobile-dropdown-trigger .dropdown-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}

.mobile-dropdown-open .mobile-dropdown-trigger .dropdown-chevron {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.25s ease;
    opacity: 0;
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.mobile-dropdown-open .mobile-dropdown-menu {
    max-height: 500px;
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 8px;
}

.mobile-dropdown-menu li {
    margin: 0;
}

.mobile-dropdown-menu a {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-body);
    padding: 10px 0 10px 16px;
    border-left: 2px solid var(--border);
    transition: all 0.15s ease;
}

.mobile-dropdown-menu a:hover,
.mobile-dropdown-menu a:focus {
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 20px;
}

/* ===========================================
   Scroll Reveal Animations v7.1.0
   =========================================== */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.55s ease-out, transform 0.55s ease-out;
}

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

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }

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

    .dropdown-menu,
    .mobile-dropdown-menu {
        transition: none;
    }

    .dropdown-chevron {
        transition: none;
    }
}

/* ===========================================
   Placeholder Sections v7.1.0
   =========================================== */
.about-section,
.faq-section,
.blog-section,
.help-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.about-section {
    background: linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
}

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

.blog-section {
    background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.help-section {
    background: var(--bg-white);
    padding-bottom: 40px;
}

/* ===========================================
   Responsive Adjustments v7.1.0
   =========================================== */
@media (max-width: 992px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hide desktop dropdowns on mobile */
    .nav-item--dropdown .dropdown-menu {
        display: none;
    }
}

@media (max-width: 768px) {

    .about-section,
    .faq-section,
    .blog-section,
    .help-section {
        padding: 60px 0;
    }

    .help-section {
        padding-bottom: 30px;
    }
}

/* Version marker for debugging */
/* Allopass v7.2.0 */

/* ===========================================
   DCB PAGE STYLES (v7.2.0)
   =========================================== */

/* Breadcrumb Bar */
.breadcrumb-bar {
    background: var(--bg-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-body);
    transition: color var(--transition-fast);
}

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

.breadcrumb-sep {
    color: var(--text-muted);
    opacity: 0.5;
}

.breadcrumb-current {
    color: var(--primary);
    font-weight: 500;
}

/* DCB Hero */
.dcb-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.dcb-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.8;
}

.dcb-hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.dcb-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.dcb-hero-content .section-tag {
    color: var(--gold);
    margin-bottom: 16px;
    display: inline-block;
}

.dcb-hero-title {
    font-family: var(--font-display);
    font-size: 52px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.dcb-hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 32px;
}

.dcb-hero-subtitle strong {
    color: var(--primary-light);
}

.dcb-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* DCB Hero outline button fix (v7.5.0 hotfix) */
.dcb-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.dcb-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* DCB Flow Preview Card */
.dcb-flow-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.dcb-flow-preview-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.preview-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.preview-dot:first-child {
    background: #ef4444;
}

.preview-dot:nth-child(2) {
    background: #eab308;
}

.preview-dot:nth-child(3) {
    background: #22c55e;
}

.preview-title {
    margin-left: auto;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.dcb-flow-preview-steps {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.preview-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-base);
}

.preview-step.active {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
}

.preview-step-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.preview-step.active .preview-step-num {
    background: var(--gradient-primary);
    color: white;
}

.preview-step-text strong {
    display: block;
    color: white;
    font-size: 14px;
    margin-bottom: 2px;
}

.preview-step-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

/* DCB Benefits Section */
.dcb-benefits {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

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

.dcb-benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.dcb-benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.1);
    border-color: var(--primary-light);
}

.dcb-benefit-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dcb-benefit-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.dcb-benefit-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.dcb-benefit-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* DCB Flow Section (Tabs) */
.dcb-flow {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.dcb-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dcb-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: white;
    border: 2px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition-base);
}

.dcb-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.dcb-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.dcb-tab-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dcb-tab-icon svg {
    width: 18px;
    height: 18px;
}

.dcb-tab.active .dcb-tab-icon svg {
    stroke: white;
}

/* Tab Panels */
.dcb-tab-panel {
    display: none;
    animation: dcbFadeIn 0.3s ease;
}

.dcb-tab-panel.active {
    display: block;
}

@keyframes dcbFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

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

/* DCB Stepper */
.dcb-stepper {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dcb-step {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    position: relative;
}

.dcb-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 18px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.dcb-step-marker {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--text-body);
    position: relative;
    z-index: 1;
}

.dcb-step-marker.success {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-color: transparent;
    color: white;
}

.dcb-step-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.dcb-step-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Mock Phone */
.dcb-flow-mock {
    display: flex;
    justify-content: center;
}

.mock-phone {
    width: 280px;
    background: linear-gradient(180deg, #1e293b, #0f172a);
    border-radius: 32px;
    padding: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 3px solid #334155;
}

.mock-phone-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.mock-phone-content {
    background: white;
    border-radius: 20px;
    padding: 32px 24px;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-card {
    text-align: center;
    width: 100%;
}

.mock-logo {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.mock-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.mock-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 8px;
}

.mock-phone-num,
.mock-hint {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.mock-btn {
    width: 100%;
    padding: 14px 24px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* OTP Input Mock */
.mock-otp {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 16px;
}

.mock-otp span {
    width: 44px;
    height: 52px;
    background: var(--bg-light);
    border: 2px solid var(--primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
}

/* DCB Capabilities Section */
.dcb-capabilities {
    padding: var(--section-padding) 0;
    background: white;
}

.dcb-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 50px;
}

.dcb-capability-col {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

.dcb-capability-col:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.dcb-capability-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.dcb-capability-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.dcb-capability-col h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.dcb-capability-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.dcb-capability-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--text-body);
}

.dcb-capability-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.dcb-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dcb-tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
}

/* DCB Use Cases */
.dcb-usecases {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.dcb-usecases-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 50px;
}

.dcb-usecases-grid > .dcb-usecase-card {
    /* Base: try to fit 4 per row when the container is wide enough.
       The 24px gap × 3 = 72px is shared between the 4 cards. */
    flex: 0 1 calc((100% - 72px) / 4);
    min-width: 220px;
    max-width: 320px;
}

.dcb-usecase-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.dcb-usecase-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-light);
}

.dcb-usecase-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(139, 92, 246, 0.06));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dcb-usecase-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--primary);
}

.dcb-usecase-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.dcb-usecase-card p {
    font-size: 13px;
    color: var(--text-muted);
}

/* DCB Transparency */
.dcb-transparency {
    padding: 60px 0;
    background: white;
}

.dcb-transparency-card {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: rgba(59, 130, 246, 0.04);
    border: 1px solid rgba(59, 130, 246, 0.15);
    border-radius: var(--radius-xl);
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
}

.dcb-transparency-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: var(--primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dcb-transparency-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.dcb-transparency-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.dcb-transparency-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dcb-transparency-content li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.dcb-transparency-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* DCB FAQ */
.dcb-faq {
    padding: var(--section-padding) 0;
    background: var(--bg-white);
}

.dcb-faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.dcb-faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    overflow: hidden;
}

.dcb-faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    transition: all var(--transition-base);
}

.dcb-faq-trigger:hover {
    color: var(--primary);
}

.dcb-faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
    stroke: var(--text-muted);
}

.dcb-faq-item.open .dcb-faq-chevron {
    transform: rotate(180deg);
}

.dcb-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.dcb-faq-item.open .dcb-faq-content {
    max-height: 300px;
    padding: 0 24px 20px;
}

.dcb-faq-content p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

/* DCB CTA Section */
.dcb-cta {
    padding: var(--section-padding) 0;
    background: rgb(21, 28, 65);
}

/* CTA Card Secondary Style */
.cta-card-secondary {
    background: var(--bg-light);
    border: 1px solid var(--border);
}

.cta-card-secondary h2 {
    color: var(--text-dark);
}

.cta-card-secondary p {
    color: var(--text-body);
}

/* DCB Contact Form */
.dcb-contact {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.dcb-contact-form-wrapper {
    max-width: 600px;
    margin: 40px auto 0;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
}

.dcb-contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.dcb-contact-form .form-group {
    margin-bottom: 20px;
}

.dcb-contact-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.dcb-contact-form input,
.dcb-contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.dcb-contact-form input:focus,
.dcb-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.dcb-contact-form textarea {
    resize: vertical;
    min-height: 100px;
}

.dcb-contact-form button[type="submit"] {
    width: 100%;
}

/* Navbar dark variant for DCB page */
.navbar--dark {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
}

.navbar--dark .logo-text,
.navbar--dark .nav-dropdown-trigger {
    color: rgba(255, 255, 255, 0.9);
}

.navbar--dark.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--border);
}

.navbar--dark.scrolled .logo-text,
.navbar--dark.scrolled .nav-dropdown-trigger {
    color: var(--text-body);
}

.navbar--dark .mobile-menu-btn span {
    background: white;
}

.navbar--dark.scrolled .mobile-menu-btn span {
    background: var(--text-dark);
}

/* DCB Page Responsive */
@media (max-width: 1100px) {
    .dcb-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dcb-hero-title {
        font-size: 40px;
    }

    .dcb-hero-cta {
        justify-content: center;
    }

    .dcb-flow-preview {
        max-width: 400px;
        margin: 40px auto 0;
    }

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

    .dcb-flow-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dcb-capabilities-grid {
        grid-template-columns: 1fr;
    }

    .dcb-usecases-grid > .dcb-usecase-card {
        /* 2 per row */
        flex: 0 1 calc((100% - 24px) / 2);
    }
}

@media (max-width: 768px) {
    .dcb-hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .dcb-hero-title {
        font-size: 32px;
    }

    .dcb-hero-subtitle {
        font-size: 16px;
    }

    .dcb-benefits-grid {
        grid-template-columns: 1fr;
    }
    .dcb-usecases-grid > .dcb-usecase-card {
        flex: 0 1 100%;
        max-width: none;
    }

    .dcb-tabs {
        flex-direction: column;
    }

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

    .mock-phone {
        width: 100%;
        max-width: 280px;
    }

    .dcb-transparency-card {
        flex-direction: column;
    }

    .dcb-contact-form .form-row {
        grid-template-columns: 1fr;
    }

    .dcb-contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .dcb-hero-title {
        font-size: 28px;
    }

    .dcb-hero-cta {
        flex-direction: column;
    }

    .dcb-hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
}
/* =========================
   Commercial Request Page (v7.3.0)
   ========================= */

/* Page Layout */
.commercial-page {
    padding-top: 80px;
}

.commercial-hero {
    padding: 60px 0 40px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.commercial-hero .section-title {
    font-size: 40px;
}

.commercial-form-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

/* Layout Grid */
.commercial-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: start;
}

/* Form Card */
.commercial-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Form Styles */
.commercial-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.commercial-form .form-group {
    margin-bottom: 24px;
}

.commercial-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.commercial-form .required {
    color: #ef4444;
}

.commercial-form .optional,
.refund-form .optional,
.support-form .optional {
    color: var(--text-muted);
    font-weight: 400;
}

.commercial-form input,
.commercial-form select,
.commercial-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.commercial-form input:focus,
.commercial-form select:focus,
.commercial-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.commercial-form input:invalid:not(:placeholder-shown),
.commercial-form select:invalid:not([value=""]),
.commercial-form .has-error input,
.commercial-form .has-error select,
.commercial-form .has-error textarea {
    border-color: #ef4444;
}

.commercial-form input:invalid:not(:placeholder-shown):focus,
.commercial-form .has-error input:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.commercial-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.commercial-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Form Hints & Errors */
.form-hint {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 6px;
}

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

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

/* Textarea Footer */
.form-textarea-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 6px;
}

.char-counter {
    font-size: 12px;
    color: var(--text-muted);
}

.char-min {
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.char-min--reached {
    color: var(--success);
}

.form-checkbox-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 8px;
    margin-bottom: 4px;
}

.checkbox-label--compact {
    font-size: 13px;
    padding: 8px 12px;
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.checkbox-label--compact:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.03);
}

.checkbox-label--compact input:checked ~ .checkbox-text {
    color: var(--primary);
    font-weight: 600;
}

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

/* File Upload */
.file-upload-area {
    position: relative;
    border: 2px dashed var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.file-upload-area:hover {
    border-color: var(--primary-light);
    background: rgba(37, 99, 235, 0.02);
}

.file-upload-area input[type="file"] {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
}

.file-upload-content {
    pointer-events: none;
}

.file-upload-content svg {
    width: 40px;
    height: 40px;
    stroke: var(--text-muted);
    margin-bottom: 12px;
}

.file-upload-content span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.file-upload-content small {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* File List */
.file-list {
    margin-top: 12px;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    font-size: 13px;
}

.file-item-info {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.file-item-name {
    color: var(--text-dark);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-item-size {
    color: var(--text-muted);
    white-space: nowrap;
}

.file-item-remove {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.file-item-remove:hover {
    color: #ef4444;
}

/* Checkbox */
.form-group-checkbox {
    margin-bottom: 24px;
}

.checkbox-label {
    display: flex !important;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 0 !important;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-custom {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--border);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
}

.checkbox-label input:checked + .checkbox-custom {
    background: var(--primary);
    border-color: var(--primary);
}

.checkbox-label input:checked + .checkbox-custom::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    margin-bottom: 2px;
}

.checkbox-label input:focus-visible + .checkbox-custom {
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.checkbox-text {
    color: var(--text-body);
    line-height: 1.5;
}

.checkbox-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* Captcha Placeholder */
.captcha-placeholder {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 14px;
}

.captcha-box svg {
    width: 24px;
    height: 24px;
}

.captcha-placeholder-link {
    font-size: 12px;
    color: var(--primary);
}

/* Submit Button */
.form-submit {
    margin-top: 32px;
    margin-bottom: 0;
}

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

/* Success Message */
.form-success {
    text-align: center;
    padding: 60px 40px;
}

.form-success-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.form-success-icon svg {
    width: 36px;
    height: 36px;
    stroke: white;
}

.form-success h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.form-success p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

/* Side Cards */
.commercial-side {
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: sticky;
    top: 100px;
}

.commercial-side-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 28px;
}

.commercial-side-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

/* Benefits List */
.commercial-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commercial-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.5;
}

.commercial-benefits li:last-child {
    margin-bottom: 0;
}

.commercial-benefits svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--primary);
    margin-top: 2px;
}

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

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-body);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
}

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

/* Responsive */
@media (max-width: 992px) {
    .commercial-layout {
        grid-template-columns: 1fr;
    }
    
    .commercial-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .commercial-side-card {
        flex: 1;
        min-width: 280px;
    }
}

@media (max-width: 768px) {
    .commercial-hero .section-title {
        font-size: 32px;
    }
    
    .commercial-form-card {
        padding: 24px;
    }
    
    .commercial-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .commercial-side {
        flex-direction: column;
    }
    
    .commercial-side-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .commercial-hero {
        padding: 40px 0 30px;
    }
    
    .commercial-form-section {
        padding: 40px 0 60px;
    }
    
    .commercial-form-card {
        padding: 20px;
    }
    
    .file-upload-area {
        padding: 24px 16px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .commercial-form input,
    .commercial-form select,
    .commercial-form textarea,
    .file-upload-area,
    .checkbox-custom {
        transition: none;
    }
}

/* =========================
   Support Merchant Page (v7.4.0)
   ========================= */

/* Page Layout */
.support-page {
    padding-top: 80px;
}

.support-hero {
    padding: 60px 0 40px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.support-hero .section-title {
    font-size: 40px;
}

.support-hero-cta {
    margin-top: 28px;
}

.support-form-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

/* Layout Grid */
.support-layout {
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 40px;
    align-items: start;
}

/* Form Card */
.support-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.support-form-header {
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.support-form-header h2 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.support-form-header p {
    font-size: 14px;
    color: var(--text-muted);
}

/* Form Sections */
.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.form-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.form-section-num {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

/* Form Styles (extend commercial form) */
.support-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.support-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.support-form .required {
    color: #ef4444;
}

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

.support-form input,
.support-form select,
.support-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.support-form .has-error input,
.support-form .has-error select,
.support-form .has-error textarea {
    border-color: #ef4444;
}

.support-form .has-error input:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.support-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.support-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* Honeypot */
.honeypot-field {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
}

/* Loading Spinner */
.btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.spinner {
    width: 20px;
    height: 20px;
    animation: spin 1s linear infinite;
}

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

/* Side Cards */
.support-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.support-side-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.support-side-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.support-side-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.support-side-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.support-side-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Support Info List */
.support-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-info-list li {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.support-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.support-info-list li:first-child {
    padding-top: 0;
}

.support-info-list strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.support-info-list span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Support Tips */
.support-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.support-tips li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

.support-tips li:last-child {
    margin-bottom: 0;
}

.support-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Button Small */
.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 992px) {
    .support-layout {
        grid-template-columns: 1fr;
    }
    
    .support-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .support-side-card {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .support-hero .section-title {
        font-size: 32px;
    }
    
    .support-form-card {
        padding: 24px;
    }
    
    .support-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .support-side {
        flex-direction: column;
    }
    
    .support-side-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .support-hero {
        padding: 40px 0 30px;
    }
    
    .support-form-section {
        padding: 40px 0 60px;
    }
    
    .support-form-card {
        padding: 20px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .spinner {
        animation: none;
    }
}

/* =========================
   Refund Support Page (v7.5.0)
   ========================= */

/* Page Layout */
.refund-page {
    padding-top: 80px;
}

.refund-hero {
    padding: 60px 0 40px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.refund-hero .section-title {
    font-size: 40px;
}

.refund-form-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

/* Layout Grid */
.refund-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

/* Form Card */
.refund-form-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Form Styles (reuse existing) */
.refund-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.refund-form .form-group {
    margin-bottom: 24px;
}

.refund-form label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.refund-form .required {
    color: #ef4444;
}

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

.refund-form input,
.refund-form select,
.refund-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-family: inherit;
    background: white;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.refund-form input:focus,
.refund-form select:focus,
.refund-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.refund-form .has-error input,
.refund-form .has-error select,
.refund-form .has-error textarea {
    border-color: #ef4444;
}

.refund-form .has-error input:focus {
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.refund-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
}

.refund-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Side Cards */
.refund-side {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: sticky;
    top: 100px;
}

.refund-side-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.refund-side-card--highlight {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(139, 92, 246, 0.03));
    border-color: rgba(37, 99, 235, 0.15);
}

.refund-side-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.08));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.refund-side-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.refund-side-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.refund-side-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Refund Info List */
.refund-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.refund-info-list li {
    display: flex;
    flex-direction: column;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.refund-info-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.refund-info-list li:first-child {
    padding-top: 0;
}

.refund-info-list strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.refund-info-list span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Refund Tips */
.refund-tips {
    list-style: none;
    padding: 0;
    margin: 0;
}

.refund-tips li {
    position: relative;
    padding-left: 18px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-body);
    line-height: 1.5;
}

.refund-tips li:last-child {
    margin-bottom: 0;
}

.refund-tips li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
    .refund-layout {
        grid-template-columns: 1fr;
    }
    
    .refund-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .refund-side-card {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .refund-hero .section-title {
        font-size: 32px;
    }
    
    .refund-form-card {
        padding: 24px;
    }
    
    .refund-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .refund-side {
        flex-direction: column;
    }
    
    .refund-side-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .refund-hero {
        padding: 40px 0 30px;
    }
    
    .refund-form-section {
        padding: 40px 0 60px;
    }
    
    .refund-form-card {
        padding: 20px;
    }
}

/* =========================
   FAQ Page (v7.6.0)
   ========================= */

/* Page Layout */
.faq-page {
    padding-top: 80px;
}

.faq-hero {
    padding: 60px 0 40px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.faq-hero .section-title {
    font-size: 40px;
}

/* Search */
.faq-search {
    max-width: 560px;
    margin: 32px auto 0;
}

.faq-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.faq-search-icon {
    position: absolute;
    left: 18px;
    width: 20px;
    height: 20px;
    stroke: var(--text-muted);
    pointer-events: none;
}

.faq-search-input {
    width: 100%;
    padding: 16px 50px 16px 52px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 15px;
    font-family: inherit;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.faq-search-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.faq-search-input::placeholder {
    color: var(--text-muted);
}

.faq-search-clear {
    position: absolute;
    right: 16px;
    width: 28px;
    height: 28px;
    border: none;
    background: var(--bg-light);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.faq-search-clear:hover {
    background: var(--border);
}

.faq-search-clear svg {
    width: 14px;
    height: 14px;
    stroke: var(--text-muted);
}

/* Content Section */
.faq-content-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

/* Layout */
.faq-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
    align-items: start;
}

/* Category Tabs */
.faq-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.faq-tab {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 50px;
    background: white;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
}

.faq-tab:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.faq-tab.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

/* No Results */
.faq-no-results {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-muted);
}

.faq-no-results svg {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    opacity: 0.5;
}

.faq-no-results p {
    font-size: 15px;
    line-height: 1.6;
}

/* FAQ Accordion */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-category {
    display: flex;
    flex-direction: column;
    gap: 0;
}

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

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

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

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

.faq-question span {
    flex: 1;
}

.faq-chevron {
    width: 20px;
    height: 20px;
    min-width: 20px;
    stroke: var(--text-muted);
    transition: transform 0.25s ease;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
    padding-right: 36px;
}

.faq-answer a {
    color: var(--primary);
    text-decoration: underline;
}

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

/* Search highlight */
.faq-item.search-match {
    display: block !important;
}

.faq-item.search-hidden {
    display: none !important;
}

/* Side Card */
.faq-side {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-side-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 24px;
}

.faq-side-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.faq-side-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.faq-side-card--cta {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(139, 92, 246, 0.03));
    border-color: rgba(37, 99, 235, 0.15);
}

/* Side Links */
.faq-side-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-side-links li {
    margin-bottom: 4px;
}

.faq-side-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-body);
    transition: all var(--transition-fast);
}

.faq-side-links a:hover {
    background: var(--bg-light);
    color: var(--primary);
}

.faq-side-links svg {
    width: 18px;
    height: 18px;
    stroke: var(--text-muted);
    transition: stroke var(--transition-fast);
}

.faq-side-links a:hover svg {
    stroke: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
    .faq-layout {
        grid-template-columns: 1fr;
    }
    
    .faq-side {
        position: static;
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .faq-side-card {
        flex: 1;
        min-width: 260px;
    }
}

@media (max-width: 768px) {
    .faq-hero .section-title {
        font-size: 32px;
    }
    
    .faq-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 16px;
        margin-bottom: 24px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100%;
        width: 100%;
    }
    
    .faq-main {
        max-width: 100%;
        overflow: hidden;
    }
    
    .faq-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .faq-tab {
        flex-shrink: 0;
    }
    
    .faq-question {
        font-size: 14px;
        padding: 16px 0;
    }
    
    .faq-answer p {
        padding-right: 0;
    }
    
    .faq-side {
        flex-direction: column;
    }
    
    .faq-side-card {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .faq-hero {
        padding: 40px 0 30px;
    }
    
    .faq-content-section {
        padding: 40px 0 60px;
    }
    
    .faq-search-input {
        padding: 14px 46px 14px 48px;
        font-size: 14px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .faq-chevron,
    .faq-answer {
        transition: none;
    }
}

/* =========================
   Internet+ Mobile Page (v7.7.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.ipm-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.ipm-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero features list */
.ipm-hero-features {
    list-style: none;
    padding: 0;
    margin: 24px 0 32px;
}

.ipm-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    margin-bottom: 12px;
}

.ipm-hero-features svg {
    width: 20px;
    height: 20px;
    stroke: #22c55e;
    flex-shrink: 0;
}

/* Outline button white on dark hero */
.ipm-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.ipm-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Mock operator page */
.mock-operator-page {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.mock-operator-logo {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mock-operator-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mock-operator-desc {
    font-size: 13px;
    color: var(--text-body);
    margin-bottom: 12px;
}

.mock-operator-info {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 20px;
    padding: 8px;
    background: var(--bg-light);
    border-radius: 6px;
}

.mock-operator-btn {
    width: 100%;
    padding: 12px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Mock OTP page */
.mock-otp-page {
    background: white;
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
}

.mock-otp-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.mock-otp-desc {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mock-otp {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.mock-otp span {
    width: 44px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    background: rgba(37, 99, 235, 0.05);
}

/* CTA multi-actions */
.cta-actions-multi {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-actions-multi .btn-outline {
    flex: 1;
    min-width: 160px;
    justify-content: center;
}

/* Responsive */
@media (max-width: 1100px) {
    .ipm-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .ipm-hero-features {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .ipm-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .cta-actions-multi {
        flex-direction: column;
    }
    
    .cta-actions-multi .btn-outline {
        width: 100%;
    }
}

/* =========================
   PSMS Page (v7.8.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.psms-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.psms-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Outline button white on dark hero */
.psms-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.psms-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Use Cases Grid */
.psms-usecases {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.psms-usecase-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

.psms-usecase-card:hover {
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
    transform: translateY(-4px);
}

.psms-usecase-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.psms-usecase-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.psms-usecase-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Tags */
.psms-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.psms-tag {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(139, 92, 246, 0.05));
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

/* Flow section */
.psms-flow {
    padding: 100px 0;
    background: var(--bg-white);
}

/* SMS Preview Mock */
.mock-sms-preview {
    background: #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    min-height: 200px;
}

.mock-sms-sender {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 12px;
}

.mock-sms-bubble {
    background: white;
    border-radius: 16px 16px 16px 4px;
    padding: 12px 16px;
    margin-bottom: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.mock-sms-bubble p {
    font-size: 13px;
    color: var(--text-dark);
    line-height: 1.5;
    margin-bottom: 6px;
}

.mock-sms-bubble p:last-child {
    margin-bottom: 0;
}

.mock-sms-link {
    color: var(--primary);
    font-size: 12px;
}

.mock-sms-time {
    font-size: 10px;
    color: var(--text-muted);
    text-align: right;
}

/* Best Practices */
.psms-practices {
    padding: 80px 0;
    background: var(--bg-light);
}

.psms-practices-card {
    display: flex;
    gap: 32px;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    align-items: flex-start;
}

.psms-practices-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.08));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.psms-practices-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.psms-practices-content h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.psms-practices-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.psms-practices-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 14px;
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.6;
}

.psms-practices-list li:last-child {
    margin-bottom: 0;
}

.psms-practices-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: 50%;
}

.psms-practices-list strong {
    font-weight: 600;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1100px) {
    .psms-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .psms-usecases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .psms-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .psms-usecases-grid {
        grid-template-columns: 1fr;
    }
    
    .psms-practices-card {
        flex-direction: column;
        padding: 24px;
    }
}

/* =========================
   SVA+ Page (v7.9.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.sva-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.sva-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Outline button white on dark hero */
.sva-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.sva-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Call Screen Mock */
.sva-mock-phone .mock-phone-content {
    background: #1a1a2e;
}

.mock-call-screen {
    text-align: center;
    padding: 20px 16px;
    color: white;
}

.mock-call-number {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.mock-call-status {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
}

.mock-call-price {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.3);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 8px;
}

.mock-call-timer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 16px;
}

.mock-call-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 16px;
}

.mock-call-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.mock-call-btn svg {
    width: 20px;
    height: 20px;
    stroke: white;
}

.mock-call-btn--end {
    background: #ef4444;
    width: 56px;
    height: 56px;
}

.mock-call-btn--end svg {
    width: 24px;
    height: 24px;
}

/* Responsive */
@media (max-width: 1100px) {
    .sva-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .sva-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

/* =========================
   Google Pay Page (v7.10.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.gpay-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.gpay-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Outline button white on dark hero */
.gpay-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.gpay-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Google Pay Sheet Mock */
.mock-gpay-sheet,
.mock-gpay-popup {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.mock-gpay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.mock-gpay-logo {
    font-size: 16px;
    font-weight: 700;
    color: #4285f4;
}

.mock-gpay-close {
    font-size: 20px;
    color: #9ca3af;
    cursor: pointer;
}

.mock-gpay-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: #f9fafb;
    border-radius: 10px;
    margin-bottom: 12px;
}

.mock-gpay-card-icon {
    font-size: 24px;
}

.mock-gpay-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mock-gpay-card-type {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

.mock-gpay-card-name {
    font-size: 11px;
    color: var(--text-muted);
}

.mock-gpay-check {
    color: #22c55e;
    font-weight: 700;
}

.mock-gpay-address {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #f9fafb;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    color: var(--text-body);
}

.mock-gpay-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-top: 1px solid #e5e7eb;
    margin-bottom: 16px;
    font-size: 14px;
}

.mock-gpay-total span:last-child {
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
}

.mock-gpay-btn {
    width: 100%;
    padding: 14px;
    background: #1a73e8;
    border: none;
    border-radius: 24px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Browser Mock */
.mock-browser {
    background: #f1f5f9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.mock-browser-bar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #e2e8f0;
    border-bottom: 1px solid #cbd5e1;
}

.mock-browser-dots {
    display: flex;
    gap: 6px;
}

.mock-browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #94a3b8;
}

.mock-browser-dots span:first-child { background: #ef4444; }
.mock-browser-dots span:nth-child(2) { background: #f59e0b; }
.mock-browser-dots span:last-child { background: #22c55e; }

.mock-browser-url {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: white;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-body);
}

.mock-browser-lock {
    font-size: 10px;
}

.mock-browser-content {
    padding: 24px;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-gpay-popup {
    width: 100%;
    max-width: 280px;
}

/* Responsive */
@media (max-width: 1100px) {
    .gpay-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .gpay-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .mock-browser-content {
        padding: 16px;
    }
}

/* =========================
   Apple Pay Page (v7.11.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.apay-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.apay-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Outline button white on dark hero */
.apay-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.apay-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* iPhone notch style */
.mock-iphone-notch {
    width: 120px;
    height: 28px;
    background: #1a1a2e;
    border-radius: 0 0 16px 16px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Apple Pay Sheet Mock */
.mock-apay-sheet,
.mock-apay-popup {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.mock-apay-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #d2d2d7;
}

.mock-apay-logo {
    font-size: 16px;
    font-weight: 600;
    color: #1d1d1f;
}

.mock-apay-logo::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 20px;
    background: #1d1d1f;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E") no-repeat center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='currentColor' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.71 19.5c-.83 1.24-1.71 2.45-3.05 2.47-1.34.03-1.77-.79-3.29-.79-1.53 0-2 .77-3.27.82-1.31.05-2.3-1.32-3.14-2.53C4.25 17 2.94 12.45 4.7 9.39c.87-1.52 2.43-2.48 4.12-2.51 1.28-.02 2.5.87 3.29.87.78 0 2.26-1.07 3.81-.91.65.03 2.47.26 3.64 1.98-.09.06-2.17 1.28-2.15 3.81.03 3.02 2.65 4.03 2.68 4.04-.03.07-.42 1.44-1.38 2.83M13 3.5c.73-.83 1.94-1.46 2.94-1.5.13 1.17-.34 2.35-1.04 3.19-.69.85-1.83 1.51-2.95 1.42-.15-1.15.41-2.35 1.05-3.11z'/%3E%3C/svg%3E") no-repeat center;
    vertical-align: middle;
    margin-right: 2px;
}

.mock-apay-close {
    font-size: 20px;
    color: #86868b;
    cursor: pointer;
}

.mock-apay-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: white;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.mock-apay-card-icon {
    font-size: 24px;
}

.mock-apay-card-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mock-apay-card-type {
    font-size: 13px;
    font-weight: 600;
    color: #1d1d1f;
}

.mock-apay-card-name {
    font-size: 11px;
    color: #86868b;
}

.mock-apay-chevron {
    color: #86868b;
    font-size: 18px;
}

.mock-apay-address {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: white;
    border-radius: 10px;
    margin-bottom: 16px;
    font-size: 12px;
    color: #1d1d1f;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.mock-apay-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-top: 1px solid #d2d2d7;
    margin-bottom: 16px;
    font-size: 14px;
    color: #1d1d1f;
}

.mock-apay-total span:last-child {
    font-weight: 700;
    font-size: 20px;
}

.mock-apay-faceid,
.mock-apay-touchid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px;
    background: white;
    border-radius: 12px;
    text-align: center;
}

.mock-faceid-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mock-faceid-icon svg,
.mock-apay-touchid svg {
    width: 40px;
    height: 40px;
    stroke: #007aff;
}

.mock-apay-faceid span,
.mock-apay-touchid span {
    font-size: 13px;
    font-weight: 500;
    color: #1d1d1f;
}

/* Safari browser mock */
.mock-safari .mock-browser-bar {
    background: #f5f5f7;
    border-bottom: 1px solid #d2d2d7;
}

.mock-safari .mock-browser-url {
    background: #e8e8ed;
    border-radius: 8px;
}

/* Responsive */
@media (max-width: 1100px) {
    .apay-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .apay-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

/* =========================
   Carte Bancaire Page (v7.12.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.cb-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.cb-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Outline button white on dark hero */
.cb-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.cb-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Card Checkout Mock */
.mock-cb-checkout {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.mock-cb-header {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.mock-cb-amount {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mock-cb-amount span:first-child {
    font-size: 13px;
    color: var(--text-muted);
}

.mock-cb-price {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-dark);
}

.mock-cb-form {
    margin-bottom: 20px;
}

.mock-cb-field {
    margin-bottom: 12px;
}

.mock-cb-row {
    display: flex;
    gap: 12px;
}

.mock-cb-field-half {
    flex: 1;
}

.mock-cb-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-cb-input {
    display: block;
    width: 100%;
    padding: 10px 12px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: monospace;
}

.mock-cb-btn {
    width: 100%;
    padding: 14px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    margin-bottom: 16px;
}

.mock-cb-logos {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 11px;
    color: var(--text-muted);
}

/* 3-D Secure Screen Mock */
.mock-3ds-screen {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.mock-3ds-header {
    text-align: center;
    margin-bottom: 20px;
}

.mock-3ds-bank {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
}

.mock-3ds-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.mock-3ds-details {
    background: #f9fafb;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 20px;
}

.mock-3ds-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 13px;
}

.mock-3ds-row:not(:last-child) {
    border-bottom: 1px solid #e5e7eb;
}

.mock-3ds-row span:first-child {
    color: var(--text-muted);
}

.mock-3ds-row span:last-child {
    font-weight: 600;
    color: var(--text-dark);
}

.mock-3ds-auth {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.03));
    border-radius: 12px;
    margin-bottom: 16px;
}

.mock-3ds-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--primary);
}

.mock-3ds-auth span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

.mock-3ds-wait {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.mock-3ds-spinner {
    width: 16px;
    height: 16px;
    border: 2px solid #e5e7eb;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 1100px) {
    .cb-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .cb-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

/* =========================
   Bulk SMS Page (v7.13.0)
   ========================= */

/* Hero - Reuses DCB hero styles */
.bulk-hero {
    min-height: 80vh;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.bulk-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Outline button white on dark hero */
.bulk-hero .btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
}

.bulk-hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.10);
    border-color: rgba(255, 255, 255, 0.55);
}

/* Bulk Dashboard Mock */
.mock-bulk-dashboard {
    background: white;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.mock-bulk-header {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid #e5e7eb;
}

.mock-bulk-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.mock-bulk-stat {
    text-align: center;
    padding: 12px 8px;
    background: #f9fafb;
    border-radius: 10px;
}

.mock-bulk-stat-value {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.mock-bulk-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mock-bulk-stat--success .mock-bulk-stat-value {
    color: #22c55e;
}

.mock-bulk-stat--pending .mock-bulk-stat-value {
    color: #f59e0b;
}

.mock-bulk-stat--error .mock-bulk-stat-value {
    color: #ef4444;
}

.mock-bulk-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 8px;
}

.mock-bulk-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #22c55e, #16a34a);
    border-radius: 4px;
}

.mock-bulk-rate {
    font-size: 11px;
    color: var(--text-muted);
    text-align: right;
}

/* Responsive */
@media (max-width: 1100px) {
    .bulk-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .mock-bulk-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .bulk-hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
}

/* =========================
   Notre entreprise Page (v7.14.0)
   ========================= */

/* About Hero */
.about-hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.about-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 30px;
    margin-bottom: 24px;
}

.about-badge-icon {
    font-size: 18px;
}

.about-badge-text {
    font-size: 14px;
    color: var(--text-body);
}

.about-badge-text strong {
    color: var(--primary);
    font-weight: 700;
}

.about-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
}

.about-hero-features li svg {
    width: 20px;
    height: 20px;
    stroke: #22c55e;
    flex-shrink: 0;
}

.about-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* About Pillars Card */
.about-pillars-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 0;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.about-pillars-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
}

.about-pillar-mini {
    background: white;
    padding: 24px 16px;
    text-align: center;
}

.about-pillar-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.about-pillar-mini span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Mission Section */
.about-mission {
    padding: var(--section-padding);
}

.about-mission-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.about-mission-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    transition: all var(--transition-base);
}

.about-mission-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.08);
}

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

.about-mission-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.about-mission-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

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

/* Expertise Section */
.about-expertise {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.about-expertise-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

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

.about-expertise-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 16px;
    margin-bottom: 20px;
}

.about-expertise-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--primary);
}

.about-expertise-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.about-expertise-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.about-expertise-list li {
    font-size: 14px;
    color: var(--text-body);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

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

.about-expertise-list a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.about-expertise-list a:hover {
    text-decoration: underline;
}

/* Why Section */
.about-why {
    padding: var(--section-padding);
}

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

.about-why-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    transition: all var(--transition-base);
}

.about-why-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
}

.about-why-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-why-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.about-why-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process Section */
.about-process {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

.about-process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0.3;
}

.about-process-step {
    text-align: center;
    position: relative;
}

.about-process-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.about-process-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.about-process-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Trust Section */
.about-trust {
    padding: var(--section-padding);
}

.about-trust-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.about-trust-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.about-trust-list li {
    display: flex;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

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

.about-trust-list li svg {
    width: 24px;
    height: 24px;
    stroke: #22c55e;
    flex-shrink: 0;
    margin-top: 2px;
}

.about-trust-list li div {
    flex: 1;
}

.about-trust-list li strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.about-trust-list li span {
    font-size: 14px;
    color: var(--text-muted);
}

.about-trust-links {
    display: flex;
    justify-content: center;
    gap: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.about-trust-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary);
    text-decoration: none;
}

.about-trust-link:hover {
    text-decoration: underline;
}

/* Values Section */
.about-values {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.about-value-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all var(--transition-base);
}

.about-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.about-value-icon {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}

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

.about-value-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1100px) {
    .about-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-hero-features {
        align-items: center;
    }
    
    .about-hero-cta {
        justify-content: center;
    }
    
    .about-expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .about-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-process-timeline::before {
        display: none;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 0 60px;
    }
    
    .about-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .about-why-grid {
        grid-template-columns: 1fr;
    }
    
    .about-process-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-trust-card {
        padding: 32px 24px;
    }
    
    .about-trust-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .about-pillars-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================
   Devenir Marchand Page (v7.15.0)
   ========================= */

/* Hero — reuses about-hero pattern with merchant-* scope */
.merchant-hero {
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

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

.merchant-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.merchant-hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 24px;
}

.merchant-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(212, 175, 55, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 30px;
    margin-bottom: 24px;
}

.merchant-badge-icon {
    font-size: 18px;
}

.merchant-badge-text {
    font-size: 14px;
    color: var(--text-body);
}

.merchant-badge-text strong {
    color: var(--primary);
    font-weight: 700;
}

.merchant-hero-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.merchant-hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    color: var(--text-body);
}

.merchant-hero-features li svg {
    width: 20px;
    height: 20px;
    stroke: #22c55e;
    flex-shrink: 0;
}

.merchant-hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero visual — onboarding steps card */
.merchant-steps-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.merchant-steps-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: linear-gradient(135deg, #1e293b, #334155);
}

.merchant-steps-mini {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
}

.merchant-step-mini {
    background: white;
    padding: 28px 16px;
    text-align: center;
}

.merchant-step-mini-num {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 16px;
    font-weight: 800;
    color: white;
    margin: 0 auto 12px;
}

.merchant-step-mini-num--gold {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.merchant-step-mini span {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Process Section */
.merchant-process {
    padding: var(--section-padding);
    background: var(--bg-light);
}

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

.merchant-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    opacity: 0.3;
}

.merchant-timeline-step {
    text-align: center;
    position: relative;
}

.merchant-timeline-num {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}

.merchant-timeline-num--gold {
    background: var(--gradient-gold);
    color: var(--text-dark);
}

.merchant-timeline-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.merchant-timeline-content p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Documents Section */
.merchant-docs {
    padding: var(--section-padding);
}

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

.merchant-doc-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: all var(--transition-base);
}

.merchant-doc-card:hover {
    border-color: rgba(37, 99, 235, 0.25);
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.08);
    transform: translateY(-2px);
}

.merchant-doc-card--info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.04), rgba(139, 92, 246, 0.03));
    border-color: rgba(37, 99, 235, 0.15);
}

.merchant-doc-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 12px;
    margin-bottom: 16px;
}

.merchant-doc-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
}

.merchant-doc-icon--info {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.15), rgba(139, 92, 246, 0.08));
}

.merchant-doc-icon--info svg {
    stroke: var(--primary);
}

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

.merchant-doc-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* UBO Section */
.merchant-ubo {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.merchant-ubo-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.merchant-ubo-header {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 24px;
}

.merchant-ubo-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 14px;
    flex-shrink: 0;
}

.merchant-ubo-icon svg {
    width: 26px;
    height: 26px;
    stroke: white;
}

.merchant-ubo-header h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.merchant-ubo-header p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.merchant-ubo-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 20px;
}

.merchant-ubo-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-body);
}

.merchant-ubo-list li svg {
    width: 20px;
    height: 20px;
    stroke: #22c55e;
    flex-shrink: 0;
}

/* Download Section */
.merchant-download {
    padding: var(--section-padding);
}

.merchant-download-card {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.03), rgba(212, 175, 55, 0.03));
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-xl);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.merchant-download-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 28px;
}

.merchant-download-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 16px;
    flex-shrink: 0;
}

.merchant-download-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.merchant-download-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.merchant-download-text p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}

.merchant-download-details {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 28px;
}

.merchant-download-details h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.merchant-download-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.merchant-download-details li {
    font-size: 14px;
    color: var(--text-body);
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    line-height: 1.5;
}

.merchant-download-details li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--primary);
    font-weight: 700;
}

.merchant-download-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.merchant-download-meta {
    font-size: 13px;
    color: var(--text-muted);
}

.btn-icon-left {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    flex-shrink: 0;
}

/* Next Steps Section */
.merchant-next {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.merchant-next-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.merchant-next-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition-base);
}

.merchant-next-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    box-shadow: 0 6px 24px rgba(37, 99, 235, 0.06);
}

.merchant-next-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(139, 92, 246, 0.05));
    border-radius: 12px;
    margin-bottom: 16px;
}

.merchant-next-icon svg {
    width: 22px;
    height: 22px;
    stroke: var(--primary);
}

.merchant-next-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.merchant-next-card p {
    font-size: 14px;
    color: var(--text-body);
    line-height: 1.7;
}

.merchant-next-card a {
    color: var(--primary);
    font-weight: 500;
}

.merchant-next-card a:hover {
    text-decoration: underline;
}

/* FAQ Section */
.merchant-faq {
    padding: 0 0 var(--section-padding);
}

.merchant-faq .dcb-faq-list {
    max-width: 800px;
    margin: 0 auto;
}

/* Responsive — Devenir Marchand */
@media (max-width: 1100px) {
    .merchant-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .merchant-hero-features {
        align-items: center;
    }

    .merchant-hero-cta {
        justify-content: center;
    }

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

    .merchant-timeline::before {
        display: none;
    }

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

@media (max-width: 768px) {
    .merchant-hero {
        padding: 80px 0 60px;
    }

    .merchant-timeline {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .merchant-docs-grid {
        grid-template-columns: 1fr;
    }

    .merchant-next-grid {
        grid-template-columns: 1fr;
    }

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

    .merchant-ubo-card {
        padding: 28px 20px;
    }

    .merchant-ubo-header {
        flex-direction: column;
    }

    .merchant-download-card {
        padding: 32px 24px;
    }

    .merchant-download-content {
        flex-direction: column;
    }
}

/* =========================
   v7.15.1 — Utility Classes
   ========================= */

/* A) Solution Hero vertical centering — matches .dcb-hero flexbox */
.solution-hero {
    display: flex;
    align-items: center;
}

/* B) Section background alternation */
.section-bg-white {
    background: var(--bg-white) !important;
}

.section-bg-light {
    background: var(--bg-light) !important;
}

/* C) Solid navbar for light-background pages (no-scroll visibility) */
.navbar--solid {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.04);
}

.navbar--solid.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

/* D) Generic circuit-ready section container */
.section-has-circuits {
    position: relative;
    overflow: hidden;
}

.section-has-circuits > .container {
    position: relative;
    z-index: 2;
}

/* Reduce circuit visibility on mobile for performance/clarity */
@media (max-width: 768px) {
    .section-has-circuits .section-circuit-bg {
        opacity: 0.5;
    }
}

/* =========================
   v7.15.3 — Clickable Solution Cards
   ========================= */

/* Solution cards as <a> tags: inherit visual style */
a.sol-card-8 {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    display: flex;
}

a.sol-card-8:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
    border-radius: var(--radius-xl);
}

a.sol-card-8:visited {
    color: inherit;
}

/* =========================
   v7.15.4 — Hero nav spacing
   ========================= */

/* Extra top breathing room for pages with light-bg heroes + solid navbar */
.hero--nav-spaced {
    padding-top: clamp(140px, 15vh, 180px) !important;
}

@media (max-width: 768px) {
    .hero--nav-spaced {
        padding-top: clamp(110px, 12vh, 150px) !important;
    }
}

/* =========================
   v7.16.1 — Blog Portal
   ========================= */

/* Hero actions */
.blog-hero-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- Featured article ---- */
.blog-featured-card {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 48px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    overflow: hidden;
}

.blog-featured-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.blog-featured-card:hover h2 {
    color: var(--primary);
}

.blog-featured-content h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin: 16px 0 12px;
    transition: color var(--transition-base);
}

.blog-featured-content > p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.blog-featured-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-featured-visual-inner {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-featured-visual-inner svg {
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Blog badges ---- */
.blog-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: var(--radius-full);
}

.blog-badge--primary {
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
}

.blog-badge--blue {
    background: rgba(59, 130, 246, 0.08);
    color: #3b82f6;
}

.blog-badge--gold {
    background: rgba(212, 175, 55, 0.10);
    color: var(--gold-dark);
}

.blog-badge--purple {
    background: rgba(124, 58, 237, 0.08);
    color: var(--purple);
}

.blog-badge--green {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
}

.blog-badge--orange {
    background: rgba(249, 115, 22, 0.08);
    color: #ea580c;
}

/* ---- Blog meta ---- */
.blog-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 16px;
    margin-bottom: 20px;
}

.blog-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-meta-level {
    background: var(--bg-light);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ---- Category chips ---- */
.blog-categories-bar {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.blog-cat-chip {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    background: #ffffff;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition-base);
}

.blog-cat-chip:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

.blog-cat-chip--active {
    background: var(--gradient-primary);
    color: #fff;
    border-color: transparent;
}

.blog-cat-chip--active:hover {
    color: #fff;
    border-color: transparent;
    background: var(--gradient-primary);
    opacity: 0.9;
}

/* ---- Article grid ---- */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.blog-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.blog-card:hover::before {
    opacity: 1;
}

.blog-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.blog-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.35;
    margin: 14px 0 10px;
    transition: color var(--transition-base);
}

.blog-card:hover h3 {
    color: var(--primary);
}

.blog-card > p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.65;
    flex: 1;
}

.blog-card .blog-meta {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
    margin-bottom: 0;
}

/* ---- Dossiers thématiques ---- */
.blog-dossiers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.blog-dossier-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-dossier-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-light);
}

.blog-dossier-card:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

.blog-dossier-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.blog-dossier-icon--gold {
    background: rgba(212, 175, 55, 0.10);
    color: var(--gold-dark);
}

.blog-dossier-icon--purple {
    background: rgba(124, 58, 237, 0.08);
    color: var(--purple);
}

.blog-dossier-card h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.35;
}

.blog-dossier-card > p {
    color: var(--text-body);
    font-size: 14px;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 24px;
}

.blog-dossier-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.blog-dossier-count {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* ---- Newsletter ---- */
.blog-newsletter-card {
    max-width: 680px;
    margin: 0 auto;
    text-align: center;
}

.blog-newsletter-card h2 {
    font-family: var(--font-display);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    margin: 12px 0 10px;
}

.blog-newsletter-card > p,
.blog-newsletter-content > p {
    color: var(--text-body);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.blog-newsletter-form {
    display: flex;
    gap: 12px;
    max-width: 460px;
    margin: 0 auto 12px;
}

.blog-newsletter-input {
    flex: 1;
    padding: 14px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-family: var(--font-sans);
    font-size: 15px;
    background: #fff;
    color: var(--text-body);
    transition: border-color var(--transition-base);
}

.blog-newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.blog-newsletter-note {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    font-style: italic;
}

/* ---- Blog responsive ---- */
@media (max-width: 1024px) {
    .blog-featured-card {
        grid-template-columns: 1fr;
        padding: 36px;
    }
    .blog-featured-visual {
        display: none;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .blog-dossiers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-dossiers-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .blog-featured-card {
        padding: 24px;
    }
    .blog-featured-content h2 {
        font-size: 20px;
    }
    .blog-categories-bar {
        gap: 8px;
    }
    .blog-cat-chip {
        font-size: 12px;
        padding: 8px 14px;
    }
    .blog-newsletter-form {
        flex-direction: column;
    }
    .blog-hero-actions {
        flex-direction: column;
        align-items: center;
    }
}
