/* ===================================
   ORCA SAAS - MODERN LANDING PAGE
   Minimalist, Conversion-Focused Design
   Color Scheme: White, Navy Blue, Orange
   =================================== */

/* === CSS Variables === */
:root {
    --color-primary: #FF7A00;
    --color-primary-dark: #E66D00;
    --color-primary-light: #FFA64D;
    --color-secondary: #0A1F44;
    --color-secondary-dark: #051429;
    --color-secondary-light: #1B3A5C;
    --color-white: #FFFFFF;
    --color-gray-50: #FAFAFA;
    --color-gray-100: #F4F4F4;
    --color-gray-200: #E8E8E8;
    --color-gray-300: #D4D4D4;
    --color-gray-400: #A3A3A3;
    --color-gray-600: #525252;
    --color-gray-700: #404040;
    --color-gray-900: #171717;

    --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);

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-family), sans-serif;
    color: var(--color-gray-900);
    line-height: 1.6;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}



/* === Hero Section === */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--color-gray-50) 0%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

.hero-section .container {
    display: grid;
    grid-template-columns: 1fr 460px;
    gap: 60px;
    align-items: center;
}

.hero-content {
    animation: fadeIn 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-gray-600);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Section - Özel Butonlar */
.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-hero-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.25), 0 2px 4px rgba(255, 122, 0, 0.15);
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.35), 0 4px 8px rgba(255, 122, 0, 0.2);
    transform: translateY(-2px);
}

.btn-hero-primary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(255, 122, 0, 0.25);
}

.btn-hero-secondary {
    background: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-gray-300);
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.08);
}

.btn-hero-secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(10, 31, 68, 0.12);
    transform: translateY(-2px);
}

.btn-hero-secondary:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.08);
}

.btn-hero-primary .btn-text,
.btn-hero-secondary .btn-text {
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Responsive Hero Buttons */
@media (max-width: 768px) {
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
}

.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 400px;
}

.ai-animation {
    position: relative;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(255, 122, 0, 0.3);
    animation: float 6s ease-in-out infinite;
}

.data-flow {
    position: absolute;
    width: 80px;
    height: 80px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.data-flow:nth-child(1) {
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.data-flow:nth-child(2) {
    bottom: -40px;
    left: 20%;
    animation-delay: 0.5s;
}

.data-flow:nth-child(3) {
    bottom: -40px;
    right: 20%;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.8;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.3;
    }
}


.eyebrow {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(255,122,0,0.06);
    padding: 6px 10px;
    border-radius: 999px;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 3.25rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.08;
}

.gradient-text {
    background: linear-gradient(90deg, #FF7A00 0%, #FFB86B 40%, #00D4FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray-600);
    margin-bottom: 1.75rem;
    max-width: 52ch;
}

.hero-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 8px 30px rgba(6, 24, 72, 0.12);
}

.btn-primary {
    background: linear-gradient(90deg, #FF7A00 0%, #FFB86B 60%);
    color: #fff;
    border: none;
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    border: 2px solid rgba(10,31,68,0.06);
}

.hero-badges {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-badges .badge {
    font-size: 0.875rem;
    color: var(--color-gray-700);
    background: rgba(10,31,68,0.04);
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
}

.hero-trust {
    margin-top: 32px;
}

.trust-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 4px 12px rgba(10, 31, 68, 0.04);
}

.trust-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-stat-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    border-radius: 10px;
    color: white;
    flex-shrink: 0;
}

.trust-stat-icon svg {
    width: 20px;
    height: 20px;
}

.trust-stat-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-stat-value {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.2;
}

.trust-stat-label {
    font-size: 0.8125rem;
    color: var(--color-gray-600);
    line-height: 1.2;
}

.trust-stat-divider {
    width: 1px;
    height: 32px;
    background: var(--color-gray-300);
    flex-shrink: 0;
}

.visual-cards {
    position: relative;
    width: 100%;
    height: 420px;
}

.glass-card {
    position: absolute;
    width: 260px;
    border-radius: 16px;
    padding: 18px;
    backdrop-filter: blur(8px) saturate(1.2);
    -webkit-backdrop-filter: blur(8px) saturate(1.2);
    background: linear-gradient(180deg, rgba(255,255,255,0.75), rgba(255,255,255,0.6));
    border: 1px solid rgba(255,255,255,0.5);
    box-shadow: 0 12px 30px rgba(4,18,40,0.08);
    overflow: hidden;
}

.card-1 { top: 10px; left: 30px; transform: rotate(-6deg); }
.card-2 { bottom: 20px; right: 10px; transform: rotate(4deg); }

.card-header {
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.card-body .stat {
    font-weight: 800;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.spark {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background: linear-gradient(90deg, #FFB86B 0%, #FF7A00 100%);
    box-shadow: 0 8px 20px rgba(255, 122, 0, 0.18);
    margin-bottom: 12px;
}

.glow-orb {
    position: absolute;
    right: -60px;
    top: -40px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0,212,255,0.14), transparent 40%), radial-gradient(circle at 70% 70%, rgba(255,122,0,0.12), transparent 40%);
    filter: blur(24px);
    transform: translateZ(0);
    pointer-events: none;
}

/* subtle entrance animations */
.hero-content { animation: fadeIn 900ms ease-out both; }
.visual-cards { animation: float 8s ease-in-out infinite; }

/* === Hero Focused - Satışa Odaklı Sürüm === */
.hero-focused .eyebrow {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8125rem;
}

.hero-focused .hero-title {
    font-size: 3.5rem;
    line-height: 1.05;
    margin: 12px 0 16px;
}

.hero-focused .hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    margin-bottom: 28px;
    line-height: 1.5;
    max-width: 48ch;
}

.hero-focused .hero-cta {
    display: flex;
    gap: 14px;
    align-items: center;
    margin-bottom: 20px;
}

.hero-focused .btn-hero-primary,
.hero-focused .btn-hero-secondary {
    padding: 16px 28px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
}

.hero-focused .btn-hero-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.3);
}

