/* ==========================================================================
   1. VARIABLES & BASE (Consolidated)
   ========================================================================== */
:root {
    /* Backgrounds */
    --bg-primary: #2b2d43;
    --bg-secondary: #393B51;
    --bg-card: rgba(62, 65, 87, 0.95);
    --bg-darker: #2a2c3d;

    /* Borders */
    --border-glass: rgba(255, 255, 255, 0.08);
    --border-subtle: rgba(255, 255, 255, 0.05);

    /* Text */
    --text-primary: #FFFFFF;
    --text-secondary: #94A3B8;
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Accents */
    --accent-orange: #F6836D;
    --accent-orange-light: #f89b89;
    --accent-mint: #9EDDC6;
    --accent-green: #92D050;
    /* Lime Green */
    --accent-teal: #5bc0be;
    --accent-purple: #9d8cff;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #F6836D 0%, #f89b89 100%);
    --gradient-mint: linear-gradient(135deg, #9EDDC6 0%, #7fcfae 100%);

    /* UI States */
    --glass-blur: blur(12px);
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ambient Background */
.background-ambient {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 15% 50%, rgba(157, 140, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(246, 131, 109, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 90%, rgba(91, 192, 190, 0.05) 0%, transparent 50%);
    pointer-events: none;
    filter: blur(60px);
    animation: bg-pulse 15s ease-in-out infinite alternate;
}

@keyframes bg-pulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(1.1);
        opacity: 1;
    }
}

/* ==========================================================================
   2. UTILITIES & COMPONENTS
   ========================================================================== */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* Badges & Buttons */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 500;
}

.badge-success {
    background: rgba(158, 221, 198, 0.15);
    color: #9EDDC6;
}

.badge-error {
    background: rgba(239, 68, 68, 0.15);
    color: #f87171;
}

.badge-warning {
    background: rgba(246, 131, 109, 0.15);
    color: #F6836D;
}

.badge-info {
    background: rgba(91, 192, 190, 0.15);
    color: #5bc0be;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 20px rgba(246, 131, 109, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(246, 131, 109, 0.4);
}

.btn-secondary {
    background: var(--accent-mint);
    color: #2a2c3d;
    border: none;
}

.btn-secondary:hover {
    background: var(--accent-mint-light);
    transform: translateY(-2px);
}

.floating-home-btn {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F6836D 0%, #f89b89 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.4rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(246, 131, 109, 0.4);
    transition: all 0.3s ease;
    z-index: 999;
}

.floating-home-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 10px 30px rgba(246, 131, 109, 0.5);
}

