/* ============================================
   INFLUFACTORY - MODERN CSS
   Version: 2.0 - Completely Refactored
   ============================================ */

/* ============================================
   1. RESET & BASE
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Noir & Blanc Theme */
    --color-black: #000000;
    --color-white: #ffffff;
    --color-gray-50: #fafafa;
    --color-gray-100: #f5f5f5;
    --color-gray-200: #e5e5e5;
    --color-gray-300: #d4d4d4;
    --color-gray-400: #a3a3a3;
    --color-gray-500: #737373;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-800: #262626;
    --color-gray-900: #171717;
    
    /* Gradients - Noir & Blanc */
    --gradient-primary: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    --gradient-secondary: linear-gradient(135deg, #ffffff 0%, #999999 100%);
    --gradient-accent: linear-gradient(135deg, #ffffff 0%, #aaaaaa 100%);
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --spacing-4xl: 128px;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    text-size-adjust: 100%;
    /* Empêcher le scroll automatique au chargement */
    scroll-padding-top: 0;
}

/* Empêcher le scroll automatique au chargement de la page */
html:not(:has(:target)) {
    scroll-behavior: auto;
}

body {
    /* S'assurer que la page commence en haut */
    scroll-snap-type: none;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
    background: var(--color-black);
    color: var(--color-white);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    overscroll-behavior-y: none;
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height for mobile */
}

/* iPhone Safe Areas */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .main-header {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Optimisation pour mobile */
@media (max-width: 768px) {
    body {
        -webkit-text-size-adjust: 100%;
        -moz-text-size-adjust: 100%;
        text-size-adjust: 100%;
        touch-action: pan-y;
    }
    
    /* Amélioration du scroll sur mobile */
    * {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }
    
    /* Désactiver le zoom sur double-tap */
    button, a {
        touch-action: manipulation;
    }
}

/* ============================================
   2. STARS ANIMATION
   ============================================ */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--color-white);
    border-radius: 50%;
    opacity: 0;
    box-shadow: 0 0 4px rgba(255, 255, 255, 1), 0 0 8px rgba(255, 255, 255, 0.8);
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.star-1 { top: 20%; left: -10px; animation: shootingStar1 3s linear infinite; animation-delay: 0s; }
.star-2 { top: 40%; left: -10px; animation: shootingStar2 4s linear infinite; animation-delay: 0.5s; }
.star-3 { top: 60%; left: -10px; animation: shootingStar3 3.5s linear infinite; animation-delay: 1s; }
.star-4 { top: 15%; left: -10px; animation: shootingStar4 4.5s linear infinite; animation-delay: 1.5s; }
.star-5 { top: 80%; left: -10px; animation: shootingStar5 3.2s linear infinite; animation-delay: 2s; }
.star-6 { top: 30%; left: -10px; animation: shootingStar6 4s linear infinite; animation-delay: 2.5s; }
.star-7 { top: 50%; left: -10px; animation: shootingStar7 3.8s linear infinite; animation-delay: 3s; }
.star-8 { top: 70%; left: -10px; animation: shootingStar8 4.2s linear infinite; animation-delay: 3.5s; }
.star-9 { top: 10%; left: -10px; animation: shootingStar9 3.6s linear infinite; animation-delay: 4s; }
.star-10 { top: 90%; left: -10px; animation: shootingStar10 3.4s linear infinite; animation-delay: 4.5s; }
.star-11 { top: 25%; left: -10px; animation: shootingStar1 3.7s linear infinite; animation-delay: 5s; }
.star-12 { top: 55%; left: -10px; animation: shootingStar2 4.3s linear infinite; animation-delay: 5.5s; }
.star-13 { top: 35%; left: -10px; animation: shootingStar3 3.9s linear infinite; animation-delay: 6s; }
.star-14 { top: 75%; left: -10px; animation: shootingStar4 3.3s linear infinite; animation-delay: 6.5s; }
.star-15 { top: 5%; left: -10px; animation: shootingStar5 4.1s linear infinite; animation-delay: 7s; }

@keyframes shootingStar1 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 200px); opacity: 0; }
}

@keyframes shootingStar2 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 150px); opacity: 0; }
}

@keyframes shootingStar3 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 180px); opacity: 0; }
}

@keyframes shootingStar4 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 120px); opacity: 0; }
}

@keyframes shootingStar5 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 250px); opacity: 0; }
}

@keyframes shootingStar6 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 160px); opacity: 0; }
}

@keyframes shootingStar7 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 140px); opacity: 0; }
}

@keyframes shootingStar8 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 190px); opacity: 0; }
}

@keyframes shootingStar9 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 110px); opacity: 0; }
}

@keyframes shootingStar10 {
    0% { transform: translate(0, 0); opacity: 0; }
    5% { opacity: 1; }
    95% { opacity: 1; }
    100% { transform: translate(calc(100vw + 20px), 220px); opacity: 0; }
}

/* ============================================
   3. UTILITIES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    position: relative;
    will-change: contents;
}

/* Optimisation pour iPhone et iPad */
@supports (padding: max(0px)) {
    .container {
        padding-left: max(var(--spacing-xl), env(safe-area-inset-left));
        padding-right: max(var(--spacing-xl), env(safe-area-inset-right));
    }
}

.fade-in-section {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.fade-in-section.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

/* Stagger animations pour les listes */
.fade-in-section:nth-child(1) { transition-delay: 0.1s; }
.fade-in-section:nth-child(2) { transition-delay: 0.2s; }
.fade-in-section:nth-child(3) { transition-delay: 0.3s; }
.fade-in-section:nth-child(4) { transition-delay: 0.4s; }
.fade-in-section:nth-child(5) { transition-delay: 0.5s; }

/* ============================================
   4. HEADER
   ============================================ */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--spacing-md) 0;
    padding-top: calc(var(--spacing-md) + env(safe-area-inset-top));
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-base);
    will-change: background, transform;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.header-left {
    flex: 1;
}

.logo-wrapper {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    will-change: transform;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform var(--transition-base);
    will-change: transform;
    text-decoration: none;
}

.logo-link:active {
    transform: scale(0.95);
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 150px;
    display: block;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transition: opacity var(--transition-fast);
    opacity: 1;
    visibility: visible;
    will-change: opacity;
}

.logo-img:hover {
    opacity: 0.9;
}

.logo-text {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: -0.02em;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    text-transform: uppercase;
}

.header-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 12px 24px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
}

.login-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
    pointer-events: none;
}

.login-btn:hover::before,
.login-btn:active::before {
    width: 200px;
    height: 200px;
}

.login-btn:hover {
    transform: translateY(-2px) translateZ(0);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.98);
}

.login-btn:active {
    transform: translateY(0) translateZ(0);
    box-shadow: 0 2px 12px rgba(255, 255, 255, 0.15);
}

.login-btn span,
.login-btn i {
    position: relative;
    z-index: 2;
}

.login-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.login-btn:hover i {
    transform: scale(1.1);
}

/* ============================================
   5. HERO SECTION
   ============================================ */