.hero-focused .btn-hero-primary:hover {
    box-shadow: 0 10px 30px rgba(255, 122, 0, 0.4);
    color: white;
}

.hero-focused .hero-badges {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-focused .hero-badges .badge {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-700);
    background: rgba(10, 31, 68, 0.05);
    padding: 8px 14px;
    border-radius: 999px;
}

/* Kompakt Trust Stats */
.trust-stats-compact {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    border: 1px solid rgba(10, 31, 68, 0.08);
    flex-wrap: wrap;
}

.trust-item-compact {
    display: flex;
    gap: 6px;
    align-items: baseline;
}

.trust-item-compact strong {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.trust-item-compact span {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

.divider-compact {
    color: var(--color-gray-400);
    font-weight: 300;
    font-size: 1.25rem;
}

@media (max-width: 1024px) {
    .visual-cards { height: 360px; }
    
    .hero-focused .hero-title { font-size: 3rem; }
    .hero-focused .hero-subtitle { font-size: 1.125rem; }
}

@media (max-width: 900px) {
    /* Görselleri mobilde göster ama kompakt */
    .hero-focused .hero-visual { 
        display: block !important;
        margin: 0 auto;
        max-width: 100%;
    }
    
    /* Visual cards mobilde daha küçük */
    .hero-focused .visual-cards {
        height: 200px;
        width: 350px;
        margin: 0 auto;
        position: relative;
    }
    
    /* Glass card'ları yan yana dizin */
    .hero-focused .glass-card {
        position: absolute !important;
        width: 48% !important;
        padding: 14px !important;
        border-radius: 12px !important;
    }
    
    .hero-focused .card-1 {
        top: 20px !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
        transform: rotate(-4deg) !important;
    }
    
    .hero-focused .card-2 {
        top: 20px !important;
        right: 0 !important;
        left: auto !important;
        bottom: auto !important;
        transform: rotate(4deg) !important;
    }
    
    .hero-focused .card-header {
        font-size: 0.875rem;
        margin-bottom: 6px;
    }
    
    .hero-focused .card-body .stat {
        font-size: 0.9375rem;
    }
    
    .hero-focused .spark {
        width: 32px;
        height: 32px;
        margin-bottom: 8px;
    }
    
    .hero-focused .glow-orb {
        width: 180px;
        height: 180px;
        right: 50%;
        top: 50%;
        transform: translate(50%, -50%);
    }
    
    /* Mobil içerik düzenlemeleri */
    .hero-focused .hero-content {
        max-width: 100%;
        width: 100%;
    }
    
    .hero-focused .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin: 8px 0 12px;
    }
    
    .hero-focused .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 20px;
        line-height: 1.5;
    }
    
    /* CTA'ları mobilde yan yana tut ama küçült */
    .hero-focused .hero-cta {
        flex-direction: row;
        align-items: stretch;
        gap: 8px;
    }
    
    .hero-focused .btn-hero-primary,
    .hero-focused .btn-hero-secondary {
        flex: 1;
        text-align: center;
        justify-content: center;
        padding: 14px 16px;
        font-size: 0.9375rem;
    }
    
    /* Badge'leri daha kompakt yap */
    .hero-focused .hero-badges {
        gap: 8px;
        margin-top: 16px;
    }
    
    .hero-focused .hero-badges .badge {
        font-size: 0.8125rem;
        padding: 6px 12px;
    }
    
    /* Trust stats mobilde daha kompakt */
    .trust-stats-compact {
        gap: 10px;
        padding: 12px 16px;
        margin-top: 16px;
        font-size: 0.875rem;
    }
    
    .trust-item-compact strong {
        font-size: 0.9375rem;
    }
    
    .trust-item-compact span {
        font-size: 0.8125rem;
    }
    
    .divider-compact {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-visual { order: -1; margin-bottom: 24px; }
    .visual-cards { height: 260px; }
    .glass-card { position: relative; width: 100%; transform: none; margin-bottom: 12px; }
    .card-1, .card-2 { left: 0; right: 0; bottom: 0; top: 0; }
}

/* === Platform Section === */
.platform-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 50%, #0A1F44 100%);
    position: relative;
    overflow: hidden;
}

.platform-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: float 8s ease-in-out infinite;
}

.platform-section::after {
    content: '';
    position: absolute;
    bottom: -300px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.12) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: float 10s ease-in-out infinite reverse;
}

.section-header {
    text-align: center;
    margin-bottom: 72px;
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
}

.section-subtitle {
    font-size: 1.375rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

.platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.platform-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(255,255,255,0.88));
    backdrop-filter: blur(20px) saturate(1.1);
    -webkit-backdrop-filter: blur(20px) saturate(1.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.platform-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.08) 0%, rgba(0, 212, 255, 0.06) 100%);
    opacity: 0;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
    border-radius: 24px;
}