/* ==========================================================================
   3. NAVIGATION
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(43, 45, 67, 0.95);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.navbar.scrolled {
    padding: 16px 0;
    /* Keep original padding */
    background: rgba(43, 45, 67, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .nav-logo img {
    height: 40px;
    /* Keep original height */
}

.navbar.scrolled .nav-links a {
    font-size: 0.95rem;
    /* Keep original font size (default is usually ~1rem/0.95rem) */
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo img {
    height: 40px;
    width: auto;
    transition: all 0.4s ease;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-primary);
}

.nav-links a.active {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-ctas {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: 0.3s;
}

/* FIX: Waving Lines Colors */
.nav-divider {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 15px;
    pointer-events: none;
    overflow: hidden;
}

.section-divider-flow {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
    margin-top: -30px;
    margin-bottom: -30px;
    z-index: 5;
    pointer-events: none;
    opacity: 0.8;
    mix-blend-mode: screen;
}

.wave-svg {
    position: absolute;
    width: 200%;
    height: 100%;
    fill: none;
    stroke: var(--accent-orange);
    stroke-width: 2;
    stroke-linecap: round;
    filter: drop-shadow(0 0 10px var(--accent-orange)) drop-shadow(0 0 20px rgba(246, 131, 109, 0.5));
    will-change: transform;
}

.wave-svg.secondary {
    stroke: var(--accent-purple);
    opacity: 0.5;
    filter: drop-shadow(0 0 10px var(--accent-purple));
    margin-top: 10px;
}

.wave-svg.flat {
    width: 100%;
    animation: none !important;
    transform: none !important;
}

/* ==========================================================================
   4. HERO SECTION
   ========================================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.hero-buttons .btn {
    flex: 1;
    justify-content: center;
    min-width: 180px;
    max-width: 260px;
}

/* FIX: Badge Layering */
.hero-badge-container {
    position: relative;
    display: inline-block;
    margin-bottom: 24px;
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--accent-purple);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 20;
}

/* Ensure the first badge (AWS) is strictly above the second one when expanded */
.hero-badge.expandable:first-child {
    z-index: 2000;
}

.hero-badge:hover {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
    background: rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
}

.hero-badge .badge-description {
    position: absolute !important;
    top: calc(100% + 12px) !important;
    left: 0 !important;
    width: 350px;
    background: rgba(18, 18, 28, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    pointer-events: none;
    color: var(--text-secondary);
    font-size: 0.9rem;
    white-space: normal !important;
}

.hero-badge:hover .badge-description {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* FIX: Title Text Glow Animation */
.hero-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 24px;
}

.title-word {
    transition: all 0.3s ease;
}

.title-word.glow {
    text-shadow: 0 0 20px var(--accent-orange), 0 0 40px var(--accent-orange), 0 0 60px rgba(246, 131, 109, 0.5);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.title-word.glow-green {
    text-shadow: 0 0 20px var(--accent-green), 0 0 40px var(--accent-green), 0 0 60px rgba(146, 208, 80, 0.5);
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-visual {
    position: relative;
    z-index: 10;
}

/* Hero Steps */
.hero-steps-grid-4 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 8px;
}

.hero-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    position: relative;
}

.step-number {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 28px;
    height: 28px;
    background: var(--accent-orange);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(246, 131, 109, 0.4);
}

.hero-step-img {
    width: 180px;
    height: 280px;
    object-fit: contain;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: block;
}

.hero-step:hover .hero-step-img {
    transform: translateY(-4px) scale(1.02);
    filter: drop-shadow(0 8px 24px rgba(246, 131, 109, 0.3));
}

/* ==========================================================================
   5. VISION & MISSION SECTION (Desktop)
   ========================================================================== */
.vision-stats-wrapper {
    padding: 30px 40px;
    border: 1px solid var(--border-glass);
    background: rgba(157, 140, 255, 0.03);
    border-radius: 16px;
    margin-top: 20px;
}

.vision-stats-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    align-items: center;
}

.vision-item {
    margin-bottom: 24px;
}

.vision-item h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-purple);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.vision-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.stats-vertical {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.stat-box {
    text-align: center;
    padding: 10px;
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
    border-radius: 0 8px 8px 0;
}

.stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-top: 4px;
}

/* ==========================================================================
   6. CONTACT FORM
   ========================================================================== */
.form-input,
.form-textarea,
input[type="text"],
input[type="email"],
textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid var(--border-glass) !important;
    border-radius: var(--radius-md);
    color: var(--text-primary) !important;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus,
input:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent-orange) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 0 0 4px rgba(246, 131, 109, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

/* ==========================================================================
   7. SLIDES & CARDS
   ========================================================================== */
.pptx-slide {
    min-height: 100vh;
    background: #2B2D43;
    padding: 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.slide-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.slide-grid-visual-heavy {
    display: grid;
    grid-template-columns: 0.8fr 2.2fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Step Cards */
.step-card {
    background: var(--bg-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 20px 20px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 180px;
}

.step-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    border-radius: 4px 0 0 4px;
}

.step-card.orchestrate::before {
    background: linear-gradient(180deg, #F6836D, #e06a54);
}

.step-card.simulate::before {
    background: linear-gradient(180deg, #f89b89, #e88878);
}

.step-card.measure::before {
    background: linear-gradient(180deg, #5bc0be, #4aa8a6);
}

.step-card.automate::before {
    background: linear-gradient(180deg, #9EDDC6, #7fcfae);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.step-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.step-card.orchestrate .step-icon {
    background: linear-gradient(135deg, rgba(246, 131, 109, 0.3), rgba(246, 131, 109, 0.1));
}

/* Flow Diagram */
.flow-diagram {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
}

.flow-node {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 600;
    color: white;
}

.flow-node.llm {
    background: linear-gradient(135deg, #F6836D, #e06a54);
}

.flow-node.stt {
    background: linear-gradient(135deg, #5bc0be, #4aa8a6);
}

.flow-node.tts {
    background: linear-gradient(135deg, #9EDDC6, #7fcfae);
    color: #2a2c3d;
}

.flow-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), var(--accent-teal));
    margin: 0 4px;
    position: relative;
}

/* Backgrounds */
.section-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-fade-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.15;
    -webkit-mask-image: linear-gradient(to right, black 0%, transparent 100%);
    mask-image: linear-gradient(to right, black 0%, transparent 100%);
}

.bg-voice {
    background-image: url('images/happy_customer_talking_to_ai_voice_agent.png');
    width: 60%;
    opacity: 0.2;
    transform: scaleX(-1);
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.bg-support {
    background-image: url('images/call_center_agent.png');
    width: 60%;
    opacity: 0.2;
    left: auto;
    right: 0;
    -webkit-mask-image: linear-gradient(to left, black 0%, transparent 100%);
    mask-image: linear-gradient(to left, black 0%, transparent 100%);
}

.bg-hero {
    background-image: url('images/customer_agent_talking.png');
    width: 100% !important;
    background-size: auto 101%;
    background-position: center bottom;
    opacity: 0.15;
    -webkit-mask-image: linear-gradient(to right, black 50%, transparent 100%);
    mask-image: linear-gradient(to right, black 50%, transparent 100%);
}

/* Use Section - Deployment Grid (Desktop) */
.use-deployment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Hide carousel dots on desktop (only visible on mobile via media query) */
.carousel-dots {
    display: none;
}

/* ==========================================================================
   VOICE AGENTS - ARCHITECTURE GALLERY (DESKTOP)
   ========================================================================== */
.architecture-gallery.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.arch-card {
    background: rgba(30, 30, 50, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.arch-card:hover {
    border-color: rgba(246, 131, 109, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.arch-card .card-header h4 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 10px;
}

.arch-card .card-body p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 15px;
}

.arch-card .card-body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Feature Aspect Glow Effects (when hovering over architecture cards) */
.feature-item {
    transition: all 0.3s ease;
}

.feature-item.glow-1 {
    color: #f89b89;
    text-shadow: 0 0 10px rgba(246, 131, 109, 0.5);
}

.feature-item.glow-2 {
    color: #F6836D;
    text-shadow: 0 0 15px rgba(246, 131, 109, 0.8), 0 0 25px rgba(246, 131, 109, 0.5);
    transform: scale(1.05);
}

/* ==========================================================================
   8. PARTNERS SLIDER (REVERTED TO ORIGINAL)
   ========================================================================== */
.partners-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-track {
    display: flex;
    gap: 60px;
    width: fit-content;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    --logo-width: 180px;
    --logo-gap: 60px;
}

.partners-track-1 {
    animation: slide 30s linear infinite;
}

.partners-track-2 {
    animation: slide 30s linear infinite;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 180px;
    height: 80px;
    padding: 20px;
    background: var(--border-subtle);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid var(--border-glass);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.partner-logo:hover {
    background: rgba(246, 131, 109, 0.1);
    border-color: var(--accent-orange);
    transform: translateY(-5px);
    box-shadow: 0 25px 50px rgba(246, 131, 109, 0.2);
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: brightness(0) invert(1);
}

.partner-logo:hover img {
    opacity: 1;
    transform: scale(1.05);
    filter: none;
}

@keyframes slide {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(var(--slide-distance, -50%), 0, 0);
    }
}

.partners-slider:hover .partners-track {
    animation-play-state: paused;
}

/* Footer & GDPR */
.footer {
    background: var(--bg-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.gdpr-overlay-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647;
    display: flex;
    justify-content: center;
    background: transparent;
    pointer-events: none;
}

.gdpr-banner-v2 {
    background: rgba(43, 45, 67, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    padding: 20px 40px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    pointer-events: auto;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

html.gdpr-active,
body.gdpr-active {
    overflow: auto !important;
    height: auto !important;
}

/* ==========================================================================
   9. RESPONSIVE
   ========================================================================== */

/* Tablet (max 1024px) */
@media (max-width: 1024px) {

    .hero-grid,
    .feature-block {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Tablet Small (max 900px) */
@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .hero-steps-grid-4 {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero-step {
        flex: 0 0 calc(50% - 8px);
    }

    .hero-step-img {
        width: 100%;
        height: auto;
        max-height: 220px;
    }
}

/* Mobile (max 768px) */
@media (max-width: 768px) {

    /* Layout */
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
    }

    /* ... inside @media (max-width: 768px) { ... */

    /* ========== MOBILE NAVIGATION: SIDEBAR LIST STYLE ========== */

    /* 1. Toggle Button */
    .mobile-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        z-index: 10005 !important;
        position: relative;
        pointer-events: auto;
        width: 30px;
        height: 30px;
    }

    /* 2. Navbar Background - Compact for mobile (2/3 of desktop height) */
    .navbar {
        z-index: 10000 !important;
        background: #2b2d43 !important;
        backdrop-filter: none !important;
        padding: 8px 0 !important;
    }

    .navbar .nav-logo img {
        height: 28px !important;
    }

    /* 3. Sidebar Container */
    .nav-links {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        bottom: 0 !important;
        width: 280px !important;

        background: #2b2d43 !important;
        /* Solid Dark Background */
        border-right: 1px solid rgba(255, 255, 255, 0.1);

        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;

        /* Padding: Top is reduced because we inject the logo inside */
        padding: 40px 24px 100px !important;
        gap: 0 !important;
        /* No gap, we use borders now */

        z-index: 10002 !important;

        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        opacity: 1 !important;
        visibility: visible !important;
        height: 100vh !important;
        max-height: 100vh !important;
        overflow: hidden !important;
        overscroll-behavior: contain !important;
    }

    /* 4. LOGO INJECTION (New Feature) */
    .nav-links::before {
        content: "";
        /* Leave empty, we use background instead */
        display: block;

        /* 1. CONTROL SIZE HERE */
        width: 100px;
        /* Adjust width */
        height: 75px;
        /* Adjust height */

        /* 2. INSERT YOUR LOGO URL HERE */
        background-image: url('photos/logo_white_transparent.png');
        /* <--- Put your path here */

        /* 3. SCALING MAGIC */
        background-size: contain;
        /* Ensures logo fits inside the width/height above */
        background-repeat: no-repeat;
        background-position: left center;

        margin-bottom: 40px;
        margin-top: 10px;
        margin-left: 0;
    }

    /* Active State */
    .nav-links.active {
        transform: translateX(0);
        box-shadow: 0 0 0 100vmax rgba(0, 0, 0, 0.7);
    }

    /* 5. Menu Items - List Style with Separators */
    .nav-links a {
        display: block !important;
        width: 100%;
        padding: 20px 0;
        /* Vertical spacing */

        /* The Separator Line */
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        background: transparent !important;
        border-radius: 0;
        border-top: none;
        border-left: none;
        border-right: none;

        font-size: 1.1rem;
        /* Slightly larger text */
        font-weight: 600;
        color: #fff !important;
        text-align: left;
        /* Aligned left like the screenshot */
        text-decoration: none;
    }

    /* Remove border from last item to look cleaner */
    .nav-links a:last-of-type {
        border-bottom: none;
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--accent-orange) !important;
        padding-left: 10px;
        /* Subtle slide effect */
        background: transparent !important;
        box-shadow: none !important;
        border-color: rgba(255, 255, 255, 0.2);
    }

    /* 6. CTA Area - Pinned to Bottom */
    .nav-ctas {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        width: 280px !important;
        height: 90px !important;

        background: #2b2d43 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-right: 1px solid rgba(255, 255, 255, 0.1);

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 24px !important;
        z-index: 10003 !important;

        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);

        opacity: 1 !important;
        visibility: visible !important;
    }

    .nav-ctas.active {
        transform: translateX(0);
    }

    .nav-ctas .btn {
        width: 100%;
        justify-content: center;
        padding: 14px;
        font-size: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    }

    /* ========== WAVE DIVIDERS - MINIMIZE ON MOBILE ========== */
    .nav-divider {
        display: none !important;
    }

    .section-divider-flow {
        height: 30px !important;
        margin-top: -15px !important;
        margin-bottom: -15px !important;
        opacity: 0.5 !important;
    }

    /* Hero */
    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    /* Reduce spacing between video and title (1/3 of original) */
    .hero-visual {
        margin-bottom: 5px !important;
    }

    .hero-visual>div {
        margin-bottom: 0 !important;
    }

    .hero-grid {
        gap: 16px !important;
    }

    .hero-title {
        font-size: 1.75rem !important;
        white-space: normal !important;
        line-height: 1.2;
        margin-bottom: 16px !important;
    }

    /* Smaller subtitle for mobile */
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        margin-bottom: 24px !important;
    }

    /* Trust section - reduce margin */
    .trust-section {
        margin-top: 32px !important;
    }

    .hero-buttons {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        gap: 8px !important;
        margin-top: 16px !important;
    }

    .hero-buttons .btn {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: 50% !important;
        padding: 10px 8px !important;
        font-size: 0.8rem !important;
        text-align: center !important;
        justify-content: center !important;
        align-items: center !important;
        white-space: normal !important;
        line-height: 1.3 !important;
    }

    .hero-steps-grid-4 {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 12px;
    }

    .hero-step {
        width: 100%;
    }

    /* ========== WHY NEURX SPECIFIC MOBILE LAYOUT ========== */
    #why-neurx div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column;
        gap: 24px !important;
    }

    /* 2. Reorder: Cards go to the TOP */
    .why-neurx-cards {
        order: 1;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        width: 100%;
    }

    /* 3. Reorder: Description box goes to the BOTTOM */
    .feature-description-box {
        order: 2;
        margin-bottom: 20px !important;
    }

    /* 4. Make Cards Compact (Button-style) */
    .why-card {
        padding: 12px 8px !important;
        min-height: auto !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
    }

    .why-card h3 {
        font-size: 0.85rem !important;
        line-height: 1.2 !important;
        margin: 0 !important;
        font-weight: 600 !important;
        width: 100%;
    }

    /* 5. Hide Icons/Text for dense grid */
    .why-card i,
    .why-card p {
        display: none !important;
    }

    /* ========== SLIDES & GRIDS (Keep this after) ========== */
    .slide-grid,
    .slide-grid-visual-heavy {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Build section - stack text and visuals */
    .slide-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 30px !important;
    }

    .slide-grid .slide-text {
        order: 1 !important;
        text-align: center !important;
    }

    .slide-grid .slide-visuals {
        order: 2 !important;
    }

    /* Slide visuals - make images fit mobile */
    .slide-visuals img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .interactive-diagram {
        max-width: 100% !important;
    }

    .architecture-gallery {
        grid-template-columns: 1fr !important;
    }

    .arch-diagram {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    /* ========== VISION SECTION MOBILE FIX ========== */

    /* 1. Image on TOP, Text on BOTTOM */
    /* This targets the specific grid ratio used in your Vision section */
    #vision div[style*="grid-template-columns: 1.6fr 1fr"] {
        display: flex !important;
        flex-direction: column-reverse !important;
        /* Swaps order: Image goes up, Text goes down */
        gap: 32px !important;
    }

    /* 2. Milestones Boxes: Stack vertically */
    /* This targets the 2-column grid holding "Milestones Achieved" and "Next Horizon" */
    #vision div[style*="grid-template-columns: repeat(2, 1fr)"] {
        display: grid !important;
        grid-template-columns: 1fr !important;
        /* Force 1 column */
        gap: 24px !important;
        width: 100% !important;
    }

    /* ========== COMPARISON TABLE: COMPACT & DRAGGABLE (FIXED) ========== */

    /* 1. Scroll Container */
    .glass-card>div[style*="overflow-x"],
    .table-scroll-wrapper {
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        width: 100% !important;
        display: block !important;
        padding-bottom: 12px !important;
    }

    /* 2. Table: Width > Screen Width to trigger scroll, but not huge */
    .comparison-table {
        min-width: 600px !important;
        /* Wide enough to scroll, compact enough to look good */
        width: 600px !important;
        display: table !important;
        table-layout: fixed !important;
        border-collapse: separate !important;
        border-spacing: 0 !important;
    }

    /* 3. Sticky First Column (Features) - Very Compact */
    .comparison-table td:first-child,
    .comparison-table th:first-child {
        position: sticky !important;
        left: 0 !important;
        z-index: 20 !important;
        background: #2b2d43 !important;
        border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
        box-shadow: 4px 0 12px rgba(0, 0, 0, 0.4) !important;

        /* Compact dimensions */
        width: 70px !important;
        min-width: 70px !important;
        max-width: 70px !important;
        padding: 4px 2px !important;
    }

    /* 4. NeurX Column - Highlighted but smaller */
    .comparison-table td:nth-child(2) {
        background: rgba(246, 131, 109, 0.15) !important;
        width: 120px !important;
        /* Reduced from 180px */
        min-width: 120px !important;
    }

    /* 5. Competitor Columns - Small */
    .comparison-table td:nth-child(n+3) {
        width: 90px !important;
        /* Reduced from 140px */
        min-width: 90px !important;
    }

    /* 6. Text & Icon Sizing - Compact */
    .comparison-table td,
    .comparison-table th {
        padding: 6px 2px !important;
        /* Tighter padding */
        font-size: 0.65rem !important;
        /* Smaller text */
        vertical-align: middle !important;
        text-align: center !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        white-space: normal !important;
        line-height: 1.2 !important;
    }

    /* Icons inside cells */
    .comparison-table i {
        font-size: 0.85rem !important;
        /* Smaller icons */
        display: block;
        margin-bottom: 3px;
    }

    /* Feature column specific layout */
    .comparison-table td:first-child>div {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 2px !important;
    }

    /* Vision Stats Mobile - Layout Fix */
    .vision-stats-wrapper {
        padding: 20px !important;
    }

    .vision-stats-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-vertical {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        margin-top: 10px;
    }

    .stat-box {
        padding: 8px 4px;
        border-left: none !important;
        border-top: 3px solid;
        border-radius: 0 0 8px 8px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .stat-value {
        font-size: 1.4rem !important;
    }

    /* ========== TEAM SECTION MOBILE FIX ========== */
    .team-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .team-member {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 30px 20px !important;
    }

    .member-photo {
        flex: 0 0 auto !important;
        margin-right: 0 !important;
        margin-bottom: 20px !important;
    }

    .member-photo img {
        width: 140px !important;
        height: 140px !important;
    }

    /* ========== VISION & MISSION BOXES FIX ========== */
    /* Forces the side-by-side Vision/Mission text to stack vertically */
    #about div[style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 40px !important;
    }

    /* Ensures the container width is correct */
    #about .glass-card {
        padding: 24px 20px !important;
    }

    /* GDPR */
    .gdpr-banner-v2 {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        gap: 20px;
    }

    .gdpr-actions {
        width: 100%;
        gap: 12px;
    }

    .gdpr-btn {
        min-width: 140px;
        width: auto;
        text-align: center;
        padding: 12px;
    }

    /* ========== PRODUCT FEATURES PAGE - MOBILE FIXES ========== */

    /* Slide Grid Visual Heavy - Stack vertically on mobile */
    .slide-grid-visual-heavy {
        display: flex !important;
        flex-direction: column !important;
        gap: 24px !important;
    }

    .slide-grid-visual-heavy .slide-text {
        order: 1 !important;
        text-align: center !important;
    }

    .slide-grid-visual-heavy .slide-visual,
    .slide-grid-visual-heavy .architecture-gallery {
        order: 2 !important;
        width: 100% !important;
    }

    /* Voice Agents - Priority Aspects as 3+2 rows */
    #voice-agents .slide-list {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 8px 16px !important;
        padding: 0 !important;
        margin-top: 16px !important;
    }

    #voice-agents .slide-list .feature-item {
        flex: 0 0 auto !important;
        margin: 0 !important;
        font-size: 0.9rem !important;
        padding: 6px 10px !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 20px !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    /* First 3 items take less space to fit on first row */
    #voice-agents .slide-list .feature-item:nth-child(-n+3) {
        flex: 0 0 28% !important;
        justify-content: center !important;
    }

    /* Last 2 items centered on second row */
    #voice-agents .slide-list .feature-item:nth-child(n+4) {
        flex: 0 0 35% !important;
        justify-content: center !important;
    }

    /* Voice Agents - Architecture Gallery as 2x2 Grid */
    .architecture-gallery.gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }

    .arch-card {
        padding: 10px !important;
    }

    .arch-card .card-header h4 {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    .arch-card .card-body p {
        font-size: 0.65rem !important;
        line-height: 1.3 !important;
        display: none !important;
        /* Hide description on mobile to save space */
    }

    .arch-card .card-body img {
        max-width: 100% !important;
        height: auto !important;
        max-height: 100px !important;
    }

    /* Slide Title - Smaller on mobile */
    .slide-title {
        font-size: 1.6rem !important;
        text-align: center !important;
    }

    .slide-description {
        font-size: 1rem !important;
        text-align: center !important;
    }

    .slide-list {
        text-align: left !important;
        padding-left: 20px !important;
    }

    /* Feature items in Voice Agents */
    .feature-item {
        font-size: 0.95rem !important;
    }

    /* ========== USE SECTION - CAROUSEL MOBILE ========== */

    /* Parent containers must not overflow */
    #use {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }

    #use>.container {
        max-width: 100% !important;
        padding: 0 !important;
        overflow: visible !important;
    }

    /* Container for carousel - MUST constrain to viewport */
    .use-deployment-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        grid-template-columns: none !important;
        width: 100% !important;
        max-width: 100vw !important;
        overflow-x: scroll !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 10px 16px 20px 16px !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        box-sizing: border-box !important;
    }

    .use-deployment-grid::-webkit-scrollbar {
        display: none !important;
    }

    /* Cards in carousel - fixed viewport width, allow content to wrap */
    .use-deployment-grid .deployment-card {
        flex: 0 0 80vw !important;
        flex-shrink: 0 !important;
        min-width: 80vw !important;
        max-width: 80vw !important;
        width: 80vw !important;
        box-sizing: border-box !important;
        scroll-snap-align: center !important;
        padding: 20px 16px !important;
        overflow: hidden !important;
    }

    /* Force text to wrap inside cards */
    .deployment-card h3,
    .deployment-card h4,
    .deployment-card p {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
    }

    .deployment-card h3 {
        font-size: 1.2rem !important;
    }

    .deployment-card p {
        font-size: 0.8rem !important;
    }

    .deployment-card .feature-row h4 {
        font-size: 0.9rem !important;
    }

    .deployment-card .feature-row p {
        font-size: 0.7rem !important;
    }

    .deployment-card img {
        width: 80px !important;
        height: 80px !important;
    }

    /* Shared Features Banner - Stack vertically */
    .shared-features {
        flex-direction: column !important;
        gap: 20px !important;
        padding: 20px !important;
    }

    .shared-item {
        width: 100% !important;
        justify-content: flex-start !important;
    }

    /* Carousel Dots Container */
    .carousel-dots {
        display: flex !important;
        justify-content: center;
        gap: 10px;
        margin-top: 16px;
    }

    .carousel-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .carousel-dot.active {
        background: var(--accent-orange);
        transform: scale(1.2);
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 12px;
    }

    .hero-title {
        font-size: 1.75rem !important;
    }

    .btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    .glass-card {
        padding: 24px 16px;
    }
}

/* Mobile Overflow Fixes */
@media (max-width: 768px) {

    .deployment-card,
    .use-card,
    [class*='card'] {
        min-width: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 1 auto !important;
    }

    .partners-slider {
        width: 100% !important;
        max-width: 100vw !important;
        overflow: hidden !important;
    }

    /* Ensure containers don't overflow */
    .container,
    section {
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
}

/* ==========================================================================
   PRIVACY POLICY STYLES
   ========================================================================== */
.policy-container {
    max-width: 900px;
    margin: 120px auto 60px;
    padding: 0 24px;
}

.policy-header {
    text-align: center;
    margin-bottom: 60px;
}

.policy-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F6836D 0%, #f89b89 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.policy-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Glass Card Container */
.policy-section {
    background: rgba(43, 45, 67, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 50px;
    margin-bottom: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* H2 - Main Topics (Teal Accent) */
.policy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #5BC0BE;
    /* Accent Teal */
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(91, 192, 190, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
}

/* H3 - Sub Topics (White) */
.policy-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin: 40px 0 20px 0;
}

/* H4 - Specific Detail Headers (Purple Accent) */
.policy-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #9D8CFF;
    /* Accent Purple */
    margin: 24px 0 12px 0;
}

/* Text Content */
.policy-section p,
.policy-section li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #94a3b8;
    /* Text Secondary */
    margin-bottom: 16px;
}

.policy-section ul {
    padding-left: 24px;
    margin-bottom: 24px;
}

.policy-section li {
    margin-bottom: 8px;
}

.policy-section strong {
    color: #fff;
    font-weight: 600;
}

.policy-section a {
    color: #F6836D;
    text-decoration: none;
    transition: color 0.2s;
}

.policy-section a:hover {
    color: #f89b89;
    text-decoration: underline;
}

/* Last Updated Tag */
.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 24px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .policy-title {
        font-size: 2.2rem;
    }

    .policy-section {
        padding: 24px 20px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.3rem;
    }
}