.hero-section {
    min-height: 100vh;
    min-height: 100dvh; /* Dynamic viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-5xl) var(--spacing-xl);
    padding-top: calc(var(--spacing-5xl) + env(safe-area-inset-top));
    padding-bottom: calc(var(--spacing-5xl) + env(safe-area-inset-bottom));
    position: relative;
    overflow: hidden;
    background: var(--color-black);
    will-change: transform;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    will-change: transform, opacity;
    transform: translate3d(0, 0, 0);
}

.hero-badge-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: var(--spacing-3xl);
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 800;
    color: var(--color-white);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, background;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.2);
}

.hero-badge.verified-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-color: rgba(255, 255, 255, 0.25);
}

.hero-badge i {
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    animation: pulseCheck 2s ease-in-out infinite;
}

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

.hero-main-title {
    font-size: clamp(48px, 10vw, 120px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 0 var(--spacing-2xl) 0;
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
    will-change: transform;
    text-align: center;
}

@keyframes titleGlow {
    0%, 100% {
        filter: brightness(1);
    }
    50% {
        filter: brightness(1.1);
    }
}

.hero-subtitle {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin: 0 0 var(--spacing-4xl) 0;
    color: var(--color-white);
    font-family: 'Inter', sans-serif;
}

.hero-description-main {
    font-size: clamp(18px, 2.5vw, 28px);
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--spacing-4xl) 0;
    font-family: 'Inter', sans-serif;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description-main strong {
    color: var(--color-white);
    font-weight: 700;
}

.hero-benefits-list {
    max-width: 1000px;
    margin: 0 auto var(--spacing-5xl);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.hero-benefit-item {
    font-size: clamp(18px, 2.5vw, 28px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.3s ease, transform 0.3s ease;
    will-change: opacity, transform;
}

.hero-benefit-item:hover {
    opacity: 1;
    transform: translateX(4px);
}

.hero-cta-wrapper {
    margin-top: var(--spacing-4xl);
}

.btn-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 22px 56px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

.btn-hero-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-hero-cta:hover::before,
.btn-hero-cta:active::before {
    width: 300px;
    height: 300px;
}

.btn-hero-cta:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.98);
}

.btn-hero-cta:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-hero-cta span {
    position: relative;
    z-index: 2;
}

.btn-hero-cta i {
    font-size: 18px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.btn-hero-cta:hover i {
    transform: translateX(6px);
}

/* Pulse Animation pour CTA */
.pulse-animation {
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15), 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(255, 255, 255, 0.25), 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

/* Hero Background Gradient */
.hero-background-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 1;
    opacity: 0.5;
}

/* Social Proof dans Hero */
.hero-social-proof {
    margin-bottom: var(--spacing-3xl);
}

.social-proof-stats {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-badge:hover::before {
    opacity: 1;
}

.stat-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.15);
}

.stat-badge.verified-stat {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.stat-verified-icon {
    font-size: 20px;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
    animation: pulseCheck 2s ease-in-out infinite;
}

.stat-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
}

.stat-number {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
}

/* Nouveau Titre Hero */
.hero-main-title .title-line-1,
.hero-main-title .title-line-2,
.hero-main-title .title-line-3 {
    display: block;
    line-height: 1.1;
}

.hero-main-title .title-line-1 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-sm);
}

.hero-main-title .title-line-2 {
    font-size: clamp(56px, 10vw, 120px);
    font-weight: 900;
    letter-spacing: -0.05em;
    margin-bottom: var(--spacing-sm);
}

.hero-main-title .title-line-3 {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    letter-spacing: -0.04em;
}

.highlight-gradient {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* Hero CTA Badges */
.hero-cta-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.cta-badge-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cta-badge-item:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    color: var(--color-white);
}

.cta-badge-item i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* Hero Benefits Grid */
.hero-benefits-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    margin: var(--spacing-4xl) 0;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-benefit-item {
    flex: 0 1 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: relative;
    overflow: visible;
}

.hero-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-benefit-item:hover::before {
    opacity: 1;
}

.hero-benefit-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.12), 0 0 32px rgba(255, 255, 255, 0.08);
}

.hero-benefit-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-black);
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.hero-benefit-icon::after {
    content: '✓';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-black);
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.hero-benefit-item:hover .hero-benefit-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 32px rgba(255, 255, 255, 0.3);
}

.hero-benefit-item:hover .hero-benefit-icon::after {
    opacity: 1;
}

.hero-benefit-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0;
    text-align: center;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

/* Hero Clients Logos */
.hero-clients-logos {
    margin-top: var(--spacing-5xl);
    padding-top: var(--spacing-3xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.clients-logos-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: var(--spacing-lg);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
}

.clients-logos-label i {
    font-size: 16px;
    color: rgba(255, 255, 255, 1);
    animation: pulseCheck 2s ease-in-out infinite;
}

.clients-logos-grid {
    display: flex;
    justify-content: center;
    gap: var(--spacing-3xl);
    flex-wrap: wrap;
}

.client-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    transition: transform 0.3s ease;
    position: relative;
}

.client-logo-item.verified-client {
    padding-top: var(--spacing-md);
}

.client-verified-badge {
    position: absolute;
    top: 0;
    right: -8px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.3);
    z-index: 10;
    animation: pulseCheck 2s ease-in-out infinite;
}

.client-verified-badge i {
    font-size: 12px;
    color: var(--color-black);
}

.client-logo-item:hover {
    transform: translateY(-6px) scale(1.05);
}

.client-logo-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2.5px solid rgba(255, 255, 255, 0.25);
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.1);
}

.client-logo-item:hover .client-logo-img {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.25);
}

.client-logo-name {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

/* Trust Bar Section */
.trust-bar-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--spacing-xl) 0;
    position: relative;
    z-index: 10;
}

.trust-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: 15px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-item:hover::before {
    opacity: 1;
}

.trust-item.verified-trust {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
    border-color: rgba(255, 255, 255, 0.15);
}

.trust-icon-wrapper {
    position: relative;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-verified-icon {
    position: absolute;
    top: -4px;
    right: -4px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    animation: pulseCheck 2s ease-in-out infinite;
}

.trust-item i:not(.trust-verified-icon) {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
    z-index: 1;
}

.trust-item:hover {
    color: var(--color-white);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.15);
}

.trust-item:hover i:not(.trust-verified-icon) {
    transform: scale(1.15);
    color: var(--color-white);
}

/* CTA Section Features */
.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin: 0 0 40px 0;
    flex-wrap: wrap;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 16px;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

.cta-feature i {
    font-size: 18px;
    color: rgba(0, 0, 0, 0.7);
}

/* ============================================
   6. BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 18px 40px;
    background: var(--color-white);
    color: var(--color-black);
    border: none;
    border-radius: var(--radius-md);
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    backface-visibility: hidden;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.5s, height 0.5s;
    pointer-events: none;
}

.btn-primary:hover::before,
.btn-primary:active::before {
    width: 250px;
    height: 250px;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02) translateZ(0);
    box-shadow: 0 16px 40px rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.98);
}

.btn-primary:active {
    transform: translateY(-2px) scale(0.98) translateZ(0);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
}

.btn-primary span,
.btn-primary i {
    position: relative;
    z-index: 2;
}

.btn-primary i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.btn-large {
    padding: 22px 56px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* ============================================
   7. SECTIONS BASE
   ============================================ */
section {
    position: relative;
    z-index: 1;
    padding: var(--spacing-4xl) 0;
    will-change: scroll-position;
    contain: layout style paint;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000px;
}

/* Continue in next part due to length... */

/* ============================================
   8. WHAT IS SECTION
   ============================================ */
.what-is-section {
    padding: var(--spacing-5xl) 0;
    background: var(--color-black);
    position: relative;
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.what-is-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.what-is-hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
    text-align: center;
    position: relative;
    z-index: 2;
}

.what-is-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-2xl);
    font-size: 12px;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 1.2px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.what-is-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.what-is-main-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.05em;
    color: var(--color-white);
    margin: 0 0 var(--spacing-3xl) 0;
    font-family: 'Inter', sans-serif;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.what-is-content-box {
    max-width: 1000px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 32px;
    padding: var(--spacing-5xl) var(--spacing-4xl);
    backdrop-filter: blur(40px) saturate(180%);
    -webkit-backdrop-filter: blur(40px) saturate(180%);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.08);
}

.what-is-content-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.what-is-content-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

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

.what-is-description-main {
    font-size: clamp(24px, 3.5vw, 40px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
    position: relative;
    z-index: 1;
}

.highlight-name {
    color: var(--color-white);
    font-weight: 800;
    position: relative;
}

.highlight-platform {
    color: var(--color-white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
    margin: 0 2px;
}

.what-is-details-card {
    display: flex;
    gap: var(--spacing-2xl);
    align-items: flex-start;
    padding: var(--spacing-4xl);
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-width: 1000px;
    margin: 0 auto;
}

.what-is-details-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 28px 28px 0 0;
}

.what-is-details-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.what-is-details-card:hover::before {
    opacity: 1;
}

.what-is-details-card:hover::after {
    opacity: 1;
}

.what-is-details-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 24px 72px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.1);
    transform: translate3d(0, -8px, 0) scale(1.01);
}

.details-icon {
    width: 88px;
    height: 88px;
    min-width: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    color: var(--color-black);
    font-size: 40px;
    flex-shrink: 0;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.details-icon::after {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.what-is-details-card:hover .details-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.3);
}