.platform-card::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #00D4FF 100%);
    border-radius: 24px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 24px 64px rgba(255, 122, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: rgba(255, 122, 0, 0.4);
}

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

.platform-card:hover::after {
    opacity: 0.15;
}

.platform-icon {
    font-size: 3.5rem;
    margin-bottom: 1.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.12) 0%, rgba(0, 212, 255, 0.08) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 0, 0.2);
    border-radius: 28px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
            0 8px 24px rgba(255, 122, 0, 0.15),
            0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    color: var(--color-primary);
}

.platform-icon i {
    position: relative;
    z-index: 1;
}

.platform-icon::before {
    content: '';
    position: absolute;
    inset: -12px;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFB86B 100%);
    border-radius: 36px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    filter: blur(20px);
}

.platform-card:hover .platform-icon {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.2) 0%, rgba(0, 212, 255, 0.15) 100%);
    transform: scale(1.1) rotate(-5deg);
    border-color: rgba(255, 122, 0, 0.4);
    box-shadow:
            0 16px 48px rgba(255, 122, 0, 0.3),
            0 8px 24px rgba(0, 0, 0, 0.2),
            0 0 0 1px rgba(255, 122, 0, 0.3) inset;
}

.platform-card:hover .platform-icon::before {
    opacity: 0.6;
}

.platform-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.platform-card:hover .platform-title {
    color: var(--color-primary);
}

.platform-description {
    font-size: 1.0625rem;
    color: var(--color-gray-600);
    line-height: 1.75;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
}

.platform-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #FFB86B 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.25);
    overflow: hidden;
}

.platform-card-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFB86B 0%, var(--color-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.platform-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);
    color: white;
}

.platform-card-btn:hover::before {
    opacity: 1;
}

.platform-card-btn i {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1.1rem;
}

.platform-card-btn:hover i {
    transform: translateX(4px);
}

/* === AI Feature Section === */
.ai-feature-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-light) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-feature-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.ai-feature-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: float 4s ease-in-out infinite;
}

.ai-feature-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.ai-feature-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* === Social Proof Section - Modern Helpscout Style === */
.social-proof {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

@keyframes gradientShift {
    0% {
        background-position: 0 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0 50%;
    }
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.stat-item::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.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-plus,
.stat-suffix {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.25rem;
    vertical-align: top;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.social-proof-trust {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 0;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .social-proof-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

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

.social-proof-header {
    margin-bottom: 4rem;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.social-proof-badge svg {
    animation: sparkle 2s ease-in-out infinite;
}

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

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

.social-proof-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.social-proof-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.social-proof-text {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 3rem;
    font-weight: 500;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.stat-item::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.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-plus,
.stat-suffix {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.25rem;
    vertical-align: top;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.social-proof-trust {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 0;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .social-proof-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

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

.social-proof-header {
    margin-bottom: 4rem;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.social-proof-badge svg {
    animation: sparkle 2s ease-in-out infinite;
}

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

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

.social-proof-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.social-proof-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.social-proof-text {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 3rem;
    font-weight: 500;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.stat-item::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.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-plus,
.stat-suffix {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.25rem;
    vertical-align: top;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.social-proof-trust {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 0;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .social-proof-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

@keyframes pulseGlow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.9;
    }
}

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

.social-proof-header {
    margin-bottom: 4rem;
}

.social-proof-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: white;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s ease-out;
}

.social-proof-badge svg {
    animation: sparkle 2s ease-in-out infinite;
}

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

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

.social-proof-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4), 0 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

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

.social-proof-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

.social-proof-text {
    font-size: 1.25rem;
    color: var(--color-gray-700);
    margin-bottom: 3rem;
    font-weight: 500;
}

.stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out both;
}

.stat-item:nth-child(1) { animation-delay: 0.4s; }
.stat-item:nth-child(2) { animation-delay: 0.5s; }
.stat-item:nth-child(3) { animation-delay: 0.6s; }
.stat-item:nth-child(4) { animation-delay: 0.7s; }

.stat-item::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.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.stat-item:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.4);
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
    display: inline-block;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-plus,
.stat-suffix {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.9);
    margin-left: 0.25rem;
    vertical-align: top;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    color: white;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
}

.social-proof-trust {
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.trust-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 0;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .social-proof-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 2rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }
}

/* === Pricing Section === */
/* ========================================
   PRICING SECTION - HELP SCOUT INSPIRED
   ======================================== */

.pricing-section-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #FAFBFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1400px;
    height: 400px;
    background: radial-gradient(circle at 50% 0%, rgba(255, 122, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

/* Header */
.pricing-header-modern {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 1;
}

.pricing-eyebrow {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50px;
}

.pricing-title-modern {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.pricing-subtitle-modern {
    font-size: 1.25rem;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Billing Toggle */
.billing-toggle-modern {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem;
    background: var(--color-white);
    border-radius: 50px;
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.08), 0 0 0 1px rgba(10, 31, 68, 0.04);
}

.billing-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    user-select: none;
}

.billing-option-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-gray-700);
    transition: color 0.2s ease;
}

.billing-save-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 0.25rem 0.6rem;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.billing-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    cursor: pointer;
}

.billing-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.billing-switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-gray-300);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50px;
}

.billing-switch-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.billing-switch input:checked + .billing-switch-slider {
    background: var(--color-primary);
}

.billing-switch input:checked + .billing-switch-slider:before {
    transform: translateX(22px);
}

/* Pricing Cards Grid */
.pricing-cards-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
    position: relative;
    z-index: 1;
}