/* Mobile Footer Font Sizing */
@media (max-width: 768px) {

    .footer p,
    .footer a,
    .footer-contact {
        font-size: 0.8rem !important;
    }

    .footer-bottom span,
    .footer-links a {
        font-size: 0.7rem !important;
    }

    .footer-section .social-links a {
        font-size: 1rem !important;
    }

    .footer-logo img {
        height: 30px !important;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* Hero Partner Logos Mobile - Single Row */
/* Hero Partner Logos Mobile - Single Row */
@media (max-width: 768px) {
    .hero-partners-list {
        gap: 12px !important;
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
        overflow-x: auto !important;
        scrollbar-width: none;
        /* Hide scrollbar */
        -ms-overflow-style: none;
    }

    .hero-partners-list::-webkit-scrollbar {
        display: none;
    }

    /* Scoped ONLY to hero to avoid affecting slider */
    .hero-partners-list .partner-logo {
        height: 16px !important;
        width: auto !important;
        flex-shrink: 0;
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
    }
}

/* Badge Header Alignment */
.badge-header {
    display: flex;
    align-items: center;
    gap: 8px;
}
/* Mobile Hero Spacing Fix */
@media (max-width: 768px) {
    .trust-section {
        margin-top: 20px !important;
    }
}

/* GDPR Overlay Styles */
.gdpr-overlay-v2 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(43, 45, 67, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.gdpr-overlay-v2.hidden {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
}

.gdpr-banner-v2 {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.gdpr-text p {
    margin: 0;
    color: #fff;
    font-size: 0.95rem;
}

.gdpr-text a {
    color: #F6836D;
    text-decoration: none;
}

.gdpr-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.gdpr-btn {
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.2s;
}

.gdpr-accept {
    background: linear-gradient(135deg, #F6836D, #f89b89);
    color: white;
}

.gdpr-decline {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gdpr-btn:hover {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .gdpr-banner-v2 {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    .gdpr-actions {
        width: 100%;
        justify-content: center;
    }
}

/* Mobile Hero Partners Fix (Renamed Class) */
@media (max-width: 768px) {
    .hero-partners-list .hero-partner-logo {
        height: 16px !important;
        width: auto !important;
        flex-shrink: 0;
        padding: 0 !important;
        margin: 0 !important;
        max-width: none !important;
    }
}

/* Fix for Secondary Button (Turquoise) Hover Visibility */
.btn-secondary:hover {
    background: #b3ead6 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(158, 221, 198, 0.4) !important;
    color: #2a2c3d !important;
}