.what-is-details-card:hover .details-icon::after {
    opacity: 1;
}

.details-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin: 0 0 var(--spacing-md) 0;
    color: var(--color-white);
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.details-text {
    font-size: clamp(18px, 2.5vw, 22px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 400;
}

.details-text strong {
    color: var(--color-white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

.goals-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-lg);
    max-width: 1000px;
    margin: var(--spacing-3xl) auto 0;
    flex-wrap: wrap;
}

.goal-card {
    flex: 0 1 300px;
    padding: var(--spacing-3xl) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: visible;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.goal-card:hover::before {
    opacity: 1;
}

.goal-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.08);
    transform: translate3d(0, -8px, 0) scale(1.02);
    box-shadow: 0 16px 48px rgba(255, 255, 255, 0.12), 0 0 32px rgba(255, 255, 255, 0.08);
}

.goal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-black);
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.goal-icon::after {
    content: '✓';
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--color-black);
    font-weight: 900;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
    border: 2px solid rgba(0, 0, 0, 0.1);
}

.goal-card:hover .goal-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 32px rgba(255, 255, 255, 0.3);
}

.goal-card:hover .goal-icon::after {
    opacity: 1;
}

.goal-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--color-white);
    margin: 0;
    letter-spacing: -0.3px;
}

/* ============================================
   9. HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
    background: rgba(255, 255, 255, 0.02);
    padding-top: 12px;
    margin-top: 0;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto var(--spacing-3xl);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.section-badge.verified-badge i {
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
    animation: pulseCheck 2s ease-in-out infinite;
}

.section-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.section-title {
    font-size: clamp(40px, 6.5vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin: 0 auto var(--spacing-md) auto;
    color: var(--color-white);
    text-align: center;
    width: 100%;
}

.section-subtitle {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
    max-width: 100%;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.step-card {
    position: relative;
    padding: var(--spacing-3xl) var(--spacing-xl);
    background: rgba(255, 255, 255, 0.05);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: visible;
    will-change: transform, box-shadow, background;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.step-card:hover::before {
    opacity: 1;
}

.step-card.visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.step-card:hover {
    transform: translate3d(0, -12px, 0) scale(1.03);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 72px rgba(255, 255, 255, 0.15), 0 0 40px rgba(255, 255, 255, 0.1);
}

.step-number {
    position: absolute;
    top: var(--spacing-lg);
    left: var(--spacing-lg);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    z-index: 5;
}

.step-card:hover .step-number {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    color: var(--color-white);
}

.step-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--color-black);
    font-size: 36px;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.step-icon::before {
    content: '✓';
    position: absolute;
    bottom: -6px;
    right: -6px;
    width: 28px;
    height: 28px;
    background: rgba(255, 255, 255, 1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--color-black);
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(0, 0, 0, 0.1);
    z-index: 10;
    animation: pulseCheck 2s ease-in-out infinite;
}

.step-card:hover .step-icon {
    transform: scale(1.12) rotate(5deg);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.35);
}

.step-title {
    font-size: clamp(24px, 3vw, 28px);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.step-text {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    font-weight: 400;
}

/* ============================================
   10. COMPARISON SECTION
   ============================================ */
.comparison-section {
    padding: var(--spacing-4xl) 0;
    background: var(--color-black);
    position: relative;
}

.comparison-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    position: relative;
}

.comparison-header-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.comparison-header-badge.verified-badge i {
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
    animation: pulseCheck 2s ease-in-out infinite;
}

.comparison-header-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.comparison-title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.comparison-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-card {
    padding: var(--spacing-3xl);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-slow);
}

.comparison-without {
    background: rgba(20, 20, 20, 0.92);
    border: 2px solid rgba(255, 90, 90, 0.25);
    box-shadow: inset 0 0 0 1px rgba(255, 90, 90, 0.08);
}

.comparison-with {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 18px 60px rgba(255, 255, 255, 0.08);
}

.comparison-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
}

.comparison-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-2xl);
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.comparison-badge-without {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
}

.comparison-badge-with {
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    color: var(--color-black);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.2);
}

.comparison-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-badge-with:hover {
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    padding: var(--spacing-md) 0;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.comparison-list li i {
    margin-top: 4px;
    flex-shrink: 0;
}

.comparison-without .comparison-list li i {
    color: rgba(255, 100, 100, 0.8);
}

.comparison-with .comparison-list li i {
    color: var(--color-white);
}

/* ============================================
   11. BENEFITS SECTION
   ============================================ */
.benefits-section {
    background: linear-gradient(180deg, var(--color-black) 0%, rgba(255, 255, 255, 0.03) 50%, var(--color-black) 100%);
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.benefits-hero {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
    position: relative;
    z-index: 1;
}

.benefits-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-lg);
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.1);
}

.benefits-badge.verified-badge i {
    font-size: 11px;
    color: rgba(255, 255, 255, 1);
    animation: pulseCheck 2s ease-in-out infinite;
}

.benefits-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.15);
}

.benefits-main-title {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.benefits-subtitle {
    font-size: clamp(20px, 2.5vw, 28px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto var(--spacing-4xl);
    position: relative;
    z-index: 1;
    align-items: stretch;
}

.benefit-card {
    padding: 44px 36px;
    background: rgba(25, 25, 25, 0.95);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, background;
    display: flex;
    flex-direction: column;
    min-height: 450px;
    transform: translateZ(0);
    backface-visibility: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.benefit-card:hover {
    transform: translate3d(0, -12px, 0) scale(1.02);
    background: rgba(35, 35, 35, 1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.1);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover::after {
    opacity: 1;
}

.benefit-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-white) 0%, rgba(255, 255, 255, 0.95) 100%);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    z-index: 10;
}

.benefit-card:hover .benefit-badge {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 24px rgba(255, 255, 255, 0.3);
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 12px;
    color: var(--color-black);
    font-size: 28px;
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.what-we-do-card:hover .what-we-do-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.tool-card:hover .tool-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.benefit-title {
    font-size: 28px;
    color: var(--color-white);
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.benefit-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 auto 0;
    line-height: 1.65;
    flex-grow: 1;
    padding-bottom: 24px;
}

.benefit-highlight {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(40, 40, 40, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
    margin-top: auto;
    width: fit-content;
    transition: all var(--transition-base);
}

.benefit-highlight:hover {
    background: rgba(50, 50, 50, 0.95);
    border-color: rgba(255, 255, 255, 0.2);
}

.benefit-highlight i {
    color: var(--color-white);
    font-size: 14px;
}

.benefits-cta {
    margin-top: var(--spacing-4xl);
    padding: var(--spacing-3xl);
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    z-index: 1;
}

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

.benefits-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.benefits-cta-text {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-xl);
    line-height: 1.6;
}

/* ============================================
   11. WHAT WE DO SECTION
   ============================================ */
.what-we-do-section {
    background: var(--color-black);
}

.what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: stretch;
}

.what-we-do-card {
    padding: 44px 36px;
    background: rgba(25, 25, 25, 0.95);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    will-change: transform, box-shadow, background;
    transform: translateZ(0);
    backface-visibility: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.what-we-do-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.what-we-do-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.what-we-do-card:hover {
    transform: translate3d(0, -12px, 0) scale(1.02);
    background: rgba(35, 35, 35, 1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 255, 255, 0.1);
}

.what-we-do-card:hover::before {
    opacity: 1;
}

.what-we-do-card:hover::after {
    opacity: 1;
}

.what-we-do-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 16px;
    color: var(--color-black);
    font-size: 32px;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.what-we-do-card:hover .what-we-do-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.what-we-do-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.what-we-do-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex-grow: 1;
}

.what-we-do-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 15px;
    line-height: 1.6;
}

.what-we-do-list li i {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 16px;
}

/* ============================================
   12. TOOLS SECTION
   ============================================ */
.tools-section {
    background: var(--color-black);
}

.tools-header {
    text-align: center;
    margin-bottom: var(--spacing-4xl);
}

.tools-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-md);
    color: var(--color-white);
}