/* Individual Pricing Card */
.pricing-card-modern {
    background: var(--color-white);
    border: 1px solid rgba(10, 31, 68, 0.08);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 1px 3px rgba(10, 31, 68, 0.04);
}

.pricing-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(10, 31, 68, 0.12), 0 0 0 1px rgba(10, 31, 68, 0.06);
    border-color: rgba(255, 122, 0, 0.2);
}

/* Featured/Popular Card */
.pricing-card-featured {
    border: 2px solid var(--color-primary);
    box-shadow: 0 8px 30px rgba(255, 122, 0, 0.15), 0 0 0 1px rgba(255, 122, 0, 0.1);
    position: relative;
}

.pricing-card-featured:hover {
    transform: translateY(-12px);
    box-shadow: 0 16px 50px rgba(255, 122, 0, 0.2), 0 0 0 2px var(--color-primary);
}

.featured-badge-modern {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

/* Card Header */
.pricing-card-header-modern {
    text-align: center;
    margin-bottom: 2rem;
}

.plan-icon-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    border-radius: 16px;
    color: var(--color-primary);
}

.pricing-card-featured .plan-icon-modern {
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.15) 0%, rgba(255, 122, 0, 0.08) 100%);
}

.plan-name-modern {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.plan-desc-modern {
    font-size: 1rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Pricing */
.pricing-card-price-modern {
    text-align: center;
    padding: 2rem 0;
    border-bottom: 1px solid rgba(10, 31, 68, 0.08);
    margin-bottom: 2rem;
}

.price-wrapper-modern {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0.5rem;
}

.price-currency-modern {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-top: 0.5rem;
    margin-right: 0.25rem;
}

.price-value-modern {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-period-modern {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* Features List */
.pricing-card-features-modern {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.feature-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.875rem 0;
    font-size: 0.95rem;
    color: var(--color-gray-700);
    line-height: 1.6;
}

.feature-item-modern:not(:last-child) {
    border-bottom: 1px solid rgba(10, 31, 68, 0.04);
}

.feature-check {
    flex-shrink: 0;
    color: var(--color-primary);
    margin-top: 2px;
}

.feature-highlight {
    color: var(--color-secondary);
    font-weight: 600;
}

/* CTA Button */
.pricing-card-cta-modern {
    text-align: center;
}

.btn-pricing-modern {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.btn-pricing-primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    box-shadow: 0 4px 14px rgba(255, 122, 0, 0.3);
}

.btn-pricing-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 122, 0, 0.4);
    color: var(--color-secondary);
}

.btn-pricing-secondary {
    background: var(--color-white);
    color: var(--color-secondary);
    border: 2px solid var(--color-gray-300);
}

.btn-pricing-secondary:hover {
    background: var(--color-gray-50);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(10, 31, 68, 0.1);
}

.pricing-card-note {
    font-size: 0.85rem;
    color: var(--color-gray-600);
    margin-top: 0.75rem;
}

/* Feature Comparison */
.pricing-features-comparison {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 3rem;
    background: var(--color-white);
    border-radius: 16px;
    border: 1px solid rgba(10, 31, 68, 0.08);
    box-shadow: 0 2px 8px rgba(10, 31, 68, 0.04);
}

.comparison-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.comparison-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.comparison-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--color-white);
    border: 2px solid var(--color-gray-300);
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.comparison-toggle:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
}

.comparison-toggle svg {
    transition: transform 0.3s ease;
}

.comparison-toggle.active svg {
    transform: rotate(180deg);
}

/* Comparison Table */
.comparison-table {
    margin-top: 2rem;
    animation: slideDown 0.4s ease;
}

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

.comparison-table-grid {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.comparison-table-grid th {
    padding: 1.25rem 1rem;
    text-align: left;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--color-secondary);
    background: var(--color-gray-50);
    border-bottom: 2px solid var(--color-gray-200);
}

.comparison-table-grid th:first-child {
    border-radius: 12px 0 0 0;
}

.comparison-table-grid th:last-child {
    border-radius: 0 12px 0 0;
}

.plan-col {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.85rem;
}

.plan-col-featured {
    background: rgba(255, 122, 0, 0.1);
    color: var(--color-primary);
}

.category-row {
    background: var(--color-gray-50);
}

.category-title {
    padding: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    color: var(--color-gray-600);
}

.comparison-table-grid td {
    padding: 1rem;
    border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}

.feature-name {
    font-size: 0.95rem;
    color: var(--color-gray-700);
    font-weight: 500;
}

.feature-value {
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-gray-700);
}

.check-icon {
    color: var(--color-primary);
    display: inline-block;
}

.feature-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(255, 122, 0, 0.1);
    color: var(--color-primary);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 6px;
}

/* Trust Section */
.pricing-trust-section {
    max-width: 1200px;
    margin: 80px auto 0;
}

.pricing-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.pricing-trust-item {
    text-align: center;
}

.pricing-trust-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    border-radius: 16px;
    color: var(--color-primary);
}

.pricing-trust-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.pricing-trust-desc {
    font-size: 0.95rem;
    color: var(--color-gray-600);
    line-height: 1.5;
}

/* === Buttons === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    font-size: 1rem;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.3);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 122, 0, 0.4);
    color: var(--color-white);
}

.btn-secondary {
    background: transparent;
    color: var(--color-secondary);
    padding: 1rem 2rem;
    font-size: 1rem;
    border: 2px solid var(--color-secondary);
}

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

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-block {
    width: 100%;
    padding: 1rem 2rem;
}

/* === CTA Section === */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before,
.cta-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-section::before {
    top: -250px;
    left: -250px;
}

.cta-section::after {
    bottom: -250px;
    right: -250px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-guarantee {
    margin-top: 1.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

/* === Responsive Design === */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .pricing-title-modern {
        font-size: 2.5rem;
    }
    
    .pricing-cards-modern {
        gap: 1.5rem;
    }
}

@media (max-width: 992px) {
    .navbar-menu,
    .navbar-actions {
        display: none;
    }

    .mobile-menu-btn,
    .mobile-menu {
        display: flex;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
        min-height: 300px;
    }

    .ai-animation {
        width: 250px;
        height: 250px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .pricing-section-modern {
        padding: 80px 25px;
    }
    
    .pricing-header-modern {
        margin-bottom: 60px;
    }
    
    .pricing-title-modern {
        font-size: 2.25rem;
    }
    
    .pricing-cards-modern {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .pricing-card-featured {
        order: -1;
    }
    
    .comparison-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
    
    .comparison-title {
        font-size: 1.5rem;
    }
    
    .pricing-features-comparison {
        padding: 2rem;
    }
    
    .comparison-table-grid {
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .navbar-content {
        height: 72px;
    }

    .logo-img {
        height: 36px;
    }

    .container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

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

    .hero-cta .btn {
        width: 100%;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    .platform-section,
    .features-section{
        padding: 60px 20px;
    }

    .ai-feature-title {
        font-size: 2rem;
    }

    .ai-feature-text {
        font-size: 1.125rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-subtitle {
        font-size: 1.125rem;
    }
    
    .pricing-section-modern {
        padding: 60px 25px;
    }
    
    .pricing-title-modern {
        font-size: 2rem;
    }
    
    .pricing-subtitle-modern {
        font-size: 1.125rem;
    }
    
    .billing-toggle-modern {
        flex-direction: column;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .billing-option-text {
        font-size: 0.875rem;
    }
    
    .price-value-modern {
        font-size: 3rem;
    }
    
    .pricing-card-modern {
        padding: 2rem;
    }
    
    .pricing-features-comparison {
        padding: 1.5rem;
        margin-top: 60px;
    }
    
    .comparison-table-grid {
        display: block;
    }
    
    .comparison-table-grid thead {
        display: none;
    }
    
    .comparison-table-grid tbody,
    .comparison-table-grid tr,
    .comparison-table-grid td {
        display: block;
    }
    
    .comparison-table-grid tr {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
        border-bottom: 2px solid var(--color-gray-200);
    }
    
    .comparison-table-grid td {
        text-align: left;
        padding: 0.5rem 0;
    }
    
    .feature-name {
        font-weight: 700;
        font-size: 1rem;
    }
    
    .feature-value {
        text-align: left;
        padding-left: 1rem;
    }
    
    .pricing-trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .platform-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pricing-eyebrow {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
    
    .pricing-title-modern {
        font-size: 1.75rem;
    }
    
    .pricing-subtitle-modern {
        font-size: 1rem;
    }
    
    .price-value-modern {
        font-size: 2.5rem;
    }
    
    .plan-name-modern {
        font-size: 1.5rem;
    }
    
    .pricing-card-modern {
        padding: 1.5rem;
    }
    
    .btn-pricing-modern {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .comparison-toggle {
        width: 100%;
        justify-content: center;
    }
    
    .pricing-features-comparison {
        padding: 1rem;
    }
}

/* Utility Classes */
.text-primary {
    color: var(--color-primary);
}

.text-secondary {
    color: var(--color-secondary);
}

.bg-primary {
    background-color: var(--color-primary);
}

.bg-secondary {
    background-color: var(--color-secondary);
}

.shadow-sm {
    box-shadow: var(--shadow-sm);
}

.shadow-md {
    box-shadow: var(--shadow-md);
}

.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-xl {
    box-shadow: var(--shadow-xl);
}


/* === Modern Social Proof Section - Helpscout Inspired === */
.social-proof .container {
    max-width: 1200px;
}

/* Trusted Companies */
.trusted-companies {
    text-align: center;
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease-out;
}

.trusted-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
}

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

.logo-item {
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.logo-item:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.05);
}

.logo-item img {
    height: 40px;
    width: auto;
}

/* Modern Stats Grid */
.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 32px;
    margin-bottom: 96px;
}

.stat-card-modern {
    background: #FFFFFF;
    border: 1px solid rgba(10, 31, 68, 0.08);
    border-radius: 16px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 31, 68, 0.12);
    border-color: rgba(255, 122, 0, 0.2);
}

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

.stat-value-modern {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 16px;
}

.stat-number-modern {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix-modern {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-left: 4px;
}

.stat-title-modern {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.stat-desc-modern {
    font-size: 0.9375rem;
    color: var(--color-gray-600);
    line-height: 1.6;
}

/* Testimonial Carousel */
.testimonial-carousel-wrapper {
    margin-bottom: 80px;
    position: relative;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    background: linear-gradient(135deg, #0A1F44 0%, #1B3A5C 100%);
    border-radius: 24px;
    padding: 64px;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(10, 31, 68, 0.2);
    animation: fadeIn 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: grid;
}

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

.testimonial-slide::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.testimonial-quote {
    position: relative;
}

.testimonial-quote svg {
    color: rgba(255, 122, 0, 0.2);
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 1.375rem;
    line-height: 1.7;
    color: #FFFFFF;
    margin-bottom: 32px;
    font-weight: 400;
}

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

.author-flag {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.author-flag img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-flag svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-name {
    font-weight: 700;
    font-size: 1.125rem;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.author-position {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
}

.testimonial-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.testimonial-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-stat:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(8px);
}

.testimonial-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary-light);
    margin-bottom: 8px;
    line-height: 1;
}

.testimonial-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* Carousel Navigation */
.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 32px;
}

.testimonial-nav-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #FFA64D;
}

.testimonial-nav-btn:hover {
    background: rgba(255, 122, 0, 0.2);
    border-color: var(--color-primary-light);
    transform: scale(1.1);
}

.testimonial-dots {
    display: flex;
    gap: 12px;
}

.testimonial-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 122, 0, 0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.testimonial-dots .dot.active {
    background: var(--color-primary-light);
    width: 32px;
    border-radius: 6px;
}

.testimonial-dots .dot:hover {
    background: var(--color-primary-light);
    opacity: 0.8;
}

/* Trust Badges Modern */
.trust-badges-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.trust-badge-item {
    background: #FFFFFF;
    border: 1px solid rgba(10, 31, 68, 0.08);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.trust-badge-item:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(10, 31, 68, 0.08);
    transform: translateY(-4px);
}

.trust-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.1) 0%, rgba(255, 122, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--color-primary);
}

.trust-badge-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.trust-badge-subtitle {
    font-size: 0.875rem;
    color: var(--color-gray-600);
}

/* Counter Animation */
@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stat-number-modern {
    animation: countUp 0.8s ease-out;
}

/* Responsive Design for Social Proof */
@media (max-width: 992px) {
    .testimonial-slide {
        grid-template-columns: 1fr;
        padding: 48px 40px;
        gap: 32px;
    }

    .testimonial-stats {
        flex-direction: row;
        gap: 16px;
        flex-wrap: wrap;
    }
    
    .testimonial-stat {
        flex: 1;
        min-width: 140px;
    }

    .testimonial-text {
        font-size: 1.25rem;
    }
    
    .testimonial-quote svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .social-proof {
        padding: 80px 0;
    }

    .trusted-companies {
        margin-bottom: 60px;
    }

    .company-logos {
        gap: 32px;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-bottom: 60px;
    }

    .stat-number-modern {
        font-size: 3rem;
    }

    .stat-suffix-modern {
        font-size: 2rem;
    }

    .testimonial-slide {
        padding: 32px 24px;
        gap: 24px;
    }
    
    .testimonial-carousel-wrapper {
        margin-bottom: 60px;
    }

    .testimonial-text {
        font-size: 1.0625rem;
        line-height: 1.6;
        margin-bottom: 24px;
    }
    
    .testimonial-quote {
        margin-bottom: 20px;
    }
    
    .testimonial-quote svg {
        width: 32px;
        height: 32px;
        margin-bottom: 16px;
    }

    .testimonial-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .testimonial-stat {
        padding: 20px 16px;
    }
    
    .testimonial-stat-value {
        font-size: 2rem;
    }
    
    .testimonial-stat-label {
        font-size: 0.875rem;
    }
    
    .author-flag {
        width: 48px;
        height: 48px;
    }
    
    .author-name {
        font-size: 1rem;
    }
    
    .author-position {
        font-size: 0.875rem;
    }

    .author-flag svg {
        width: 36px;
        height: 36px;
    }

    .trust-badges-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .testimonial-highlight {
        padding: 32px 24px;
    }
    
    .social-proof {
        padding: 60px 0;
    }
    
    .section-title-modern {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle-modern {
        font-size: 1rem;
    }
    
    .stats-grid-modern {
        gap: 20px;
        margin-bottom: 48px;
    }
    
    .stat-number-modern {
        font-size: 2.5rem;
    }
    
    .stat-suffix-modern {
        font-size: 1.75rem;
    }
    
    .stat-title-modern {
        font-size: 1rem;
    }
    
    .stat-desc-modern {
        font-size: 0.875rem;
    }
    
    .testimonial-slide {
        padding: 24px 20px;
        border-radius: 16px;
    }
    
    .testimonial-slide::before {
        width: 200px;
        height: 200px;
        top: -50px;
        right: -50px;
    }
    
    .testimonial-carousel-wrapper {
        margin-bottom: 48px;
    }

    .testimonial-text {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 20px;
    }
    
    .testimonial-quote svg {
        width: 28px;
        height: 28px;
        margin-bottom: 12px;
    }
    
    .testimonial-author {
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .author-flag {
        width: 42px;
        height: 42px;
    }
    
    .author-name {
        font-size: 0.9375rem;
    }
    
    .author-position {
        font-size: 0.8125rem;
    }
    
    .testimonial-stats {
        gap: 10px;
    }
    
    .testimonial-stat {
        padding: 16px 12px;
        border-radius: 12px;
    }
    
    .testimonial-stat-value {
        font-size: 1.75rem;
        margin-bottom: 6px;
    }
    
    .testimonial-stat-label {
        font-size: 0.8125rem;
    }
    
    .testimonial-nav-btn {
        width: 42px;
        height: 42px;
    }
    
    .testimonial-nav-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .company-logos {
        gap: 24px;
    }
    
    .company-logo {
        max-width: 100px;
    }
    
    .trust-badges-modern {
        gap: 12px;
    }
    

    .author-avatar {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .testimonial-stat-value {
        font-size: 2rem;
    }

    .stat-card-modern {
        padding: 32px 24px;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE DESIGN
   Mobile-First Approach
   ============================================ */

/* === Animations === */
@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* === Tablet & Below (max-width: 1024px) === */
@media (max-width: 1024px) {
    /* Container adjustments */
    .container {
        padding: 0 1.5rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 80px 0 60px;
    }

    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.75rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-visual {
        order: -1;
        min-height: 300px;
    }


    /* Platform Section */
    .platform-section {
        padding: 80px 20px;
    }

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

    .section-title {
        font-size: 2.5rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    /* AI Feature */
    .ai-feature-section {
        padding: 60px 0;
    }

    .ai-feature-title {
        font-size: 2.5rem;
    }

    .ai-feature-text {
        font-size: 1.25rem;
    }
}

/* === Mobile Landscape & Portrait (max-width: 768px) === */
@media (max-width: 768px) {
    /* Typography */
    html {
        font-size: 15px;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 60px 0 40px;
    }

    .hero-section::before {
        width: 400px;
        height: 400px;
        top: -30%;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

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

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
        justify-content: center;
    }

    .hero-visual {
        min-height: 250px;
    }

    .ai-animation {
        width: 200px;
        height: 200px;
    }

    .data-flow {
        width: 60px;
        height: 60px;
    }

    .eyebrow {
        font-size: 0.8125rem;
    }

    .visual-cards {
        height: 280px;
        margin-bottom: 20px;
    }

    .glass-card {
        width: 100%;
        position: relative;
        transform: none !important;
        margin-bottom: 16px;
    }

    .card-1,
    .card-2 {
        position: relative;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .glow-orb {
        width: 240px;
        height: 240px;
        right: -40px;
        top: -20px;
    }

    /* Platform Section */
    .platform-section {
        padding: 60px 20px;
    }

    .platform-section::before,
    .platform-section::after {
        width: 400px;
        height: 400px;
    }

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

    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .platform-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .platform-card {
        padding: 2rem 1.5rem;
    }

    .platform-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }

    .platform-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .platform-description {
        font-size: 1rem;
    }

    /* AI Feature Section */
    .ai-feature-section {
        padding: 50px 0;
    }

    .ai-feature-icon {
        font-size: 3.5rem;
        margin-bottom: 1rem;
    }

    .ai-feature-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .ai-feature-text {
        font-size: 1.125rem;
    }

    /* Social Proof */
    .social-proof {
        padding: 60px 0;
    }

    .social-proof-header {
        margin-bottom: 3rem;
    }

    .social-proof-title {
        font-size: 2rem;
    }

    .social-proof-subtitle {
        font-size: 1rem;
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .stat-description {
        font-size: 0.8125rem;
    }

    .trust-badges {
        flex-direction: column;
        gap: 1rem;
    }

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

/* === Small Mobile (max-width: 480px) === */
@media (max-width: 480px) {
    /* Typography */
    html {
        font-size: 14px;
    }

    /* Container */
    .container {
        padding: 0 0.875rem;
    }

    /* Hero Section */
    .hero-section {
        padding: 48px 20px 32px;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 20px;
        font-size: 0.9375rem;
    }

    .hero-visual {
        min-height: 200px;
    }

    .ai-animation {
        width: 160px;
        height: 160px;
    }

    .data-flow {
        width: 50px;
        height: 50px;
    }

    .visual-cards {
        height: 240px;
    }

    .glass-card {
        padding: 16px;
        border-radius: 12px;
    }

    .spark {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    /* Platform Section */
    .platform-section {
        padding: 48px 30px;
    }

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

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .platform-grid {
        gap: 1.25rem;
    }

    .platform-card {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .platform-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
        margin-bottom: 1rem;
        border-radius: 16px;
    }

    .platform-title {
        font-size: 1.25rem;
    }

    .platform-description {
        font-size: 0.9375rem;
    }

    /* AI Feature Section */
    .ai-feature-section {
        padding: 40px 0;
    }

    .ai-feature-icon {
        font-size: 3rem;
    }

    .ai-feature-title {
        font-size: 1.75rem;
    }

    .ai-feature-text {
        font-size: 1rem;
    }

    /* Social Proof */
    .social-proof {
        padding: 48px 0;
    }

    .social-proof-badge {
        font-size: 0.8125rem;
        padding: 0.375rem 1rem;
    }

    .social-proof-header {
        margin-bottom: 2.5rem;
    }

    .social-proof-title {
        font-size: 1.75rem;
    }

    .social-proof-subtitle {
        font-size: 0.9375rem;
    }

    .stats-row {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }

    .stat-item {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
        border-radius: 12px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.9375rem;
    }

    .trust-text {
        font-size: 0.8125rem;
    }

    .trust-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }
}

/* === Extra Small Devices (max-width: 375px) === */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.625rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .platform-icon {
        width: 56px;
        height: 56px;
        font-size: 1.75rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-plus,
    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* === Landscape Mode Optimization === */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        padding: 40px 0 30px;
    }

    .platform-section {
        padding: 40px 30px;
    }

    .ai-feature-section {
        padding: 30px 0;
    }

    .social-proof {
        padding: 40px 30px;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

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

/* === Print Styles === */
@media print {
    .orca-header,
    .orca-mobile-nav,
    .orca-nav-actions,
    .orca-mobile-toggle,
    .hero-cta {
        display: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
        background: #fff;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    .platform-card,
    .ai-feature-card,
    .pricing-card {
        page-break-inside: avoid;
        break-inside: avoid;
    }

    img {
        max-width: 100%;
    }
}

/* ============================================
   COMPREHENSIVE RESPONSIVE STYLES
   ============================================ */

/* === Tablet Landscape (992px - 1199px) === */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
        padding: 0 24px;
    }
    
    .hero-section .container {
        gap: 40px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .visual-cards {
        height: 380px;
    }
    
    .glass-card {
        width: 240px;
    }
}

/* === Tablet Portrait (768px - 991px) === */
@media (max-width: 991px) {
    .container {
        max-width: 720px;
        padding: 0 20px;
    }
    
    /* Hero Section Responsive */
    .hero-section {
        padding: 80px 0 60px;
    }
    
    .hero-section .container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual,
    .visual-cards {
        order: 2;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        margin: 0 auto 2rem;
        max-width: 100%;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }
    
    .trust-stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .trust-stat-divider {
        width: 100%;
        height: 1px;
    }
    
    /* Section Spacing */
    .platform-section,
    .ai-feature-section,
    .faq-section {
        padding: 60px 30px;
    }
    
    /* Grid Adjustments */
    .platform-grid,
    .ai-feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 480px;
        margin: 0 auto;
    }
    
    .comparison-table {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
}

/* === Mobile Landscape (576px - 767px) === */
@media (max-width: 767px) {
    .container {
        max-width: 540px;
        padding: 0 16px;
    }
    
    /* Typography Scaling */
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    /* Hero Section */
    .hero-section {
        padding: 60px 0 40px;
    }
    
    .eyebrow {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .hero-visual {
        min-height: 300px;
    }
    
    .ai-animation {
        width: 220px;
        height: 220px;
    }
    
    .visual-cards {
        height: 320px;
        transform: scale(0.9);
    }
    
    .glass-card {
        width: 200px;
        padding: 14px;
    }
    
    /* Platform Grid */
    .platform-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .platform-card {
        padding: 24px;
    }
    
    /* AI Features */
    .ai-feature-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ai-feature-card {
        padding: 24px;
    }
    
    /* Stats */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    /* Social Proof */
    .social-proof {
        padding: 40px 30px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 48px 0;
    }
    
    .cta-container {
        padding: 32px 24px;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .cta-description {
        font-size: 1rem;
    }
    
    /* FAQ */
    .faq-section {
        padding: 48px 0;
    }
    
    .faq-item {
        padding: 20px;
    }
}

/* === Mobile Portrait (481px - 575px) === */
@media (max-width: 575px) {
    .container {
        padding: 0 16px;
    }
    
    /* Hero Adjustments */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 12px 24px;
        font-size: 0.9375rem;
        width: 100%;
    }
    
    .hero-cta {
        width: 100%;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-badges .badge {
        width: 100%;
        text-align: center;
    }
    
    /* Visual Elements */
    .ai-animation {
        width: 180px;
        height: 180px;
    }
    
    .data-flow {
        width: 60px;
        height: 60px;
    }
    
    .visual-cards {
        transform: scale(0.75);
        height: 280px;
    }
    
    /* Cards */
    .platform-card,
    .ai-feature-card,
    .pricing-card {
        padding: 20px;
    }
    
    .platform-card-icon,
    .ai-feature-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
    
    /* Pricing */
    .pricing-price {
        font-size: 2.5rem;
    }
    
    .pricing-features {
        font-size: 0.875rem;
    }
    
    /* Stats */
    .stat-number,
    .stat-number-modern {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.875rem;
    }
}

/* === Small Mobile (320px - 480px) === */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .container {
        padding: 0 12px;
    }
    
    /* Hero */
    .hero-section {
        padding: 48px 20px 32px;
    }
    
    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 1.25rem;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        padding: 10px 20px;
        font-size: 0.875rem;
    }
    
    /* Sections */
    .platform-section,
    .ai-feature-section,
    .faq-section {
        padding: 40px 30px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
    }
    
    /* Cards */
    .platform-card,
    .ai-feature-card {
        padding: 16px;
    }
    
    .platform-card-title,
    .ai-feature-title {
        font-size: 1.125rem;
    }
    
    .platform-card-description,
    .ai-feature-description {
        font-size: 0.875rem;
    }
    
    /* Pricing Cards */
    .pricing-card {
        padding: 20px 16px;
    }
    
    .pricing-price {
        font-size: 2rem;
    }
    
    .pricing-period {
        font-size: 0.875rem;
    }
}

/* === Extra Small Mobile (< 320px) === */
@media (max-width: 319px) {
    .hero-title {
        font-size: 1.25rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .visual-cards {
        transform: scale(0.6);
    }
}

/* === Prevent Horizontal Overflow on All Elements === */
@media (max-width: 991px) {
    * {
        max-width: 100%;
    }
    
    img,
    video,
    iframe {
        max-width: 100%;
        height: auto;
    }
    
    .hero-section::before {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 575px) {
    .hero-section::before {
        width: 300px;
        height: 300px;
        top: -30%;
        right: -20%;
    }
    
    .stat-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