.tools-subtitle {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Tools List - Format horizontal moderne */
.tools-list {
    max-width: 1000px;
    margin: 60px auto 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tool-item {
    padding: 24px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.tool-item:last-child {
    border-bottom: none;
}

.tool-item:hover {
    background: rgba(255, 255, 255, 0.02);
    padding-left: 12px;
    padding-right: 12px;
    margin-left: -12px;
    margin-right: -12px;
    border-radius: 8px;
}

.tool-item-content {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.tool-icon-inline {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 20px;
    transition: all 0.3s ease;
}

.tool-item:hover .tool-icon-inline {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: scale(1.05);
}

.tool-item-text {
    flex: 1;
}

.tool-title-inline {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin: 0 0 8px 0;
    letter-spacing: -0.01em;
}

.tool-text-inline {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    max-width: 1400px;
    margin: 0 auto;
}

.tool-card {
    padding: 32px 28px;
    background: rgba(25, 25, 25, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow, background;
    transform: translateZ(0);
    backface-visibility: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.tool-card::after {
    display: none;
}

.tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.tool-card:hover {
    transform: translate3d(0, -8px, 0) scale(1.03);
    background: rgba(35, 35, 35, 1);
    border-color: rgba(255, 255, 255, 0.25);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 32px rgba(255, 255, 255, 0.1);
}

.tool-card:hover::before {
    opacity: 1;
}

.tool-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 14px;
    color: var(--color-black);
    font-size: 24px;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
    position: relative;
    z-index: 2;
}

.tool-card:hover .tool-icon {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15);
}

.tool-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.tool-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   13. WHO WE ARE SECTION
   ============================================ */
.who-we-are-section {
    background: var(--color-black);
}

.who-we-are-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.who-we-are-title {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--spacing-xl);
    color: var(--color-white);
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.who-we-are-text {
    font-size: clamp(18px, 2.5vw, 24px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.who-we-are-text strong {
    color: var(--color-white);
    font-weight: 700;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 6px;
    border-radius: 4px;
}

/* ============================================
   13.5. ADVANTAGES SECTION
   ============================================ */
.advantages-section {
    padding: var(--spacing-4xl) 0;
    background: linear-gradient(180deg, var(--color-black) 0%, rgba(255, 255, 255, 0.02) 50%, var(--color-black) 100%);
    position: relative;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-xl);
    max-width: 1200px;
    margin: 0 auto;
}

.advantage-card {
    padding: 36px 32px;
    background: rgba(25, 25, 25, 0.9);
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    will-change: transform, border-color;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.advantage-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(35, 35, 35, 0.95);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 255, 255, 0.1);
}

.advantage-card:hover::before {
    opacity: 1;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 24px;
    transition: all 0.4s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--color-white);
    color: var(--color-black);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.advantage-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.advantage-text {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

/* ============================================
   14. CLIENTS SECTION
   ============================================ */
.clients-section {
    background: var(--color-black);
    padding: var(--spacing-5xl) 0;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.clients-section .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.clients-header {
    text-align: center;
    margin-bottom: var(--spacing-5xl);
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 var(--spacing-xl);
}

.clients-title {
    font-size: clamp(56px, 8vw, 120px);
    font-weight: 900;
    text-align: center;
    margin: 0 auto;
    color: var(--color-white);
    letter-spacing: -0.04em;
    line-height: 1.05;
    text-transform: none;
    position: relative;
    display: block;
    max-width: 1200px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 80px rgba(255, 255, 255, 0.3);
}

.clients-subtitle {
    font-size: clamp(22px, 2.8vw, 32px);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    margin: 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4xl);
    max-width: 1400px;
    margin: 0 auto var(--spacing-5xl);
    padding: var(--spacing-3xl) 0;
    align-items: center;
}

.client-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--spacing-2xl);
    transition: all var(--transition-slow);
    position: relative;
}

.client-profile:hover {
    transform: translateY(-10px);
}

.client-avatar {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    border: 6px solid rgba(255, 255, 255, 0.3);
}

.client-profile:hover .client-avatar {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 30px 80px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.clients-carousel {
    position: relative;
    margin-bottom: var(--spacing-5xl);
    overflow: hidden;
    padding: var(--spacing-2xl) 0;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.clients-track {
    display: flex;
    gap: var(--spacing-2xl);
    animation: scrollClients 30s linear infinite;
    will-change: transform;
}

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

.client-card {
    flex: 0 0 360px;
    padding: var(--spacing-3xl);
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: relative;
    overflow: hidden;
    will-change: transform, box-shadow;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.client-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.client-card:hover::before {
    opacity: 1;
}

.client-card:hover::after {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-12px) scale(1.02) translateZ(0);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(255, 255, 255, 0.1);
}

.client-card .client-avatar {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-xl);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
    background: var(--color-white);
    border: 5px solid rgba(255, 255, 255, 0.4);
}

.client-card:hover .client-avatar {
    transform: scale(1.08) rotate(5deg);
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
}

.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    will-change: transform;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(0);
    backface-visibility: hidden;
}

.client-profile:hover .avatar-img {
    transform: scale(1.08) translateZ(0);
}

.client-avatar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.5s;
}

.client-avatar:hover::before {
    animation: shine 1.5s infinite;
}

.client-avatar:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

@keyframes shine {
    0% { left: -50%; }
    100% { left: 150%; }
}


.client-info {
    margin-top: var(--spacing-md);
}

.client-name {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-white);
    margin: 0 0 var(--spacing-sm) 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.client-role {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-weight: 500;
}

.clients-stats {
    display: flex;
    justify-content: center;
    gap: 120px;
    flex-wrap: wrap;
    margin-top: var(--spacing-4xl);
    padding-top: var(--spacing-4xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.stat-value {
    font-size: clamp(56px, 8vw, 88px);
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: var(--spacing-md);
    letter-spacing: -3px;
    line-height: 1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-label {
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   15. CTA SECTION
   ============================================ */
.cta-section {
    background: var(--color-white);
    padding: 100px var(--spacing-xl) 100px;
    text-align: center;
    color: var(--color-black);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.cta-title {
    font-size: clamp(40px, 6vw, 64px);
    margin: 0 0 24px 0;
    color: var(--color-black);
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1.1;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}

.cta-text {
    font-size: clamp(18px, 2.5vw, 24px);
    margin: 0 auto 40px auto;
    color: rgba(0, 0, 0, 0.75);
    font-weight: 500;
    line-height: 1.6;
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.cta-section .btn-primary {
    background: var(--color-black);
    color: var(--color-white);
    padding: 24px 64px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 2;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-primary:hover {
    box-shadow: 0 20px 64px rgba(0, 0, 0, 0.5);
    transform: translateY(-5px) scale(1.03) translateZ(0);
    background: rgba(0, 0, 0, 0.95);
}

/* ============================================
   16. FOOTER
   ============================================ */
.footer-section {
    background: var(--color-black);
    padding: var(--spacing-4xl) 0 var(--spacing-2xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-3xl);
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    flex-shrink: 0;
}

.footer-logo-img {
    width: 140px;
    height: auto;
    opacity: 0.9;
    transition: opacity var(--transition-base);
}

.footer-logo-img:hover {
    opacity: 1;
}

.footer-nav {
    display: flex;
    gap: var(--spacing-2xl);
    flex-wrap: wrap;
    align-items: center;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    margin: 0 8px;
}

.footer-separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    margin: 0 8px;
}

.footer-link {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 500;
    transition: all var(--transition-base);
    position: relative;
    padding: 4px 0;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-white);
    transition: width var(--transition-base);
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-link:hover::after {
    width: 100%;
}

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

.footer-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
    margin: 0;
}

/* ============================================
   17. SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    z-index: 10000;
    transform: scaleX(0);
    transform-origin: left;
    will-change: transform;
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

/* ============================================
   18. RIPPLE EFFECT
   ============================================ */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* ============================================
   19. RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* ============================================
   TABLET & SMALL DESKTOP (769px - 968px)
   ============================================ */
@media (max-width: 968px) and (min-width: 769px) {
    .container {
        padding: 0 var(--spacing-lg);
    }
    
    .what-is-content {
        padding: 0 var(--spacing-md);
    }
    
    .tools-list {
        margin-top: 40px;
    }

    .tool-item-content {
        gap: 20px;
    }

    .tool-icon-inline {
        width: 44px;
        height: 44px;
        min-width: 44px;
        font-size: 18px;
    }
    
    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .benefit-card {
        min-height: 400px;
        padding: 32px 24px;
    }
    
    .what-we-do-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .what-we-do-card {
        padding: 32px 24px;
    }
    
    .what-we-do-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 24px;
    }
    
    .what-we-do-title {
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .advantage-card {
        padding: 32px 24px;
    }
    
    .advantage-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .advantage-title {
        font-size: 20px;
        margin-bottom: 14px;
    }
    
    .advantage-text {
        font-size: 15px;
    }
    
    .what-we-do-list li {
        font-size: 14px;
        padding: 8px 0;
    }
    
    .clients-grid {
        gap: var(--spacing-3xl);
        grid-template-columns: repeat(3, 1fr);
    }
    
    .client-avatar {
        width: 160px;
        height: 160px;
    }
}

/* ============================================
   MOBILE LARGE (481px - 768px)
   ============================================ */
@media (max-width: 768px) and (min-width: 481px) {
    :root {
        --spacing-xs: 6px;
        --spacing-sm: 12px;
        --spacing-md: 20px;
        --spacing-lg: 28px;
        --spacing-xl: 40px;
        --spacing-2xl: 56px;
        --spacing-3xl: 80px;
        --spacing-4xl: 100px;
    }
    
    .header-container {
        padding: 0 var(--spacing-md);
    }
    
    .main-header {
        padding: var(--spacing-sm) 0;
    }
    
    .logo-img {
        height: 38px;
    }

    .logo-text {
        font-size: 18px;
    }
    
    .login-btn {
        padding: 10px 18px;
        font-size: 14px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .login-btn i {
        margin: 0;
    }
    
    .hero-section {
        min-height: 90vh;
        padding: var(--spacing-4xl) var(--spacing-lg);
    }
    
    .hero-badge-wrapper {
        margin-bottom: var(--spacing-3xl);
    }
    
    .hero-badge {
        padding: 8px 18px;
        font-size: 13px;
    }
    
    .hero-main-title {
        font-size: clamp(56px, 12vw, 100px);
        margin-bottom: var(--spacing-md);
    }
    
    .hero-subtitle {
        font-size: clamp(22px, 4vw, 32px);
        margin-bottom: var(--spacing-3xl);
    }
    
    .hero-description-main {
        font-size: clamp(18px, 2.8vw, 26px);
        margin-bottom: var(--spacing-2xl);
    }

    .hero-benefits-grid {
        gap: var(--spacing-lg);
        margin: var(--spacing-3xl) 0;
    }

    .hero-benefit-item {
        flex: 0 1 240px;
        padding: var(--spacing-lg);
    }

    .hero-benefit-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .hero-benefit-title {
        font-size: 16px;
    }
    
    .hero-benefits-list {
        margin-bottom: var(--spacing-4xl);
        gap: var(--spacing-md);
    }
    
    .hero-benefit-item {
        font-size: clamp(16px, 2.5vw, 22px);
    }
    
    .hero-cta-wrapper {
        margin-top: var(--spacing-3xl);
    }
    
    .hero-main-title .title-line-1 {
        font-size: clamp(36px, 7vw, 64px);
    }
    
    .hero-main-title .title-line-2 {
        font-size: clamp(42px, 8vw, 80px);
    }
    
    .hero-main-title .title-line-3 {
        font-size: clamp(36px, 7vw, 64px);
    }
    
    .social-proof-stats {
        gap: var(--spacing-md);
    }
    
    .stat-badge {
        padding: var(--spacing-md) var(--spacing-lg);
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .stat-verified-icon {
        font-size: 18px;
    }
    
    .stat-content {
        align-items: center;
    }
    
    .stat-number {
        font-size: clamp(20px, 4vw, 28px);
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .hero-cta-badges {
        gap: var(--spacing-md);
    }
    
    .cta-badge-item {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .client-verified-badge {
        width: 20px;
        height: 20px;
        right: -6px;
    }
    
    .client-verified-badge i {
        font-size: 10px;
    }
    
    .client-logo-img {
        width: 60px;
        height: 60px;
    }
    
    .trust-item {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 13px;
    }
    
    .trust-icon-wrapper {
        width: 28px;
        height: 28px;
    }
    
    .trust-verified-icon {
        width: 16px;
        height: 16px;
        font-size: 12px;
    }
    
    .trust-item i:not(.trust-verified-icon) {
        font-size: 18px;
    }
    
    .hero-clients-logos {
        margin-top: var(--spacing-3xl);
        padding-top: var(--spacing-2xl);
    }
    
    .clients-logos-grid {
        gap: var(--spacing-xl);
    }
    
    .client-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .trust-bar {
        gap: var(--spacing-md);
    }
    
    .trust-item {
        font-size: 13px;
    }
    
    .trust-item i {
        font-size: 16px;
    }
    
    .cta-features {
        gap: var(--spacing-md);
    }
    
    .cta-feature {
        font-size: 14px;
    }
    
    .btn-hero-cta {
        padding: 18px 40px;
        font-size: 17px;
    }
    
    .container {
        padding: 0 var(--spacing-md);
    }
    
    section {
        padding: var(--spacing-3xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .section-title {
        font-size: clamp(36px, 8vw, 56px);
        white-space: normal;
        margin-bottom: var(--spacing-sm);
    }
    
    .section-subtitle {
        font-size: clamp(16px, 3vw, 20px);
    }
    
    .what-is-section {
        padding: var(--spacing-3xl) 0;
        min-height: 75vh;
    }
    
    .what-is-hero {
        padding: 0 var(--spacing-md);
    }
    
    .what-is-badge {
        padding: 6px 20px;
        font-size: 12px;
        margin-bottom: var(--spacing-xl);
    }
    
    .what-is-main-title {
        font-size: clamp(32px, 10vw, 56px);
        white-space: normal;
        margin-bottom: var(--spacing-2xl);
        line-height: 1.2;
    }
    
    .what-is-content-box {
        padding: var(--spacing-3xl) var(--spacing-2xl);
        border-radius: 24px;
    }
    
    .what-is-description-main {
        font-size: clamp(18px, 4vw, 26px);
        line-height: 1.7;
    }
    
    .highlight-platform {
        padding: 1px 6px;
        margin: 0 1px;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .clients-track {
        gap: var(--spacing-xl);
    }
    
    .client-card {
        flex: 0 0 280px;
    }
    
    .clients-stats {
        gap: 60px;
    }
    
    .what-is-details-card {
        flex-direction: column;
        padding: var(--spacing-2xl);
        gap: var(--spacing-lg);
    }
    
    .details-icon {
        width: 64px;
        height: 64px;
        min-width: 64px;
        font-size: 28px;
    }
    
    .details-title {
        font-size: clamp(24px, 5vw, 32px);
    }
    
    .details-text {
        font-size: clamp(16px, 3vw, 20px);
    }
    
    .goals-grid {
        flex-direction: column;
        gap: var(--spacing-md);
        margin-top: var(--spacing-2xl);
    }
    
    .goal-card {
        flex: 1 1 100%;
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .goal-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: var(--spacing-md);
    }
    
    .goal-title {
        font-size: 16px;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .step-card {
        padding: var(--spacing-lg);
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
    }
    
    .step-title {
        font-size: 20px;
    }
    
    .step-text {
        font-size: 15px;
    }
    
    .benefits-hero {
        margin-bottom: var(--spacing-3xl);
    }
    
    .benefits-main-title {
        font-size: clamp(40px, 9vw, 64px);
    }
    
    .benefits-subtitle {
        font-size: clamp(18px, 4vw, 24px);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-3xl);
    }
    
    .benefit-card {
        padding: 28px 20px;
        min-height: auto;
    }
    
    .benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .benefit-title {
        font-size: clamp(22px, 4.5vw, 28px);
        margin-bottom: 12px;
    }
    
    .benefit-text {
        font-size: clamp(15px, 3vw, 17px);
        padding-bottom: 20px;
    }
    
    .benefit-highlight {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .benefits-cta {
        margin-top: var(--spacing-3xl);
        padding: var(--spacing-2xl);
    }
    
    .benefits-cta-title {
        font-size: clamp(28px, 6vw, 40px);
    }
    
    .benefits-cta-text {
        font-size: clamp(16px, 3.5vw, 20px);
    }
    
    .what-we-do-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .what-we-do-card {
        padding: 28px 20px;
    }
    
    .what-we-do-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 20px;
    }
    
    .what-we-do-title {
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .advantage-card {
        padding: 28px 20px;
    }
    
    .advantage-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .advantage-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .advantage-text {
        font-size: 14px;
    }
    
    .what-we-do-list li {
        font-size: 14px;
        padding: 8px 0;
        gap: 10px;
    }
    
    .what-we-do-list li i {
        font-size: 12px;
        width: 14px;
    }
    
    .tools-header {
        margin-bottom: var(--spacing-3xl);
    }
    
    .tools-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .tools-subtitle {
        font-size: clamp(16px, 3.5vw, 20px);
    }
    
    .tools-list {
        margin-top: 32px;
    }

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

    .tool-item-content {
        gap: 16px;
    }

    .tool-icon-inline {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: 16px;
    }

    .tool-title-inline {
        font-size: 16px;
    }

    .tool-text-inline {
        font-size: 14px;
    }
    
    .who-we-are-content {
        padding: 0 var(--spacing-md);
    }
    
    .who-we-are-title {
        font-size: clamp(36px, 8vw, 56px);
        margin-bottom: var(--spacing-lg);
    }
    
    .who-we-are-text {
        font-size: clamp(16px, 3.5vw, 20px);
    }
    
    .clients-section {
        padding: var(--spacing-3xl) 0;
    }
    
    .clients-title {
        font-size: clamp(36px, 8vw, 56px);
        margin-bottom: var(--spacing-md);
    }
    
    .clients-subtitle {
        font-size: clamp(18px, 3vw, 24px);
    }
    
    .client-card {
        flex: 0 0 280px;
        padding: var(--spacing-xl);
    }
    
    .client-card .client-avatar {
        width: 120px;
        height: 120px;
    }
    
    .clients-stats {
        gap: 60px;
    }
    
    .client-avatar {
        width: 90px;
        height: 90px;
        font-size: 36px;
        margin-bottom: var(--spacing-sm);
    }
    
    .client-name {
        font-size: 16px;
    }
    
    .clients-stats {
        gap: var(--spacing-2xl);
        flex-direction: column;
        align-items: center;
        margin-top: var(--spacing-xl);
    }
    
    .stat-value {
        font-size: clamp(36px, 8vw, 48px);
        margin-bottom: var(--spacing-xs);
    }
    
    .stat-label {
        font-size: 16px;
        padding: 6px 16px;
    }
    
    .cta-section {
        padding: 80px var(--spacing-md) 80px;
    }
    
    .cta-title {
        font-size: clamp(28px, 5.5vw, 44px);
        margin-bottom: 20px;
        line-height: 1.3;
        white-space: nowrap;
    }
    
    .cta-text {
        font-size: clamp(18px, 2.5vw, 22px);
        margin-bottom: 32px;
    }
    
    .cta-features {
        margin-bottom: 32px;
    }
    
    .btn-large {
        padding: 18px 40px;
        font-size: 18px;
    }
    
    .footer-section {
        padding: var(--spacing-3xl) 0 var(--spacing-xl);
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-lg);
        padding-bottom: var(--spacing-xl);
    }
    
    .footer-nav {
        justify-content: center;
        gap: var(--spacing-xl);
    }
    
    .footer-link {
        font-size: 15px;
    }
    
    .footer-logo-img {
        width: 120px;
        height: auto;
    }
    
    .footer-text {
        font-size: 13px;
    }
}

/* ============================================
   MOBILE SMALL (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {
    :root {
        --spacing-xs: 4px;
        --spacing-sm: 10px;
        --spacing-md: 16px;
        --spacing-lg: 24px;
        --spacing-xl: 32px;
        --spacing-2xl: 48px;
        --spacing-3xl: 64px;
        --spacing-4xl: 80px;
    }
    
    .header-container {
        padding: 0 var(--spacing-sm);
    }
    
    .main-header {
        padding: var(--spacing-xs) 0;
    }
    
    .logo-img {
        height: 32px;
    }

    .logo-text {
        font-size: 16px;
    }

    .logo-link {
        gap: 8px;
    }
    
    .login-btn {
        padding: 8px 14px;
        font-size: 12px;
    }
    
    .login-btn span {
        display: none;
    }
    
    .hero-section {
        min-height: 85vh;
        padding: var(--spacing-3xl) var(--spacing-md);
    }
    
    .hero-badge-wrapper {
        margin-bottom: var(--spacing-2xl);
    }
    
    .hero-badge {
        padding: 7px 16px;
        font-size: 12px;
    }
    
    .hero-main-title {
        font-size: clamp(44px, 12vw, 72px);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero-subtitle {
        font-size: clamp(18px, 4vw, 26px);
        margin-bottom: var(--spacing-2xl);
    }
    
    .hero-description-main {
        font-size: clamp(16px, 2.8vw, 22px);
        margin-bottom: var(--spacing-xl);
    }

    .hero-benefits-grid {
        flex-direction: column;
        gap: var(--spacing-md);
        margin: var(--spacing-2xl) 0;
    }

    .hero-benefit-item {
        flex: 1 1 100%;
        width: 100%;
        max-width: 300px;
        padding: var(--spacing-md);
    }

    .hero-benefit-icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
    }

    .hero-benefit-title {
        font-size: 15px;
    }
    
    .hero-benefits-list {
        margin-bottom: var(--spacing-3xl);
        gap: var(--spacing-sm);
    }
    
    .hero-benefit-item {
        font-size: clamp(14px, 2.5vw, 18px);
    }
    
    .hero-cta-wrapper {
        margin-top: var(--spacing-2xl);
    }
    
    .hero-main-title .title-line-1 {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    .hero-main-title .title-line-2 {
        font-size: clamp(32px, 9vw, 56px);
    }
    
    .hero-main-title .title-line-3 {
        font-size: clamp(28px, 8vw, 48px);
    }
    
    .social-proof-stats {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .stat-badge {
        padding: var(--spacing-sm) var(--spacing-md);
        width: 100%;
        max-width: 250px;
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .stat-verified-icon {
        font-size: 16px;
    }
    
    .stat-content {
        align-items: flex-start;
    }
    
    .stat-number {
        font-size: clamp(18px, 5vw, 24px);
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .hero-cta-badges {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-badge-item {
        padding: 6px 14px;
        font-size: 11px;
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }
    
    .client-verified-badge {
        width: 18px;
        height: 18px;
        right: -4px;
        top: -2px;
    }
    
    .client-verified-badge i {
        font-size: 9px;
    }
    
    .client-logo-img {
        width: 50px;
        height: 50px;
    }
    
    .trust-item {
        padding: var(--spacing-xs) var(--spacing-sm);
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .trust-icon-wrapper {
        width: 24px;
        height: 24px;
    }
    
    .trust-verified-icon {
        width: 14px;
        height: 14px;
        font-size: 10px;
    }
    
    .trust-item i:not(.trust-verified-icon) {
        font-size: 16px;
    }
    
    .hero-clients-logos {
        margin-top: var(--spacing-2xl);
        padding-top: var(--spacing-xl);
    }
    
    .clients-logos-grid {
        gap: var(--spacing-md);
    }
    
    .client-logo-img {
        width: 45px;
        height: 45px;
    }
    
    .client-logo-name {
        font-size: 11px;
    }
    
    .trust-bar {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .trust-item {
        font-size: 12px;
        width: 100%;
        justify-content: center;
    }
    
    .trust-item i {
        font-size: 14px;
    }
    
    .cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .cta-feature {
        font-size: 13px;
    }
    
    .btn-hero-cta {
        padding: 16px 36px;
        font-size: 16px;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    section {
        padding: var(--spacing-2xl) 0;
    }
    
    .section-header {
        margin-bottom: var(--spacing-xl);
    }
    
    .section-title {
        font-size: clamp(28px, 10vw, 40px);
        margin-bottom: var(--spacing-xs);
    }
    
    .section-subtitle {
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .what-is-grid {
        gap: 40px;
        margin-bottom: var(--spacing-2xl);
        align-items: flex-start;
    }
    
    .what-is-section {
        padding: var(--spacing-2xl) 0;
        min-height: 65vh;
    }
    
    .what-is-hero {
        padding: 0 var(--spacing-sm);
    }
    
    .what-is-badge {
        padding: 5px 16px;
        font-size: 11px;
        margin-bottom: var(--spacing-lg);
    }
    
    .what-is-main-title {
        font-size: clamp(28px, 12vw, 44px);
        white-space: normal;
        margin-bottom: var(--spacing-xl);
        line-height: 1.25;
    }
    
    .what-is-content-box {
        padding: var(--spacing-2xl) var(--spacing-lg);
        border-radius: 20px;
    }
    
    .what-is-description-main {
        font-size: clamp(16px, 5vw, 22px);
        line-height: 1.6;
    }
    
    .highlight-platform {
        padding: 1px 4px;
        margin: 0;
    }
    
    .what-is-details-card {
        padding: var(--spacing-lg);
        gap: var(--spacing-md);
    }
    
    .details-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        font-size: 24px;
    }
    
    .details-title {
        font-size: clamp(20px, 6vw, 28px);
        margin-bottom: var(--spacing-sm);
    }
    
    .details-text {
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.6;
    }
    
    .goals-grid {
        gap: var(--spacing-sm);
        margin-top: var(--spacing-xl);
    }
    
    .goal-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }
    
    .goal-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: var(--spacing-sm);
    }
    
    .goal-title {
        font-size: 14px;
    }
    
    .steps-grid {
        gap: var(--spacing-sm);
    }
    
    .step-card {
        padding: var(--spacing-md);
    }
    
    .step-number {
        top: var(--spacing-xs);
        left: var(--spacing-xs);
        font-size: 10px;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
        margin-bottom: var(--spacing-sm);
    }
    
    .step-title {
        font-size: 18px;
        margin-bottom: var(--spacing-xs);
    }
    
    .step-text {
        font-size: 14px;
    }
    
    .benefits-hero {
        margin-bottom: var(--spacing-2xl);
    }
    
    .benefits-main-title {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: var(--spacing-sm);
    }
    
    .benefits-subtitle {
        font-size: clamp(16px, 4.5vw, 20px);
    }
    
    .benefits-grid {
        gap: var(--spacing-md);
        margin-bottom: var(--spacing-2xl);
    }
    
    .benefit-card {
        padding: 24px 18px;
        min-height: auto;
    }
    
    .benefit-badge {
        top: 16px;
        right: 16px;
        width: 28px;
        height: 28px;
        font-size: 11px;
    }
    
    .benefit-icon {
        width: 52px;
        height: 52px;
        font-size: 22px;
        margin-bottom: 18px;
    }
    
    .benefit-title {
        font-size: clamp(20px, 5vw, 24px);
        margin-bottom: 12px;
    }
    
    .benefit-text {
        font-size: clamp(14px, 3.5vw, 16px);
        padding-bottom: 18px;
    }
    
    .benefit-highlight {
        padding: 10px 14px;
        font-size: 12px;
    }
    
    .benefits-cta {
        margin-top: var(--spacing-2xl);
        padding: var(--spacing-lg);
    }
    
    .benefits-cta-title {
        font-size: clamp(24px, 7vw, 32px);
        margin-bottom: var(--spacing-sm);
    }
    
    .benefits-cta-text {
        font-size: clamp(14px, 4vw, 18px);
        margin-bottom: var(--spacing-md);
    }
    
    .what-we-do-grid {
        gap: var(--spacing-md);
    }
    
    .what-we-do-card {
        padding: 24px 18px;
    }
    
    .what-we-do-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
        margin-bottom: 18px;
    }
    
    .what-we-do-title {
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .advantages-grid {
        gap: var(--spacing-md);
    }
    
    .advantage-card {
        padding: 24px 18px;
    }
    
    .advantage-icon {
        width: 44px;
        height: 44px;
        font-size: 18px;
        margin-bottom: 16px;
    }
    
    .advantage-title {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .advantage-text {
        font-size: 13px;
    }
    
    .what-we-do-list li {
        font-size: 13px;
        padding: 7px 0;
        gap: 10px;
    }
    
    .what-we-do-list li i {
        font-size: 11px;
        width: 12px;
    }
    
    .tools-header {
        margin-bottom: var(--spacing-2xl);
    }
    
    .tools-title {
        font-size: clamp(28px, 9vw, 40px);
        margin-bottom: var(--spacing-sm);
    }
    
    .tools-subtitle {
        font-size: clamp(14px, 4vw, 18px);
    }
    
    .tools-list {
        margin-top: 24px;
    }

    .tool-item {
        padding: 16px 0;
    }

    .tool-item-content {
        gap: 12px;
    }

    .tool-icon-inline {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: 14px;
    }

    .tool-title-inline {
        font-size: 15px;
    }

    .tool-text-inline {
        font-size: 13px;
    }
    
    .who-we-are-content {
        padding: 0 var(--spacing-sm);
    }
    
    .who-we-are-title {
        font-size: clamp(28px, 9vw, 40px);
        margin-bottom: var(--spacing-md);
    }
    
    .who-we-are-text {
        font-size: clamp(14px, 4vw, 18px);
        line-height: 1.7;
    }
    
    .clients-section {
        padding: var(--spacing-2xl) var(--spacing-sm);
    }
    
    .clients-title {
        font-size: clamp(28px, 9vw, 40px);
        margin-bottom: var(--spacing-xl);
    }
    
    .clients-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        margin-bottom: var(--spacing-2xl);
    }
    
    .client-profile {
        padding: var(--spacing-xl);
    }
    
    .client-avatar {
        width: 140px;
        height: 140px;
        margin-bottom: var(--spacing-lg);
    }
    
    .client-name {
        font-size: 24px;
    }
    
    .client-name {
        font-size: 14px;
    }
    
    .clients-stats {
        gap: var(--spacing-xl);
        margin-top: var(--spacing-lg);
    }
    
    .stat-value {
        font-size: clamp(32px, 10vw, 40px);
        margin-bottom: var(--spacing-xs);
    }
    
    .stat-label {
        font-size: 14px;
        padding: 5px 12px;
    }
    
    .cta-section {
        padding: 60px var(--spacing-sm) 60px;
    }
    
    .cta-title {
        font-size: clamp(24px, 5vw, 36px);
        margin-bottom: 16px;
        line-height: 1.2;
        white-space: nowrap;
    }
    
    .cta-text {
        font-size: clamp(16px, 2.5vw, 20px);
        margin-bottom: 28px;
    }
    
    .cta-features {
        margin-bottom: 28px;
        gap: var(--spacing-md);
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
    }
    
    .footer-section {
        padding: var(--spacing-2xl) 0 var(--spacing-lg);
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
        padding-bottom: var(--spacing-lg);
    }
    
    .footer-nav {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .footer-link {
        font-size: 14px;
    }
    
    .footer-logo-img {
        width: 100px;
        height: auto;
    }
    
    .footer-text {
        font-size: 12px;
    }
}

/* ============================================
   DESKTOP LARGE (min-width: 1400px)
   ============================================ */
@media (min-width: 1400px) {
    .container {
        max-width: 1600px;
        padding: 0 var(--spacing-2xl);
    }
    
    .hero-content {
        max-width: 1400px;
    }
    
    .what-is-grid {
        gap: 100px;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .tools-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-2xl);
    }
    
    .what-we-do-grid {
        gap: var(--spacing-2xl);
    }
    
    .clients-grid {
        gap: 80px;
    }
}

/* ============================================
   17. LEGAL PAGES
   ============================================ */
.legal-section {
    background: var(--color-black);
    position: relative;
    overflow: hidden;
}

.legal-hero {
    padding: var(--spacing-5xl) 0 var(--spacing-4xl);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.legal-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.legal-hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
    position: relative;
    z-index: 2;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    margin-bottom: var(--spacing-3xl);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.8px;
    text-transform: uppercase;
    backdrop-filter: blur(20px);
    transition: all var(--transition-base);
}

.legal-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.legal-badge i {
    font-size: 14px;
}

.legal-main-title {
    font-size: clamp(56px, 8vw, 110px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.05em;
    color: var(--color-white);
    margin: 0 0 var(--spacing-xl) 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.95) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-hero-text {
    font-size: clamp(18px, 2.5vw, 24px);
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
    margin: 0;
    letter-spacing: -0.01em;
}

.legal-content-wrapper {
    padding: var(--spacing-5xl) 0;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 var(--spacing-2xl);
}

.legal-body {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4xl);
}

.legal-article {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: var(--spacing-3xl);
    padding: var(--spacing-4xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.legal-article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--color-white) 0%, rgba(255, 255, 255, 0.5) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.legal-article::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
    pointer-events: none;
}

.legal-article:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.legal-article:hover::before {
    opacity: 1;
}

.legal-article:hover::after {
    opacity: 1;
}

.article-number {
    font-size: clamp(52px, 6vw, 80px);
    font-weight: 900;
    line-height: 1;
    color: rgba(255, 255, 255, 0.12);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.05em;
    user-select: none;
    position: relative;
}

.legal-article:hover .article-number {
    color: rgba(255, 255, 255, 0.2);
}

.article-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.article-title {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 800;
    line-height: 1.25;
    color: var(--color-white);
    margin: 0 0 var(--spacing-md) 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.03em;
}

.article-text {
    font-size: clamp(17px, 2.2vw, 21px);
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    margin: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.01em;
}

.article-list {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0 0 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.article-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    font-size: clamp(17px, 2.2vw, 20px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    padding: var(--spacing-sm) 0;
}

.list-icon {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 3px;
    transition: all var(--transition-base);
}

.legal-article:hover .list-icon {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.list-icon i {
    font-size: 12px;
    color: var(--color-white);
}

.article-list li:has(.list-icon i.fa-check) .list-icon {
    background: rgba(255, 255, 255, 0.15);
}

.article-list li:has(.list-icon i.fa-times) .list-icon {
    background: rgba(255, 100, 100, 0.2);
}

.article-list li:has(.list-icon i.fa-times) .list-icon i {
    color: rgba(255, 150, 150, 1);
}

.article-link {
    color: var(--color-white);
    text-decoration: underline;
    text-underline-offset: 4px;
    font-weight: 600;
    transition: opacity var(--transition-base);
}

.article-link:hover {
    opacity: 0.8;
}

.legal-cta {
    padding: var(--spacing-5xl) 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.02) 100%);
    position: relative;
}

.legal-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.legal-cta .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: 20px 48px;
    font-size: 18px;
    font-weight: 700;
}

.legal-cta .btn-primary i {
    font-size: 18px;
    transition: transform var(--transition-base);
}

.legal-cta .btn-primary:hover i {
    transform: translateX(-4px);
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-section {
        padding: var(--spacing-3xl) 0;
        min-height: auto;
    }
    
    .legal-content {
        padding: 0 var(--spacing-lg);
    }
    
    .legal-header {
        margin-bottom: var(--spacing-3xl);
        padding-bottom: var(--spacing-2xl);
    }
    
    .legal-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .legal-subtitle {
        font-size: clamp(14px, 3vw, 18px);
    }
    
    .legal-body {
        gap: var(--spacing-2xl);
    }
    
    .legal-section-item {
        padding: var(--spacing-xl) 0;
    }
    
    .legal-section-title {
        font-size: clamp(20px, 4vw, 26px);
        margin-bottom: var(--spacing-md);
    }
    
    .legal-text {
        font-size: clamp(15px, 3vw, 17px);
    }
    
    .legal-list li {
        font-size: clamp(15px, 3vw, 17px);
        padding-left: var(--spacing-xl);
    }
    
    .legal-footer {
        margin-top: var(--spacing-3xl);
        padding-top: var(--spacing-2xl);
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: var(--spacing-2xl) 0;
    }
    
    .legal-content {
        padding: 0 var(--spacing-md);
    }
    
    .legal-header {
        margin-bottom: var(--spacing-2xl);
        padding-bottom: var(--spacing-lg);
    }
    
    .legal-title {
        font-size: clamp(28px, 10vw, 44px);
    }
    
    .legal-body {
        gap: var(--spacing-xl);
    }
    
    .legal-section-item {
        padding: var(--spacing-lg) 0;
    }
    
    .legal-list li {
        padding-left: var(--spacing-lg);
    }
}

/* ============================================
   LEAD FORM SECTION
   ============================================ */
.lead-form-section {
    position: relative;
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(255, 255, 255, 0.03) 50%, rgba(0, 0, 0, 1) 100%);
    scroll-margin-top: 120px;
}

.lead-form-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
    align-items: start;
}

.lead-form-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 32px;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.lead-form-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.lead-form-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.lead-form {
    display: grid;
    gap: 16px;
}

.lead-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.lead-field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

.lead-field input,
.lead-field textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-field input:focus,
.lead-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.lead-field textarea {
    resize: vertical;
    min-height: 120px;
}

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

.lead-form-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

.lead-form-note a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.lead-form-side {
    display: grid;
    gap: 20px;
}

.lead-form-side-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 24px;
}

.lead-form-side-card.secondary {
    background: rgba(255, 255, 255, 0.04);
}

.lead-form-side-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.lead-form-side-card ul {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.lead-form-side-card li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.85);
}

/* ============================================
   CLIPPER SECTION
   ============================================ */
.clipper-section {
    position: relative;
}

.clipper-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1.5px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 32px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.clipper-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    justify-content: center;
}

.clipper-title {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 12px;
}

.clipper-subtitle {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.clipper-card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.clipper-list {
    list-style: none;
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    justify-items: center;
}

.clipper-list li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
    justify-content: center;
    text-align: center;
}

.clipper-cta {
    align-self: center;
}

/* ============================================
   LEAD MODAL
   ============================================ */
.lead-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
}

.lead-modal.active {
    display: flex;
}

.lead-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
}

.lead-modal-panel {
    position: relative;
    z-index: 1;
    width: min(760px, 92vw);
    background: #0f0f0f;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    max-height: 90vh;
    overflow-y: auto;
}

.lead-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.lead-modal-header {
    text-align: center;
    margin-bottom: 20px;
}

.lead-modal-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.lead-modal-header h2 {
    font-size: clamp(26px, 3.5vw, 34px);
    margin-bottom: 8px;
}

.lead-modal-header p {
    color: rgba(255, 255, 255, 0.7);
}

.lead-modal-form {
    display: grid;
    gap: 16px;
}

.lead-modal-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

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

.lead-modal-field label {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.2px;
}

.lead-modal-field input,
.lead-modal-field textarea {
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 12px 14px;
    color: #ffffff;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    transition: border 0.2s ease, box-shadow 0.2s ease;
}

.lead-modal-field input:focus,
.lead-modal-field textarea:focus {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.08);
}

.lead-modal-field textarea {
    resize: vertical;
    min-height: 120px;
}

.lead-modal-submit {
    width: 100%;
    justify-content: center;
}

.lead-modal-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
}

.lead-modal-note.success {
    color: #b6f5c5;
}

.lead-modal-note.error {
    color: #ffb2b2;
}

body.lead-modal-open {
    overflow: hidden;
}

/* ============================================
   CLIPPER TOAST
   ============================================ */
.clipper-toast {
    position: fixed;
    top: 96px;
    right: 24px;
    z-index: 1200;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    background: #0c0c0c;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 20px;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.65);
    animation: toastIn 0.35s ease;
    max-width: 360px;
    width: min(420px, calc(100vw - 48px));
}

.clipper-toast.hidden {
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.clipper-toast-content {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    flex: 1 1 auto;
    min-width: 0;
}

.clipper-toast-label {
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    font-size: 10px;
    letter-spacing: 0.9px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1;
    margin-top: 2px;
}

.clipper-toast-text {
    color: rgba(255, 255, 255, 0.95);
    white-space: normal;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.clipper-toast-subtext {
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.clipper-toast-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.clipper-toast-link {
    color: #000000;
    background: #ffffff;
    border: none;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.clipper-toast-close {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

@keyframes toastIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   END OF CSS
   ============================================ */
