/* ================================
   CSS Variables & Reset
================================ */
:root {
    /* Colors */
    --color-bg: #FFFFFF;
    --color-text: #1D1D35;
    --color-text-light: #6B7280;
    --color-accent: #0029FF;
    --color-gradient-start: #7DD3FC;
    --color-gradient-mid: #F9A8D4;
    --color-gradient-end: #C084FC;

    /* Fonts */
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

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

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul, ol {
    list-style: none;
}

/* ================================
   Layout
================================ */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ================================
   Buttons
================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: white;
}

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

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

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

.btn-outline {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

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

.btn-outline-light {
    background: transparent;
    border-color: white;
    color: white;
}

.btn-outline-light:hover {
    background: white;
    color: var(--color-text);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

/* ================================
   Navigation
================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform var(--transition-normal);
}

.navbar.hidden {
    transform: translateY(-100%);
}

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

.navbar .logo-img {
    height: 96px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-research {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav-links a:not(.btn) {
    font-weight: 500;
    color: var(--color-text-light);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* ================================
   Hero Section
================================ */
.hero {
    padding: calc(110px + var(--spacing-3xl)) 0 var(--spacing-3xl);
    min-height: auto;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.05) 0%, rgba(192, 132, 252, 0.05) 100%);
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-xl);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-illustration {
    position: relative;
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
}

.illustration-eye {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    z-index: 2;
}

.eye-svg {
    width: 100%;
    height: auto;
    animation: eyePulse 3s ease-in-out infinite;
}

@keyframes eyePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.emotion-waves {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid;
    opacity: 0;
    animation: waveExpand 3s ease-out infinite;
}

.wave-1 {
    width: 60%;
    height: 60%;
    border-color: var(--color-gradient-start);
    animation-delay: 0s;
}

.wave-2 {
    width: 80%;
    height: 80%;
    border-color: var(--color-gradient-mid);
    animation-delay: 1s;
}

.wave-3 {
    width: 100%;
    height: 100%;
    border-color: var(--color-gradient-end);
    animation-delay: 2s;
}

@keyframes waveExpand {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0;
    }
}

/* Floating Emojis */
.floating-emojis {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 3;
}

.floating-emoji {
    position: absolute;
    width: 48px;
    height: 48px;
    animation: float 4s ease-in-out infinite;
}

.emoji-happy {
    top: 10%;
    right: 5%;
    animation-delay: 0s;
}

.emoji-surprised {
    bottom: 15%;
    left: 5%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) rotate(5deg);
    }
    75% {
        transform: translateY(10px) rotate(-5deg);
    }
}

/* Brain Waves */
.brain-waves {
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    z-index: 1;
}

.brain-wave-svg {
    width: 100%;
    height: auto;
}

.brain-wave-path {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: brainWave 3s ease-in-out infinite;
}

.wave-path-2 {
    animation-delay: 0.5s;
}

@keyframes brainWave {
    0% {
        stroke-dashoffset: 400;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -400;
    }
}

/* Data Particles */
.data-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    animation: particleFloat 5s ease-in-out infinite;
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation-delay: 1s;
    width: 6px;
    height: 6px;
}

.particle-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 2s;
    width: 10px;
    height: 10px;
}

.particle-4 {
    bottom: 35%;
    right: 25%;
    animation-delay: 3s;
}

.particle-5 {
    top: 45%;
    left: 8%;
    animation-delay: 4s;
    width: 5px;
    height: 5px;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translate(10px, -20px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-5px, -10px) scale(0.8);
        opacity: 0.8;
    }
    75% {
        transform: translate(15px, 5px) scale(1.1);
        opacity: 0.9;
    }
}

/* ================================
   Clients Section - Logo Strips
================================ */
.clients {
    padding: var(--spacing-2xl) 0;
    background: rgb(248, 247, 249);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.clients-strips-container {
    margin-bottom: var(--spacing-xl);
}

.clients-title {
    text-align: center;
    color: var(--color-text-light);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-lg);
}

.logo-strip-wrapper {
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
}

.logo-strip {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
    width: max-content;
}

.logo-strip img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: grayscale(30%);
    opacity: 0.8;
    transition: all var(--transition-normal);
}

.logo-strip img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.logo-strip-1 {
    animation: scrollLeft 30s linear infinite;
}

.logo-strip-2 {
    animation: scrollRight 35s linear infinite;
}

.logo-strip-3 {
    animation: scrollLeft 32s linear infinite;
}

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

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

.clients-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
    flex-wrap: wrap;
}

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

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

/* ================================
   Full Screen Section Base
================================ */
.full-screen-section {
    min-height: auto;
    display: flex;
    align-items: center;
    padding: var(--spacing-3xl) 0;
}

.full-screen-section.alt-bg {
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.03) 0%, rgba(192, 132, 252, 0.03) 100%);
}

/* ================================
   Solution Section - Full Screen Features
================================ */
.solution-fullscreen {
    padding-top: var(--spacing-3xl);
}

.feature-section {
    scroll-snap-align: start;
}

.feature-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.feature-layout.text-right .feature-visual {
    order: 1;
}

.feature-layout.text-right .feature-text {
    order: 2;
}

.feature-text {
    max-width: 500px;
}

.feature-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gradient-start);
    margin-bottom: var(--spacing-sm);
    padding: 0.25rem 0.75rem;
    background: rgba(125, 211, 252, 0.1);
    border-radius: var(--radius-sm);
}

.feature-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

.feature-description {
    font-size: 1.375rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.feature-benefits {
    list-style: none;
}

.feature-benefits li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text);
    font-weight: 500;
}

.feature-benefits li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
}

.feature-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.chart-container {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.chart-container canvas {
    width: 100% !important;
    height: 300px !important;
}

/* ================================
   Testimonials Section
================================ */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.03) 0%, rgba(192, 132, 252, 0.03) 100%);
}

.testimonials-slider {
    padding: var(--spacing-lg) 0 var(--spacing-2xl);
}

.testimonial-image-card {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: transform var(--transition-normal);
}

.testimonial-image-card:hover {
    transform: translateY(-4px);
}

.testimonial-image-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* ================================
   Mid CTA Section
================================ */
.mid-cta {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
}

.cta-content {
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-lg);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* ================================
   Cases Section - Full Screen
================================ */
.cases-fullscreen {
    padding-top: var(--spacing-3xl);
}

.cases-fullscreen > .section-header {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
}

.case-section {
    scroll-snap-align: start;
}

.case-full-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: start;
}

.case-full-layout.reverse .case-visualizations {
    order: 1;
}

.case-full-layout.reverse .case-info {
    order: 2;
}

.case-info {
    position: sticky;
    top: 100px;
}

.case-tag {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    margin-bottom: var(--spacing-sm);
}

.case-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
}

.case-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.case-block h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.case-block p {
    font-size: 1.25rem;
    line-height: 1.6;
}

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

.case-chart {
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.case-chart.full-width {
    grid-column: 1 / -1;
}

.case-chart h5 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.case-chart canvas {
    width: 100% !important;
    height: 200px !important;
}

/* Chart Annotations */
.chart-with-annotations {
    position: relative;
}

.chart-wrapper {
    position: relative;
}

.chart-annotation {
    position: absolute;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.chart-annotation img {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid white;
}

.chart-annotation .annotation-label {
    font-size: 0.625rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 10px;
    white-space: nowrap;
}

.chart-annotation .annotation-label.green {
    background: #10B981;
    color: white;
}

.chart-annotation .annotation-label.red {
    background: #EF4444;
    color: white;
}

.annotation-placeholder {
    width: 50px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    font-size: 0.625rem;
    font-weight: 800;
    color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.annotation-placeholder.red-zone {
    background: linear-gradient(135deg, #EF4444, #DC2626);
}

.annotation-placeholder.green-zone {
    background: linear-gradient(135deg, #10B981, #059669);
}

@media (max-width: 767px) {
    .chart-annotation img {
        width: 50px;
        height: 35px;
    }

    .annotation-placeholder {
        width: 40px;
        height: 28px;
        font-size: 0.5rem;
    }

    .chart-annotation .annotation-label {
        font-size: 0.5rem;
    }
}

/* Case Table */
.comparison-table-wrapper {
    overflow-x: auto;
}

.case-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
}

.case-table th,
.case-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.case-table th {
    font-weight: 600;
    color: var(--color-text-light);
    background: rgba(125, 211, 252, 0.05);
}

.case-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.case-table .highlight {
    color: var(--color-accent);
    font-weight: 700;
    background: rgba(0, 41, 255, 0.05);
}

/* Case Screenshots */
.case-screenshots {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.case-screenshots img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* ================================
   Global Reach Section
================================ */
.global {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.03) 0%, rgba(192, 132, 252, 0.03) 100%);
}

.global-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.global-map {
    position: relative;
    aspect-ratio: 2/1;
}

.world-map {
    width: 100%;
    height: 100%;
}

.map-dots circle {
    animation: dotPulse 2s ease-in-out infinite;
}

.map-dots circle:nth-child(odd) {
    animation-delay: 0.5s;
}

.location-marker {
    animation: locationPulse 2s ease-in-out infinite !important;
}

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

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

.location-labels {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.location-label {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    white-space: nowrap;
}

.label-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
}

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

.global-stats {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.backed-by {
    text-align: center;
    padding: var(--spacing-md);
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.backed-by p {
    font-size: 0.75rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
}

.backed-logo {
    max-width: 150px;
    height: auto;
    margin: 0 auto;
}

.locations-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.locations-image img {
    width: 100%;
    height: auto;
}

/* ================================
   Technology Section - Full Screen
================================ */
.technology-fullscreen {
    padding-top: var(--spacing-3xl);
}

.technology-fullscreen > .section-header {
    padding-top: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
}

.tech-section {
    scroll-snap-align: start;
}

.tech-full-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.tech-full-layout.reverse .tech-visual {
    order: 1;
}

.tech-full-layout.reverse .tech-info {
    order: 2;
}

.tech-info {
    max-width: 500px;
}

.tech-icon {
    width: 80px;
    height: 80px;
    margin-bottom: var(--spacing-md);
}

.tech-icon svg {
    width: 100%;
    height: 100%;
}

.tech-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: var(--spacing-md);
}

.tech-description {
    font-size: 1.375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-visual img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

/* Funnel Diagram */
.funnel-diagram {
    width: 100%;
}

.funnel-visual-large {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    padding: var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.funnel-step-large {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: rgba(125, 211, 252, 0.05);
    border-radius: var(--radius-md);
    transition: all var(--transition-normal);
}

.funnel-step-large:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.funnel-step-large.highlight {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
}

.funnel-step-large.highlight span {
    color: white;
}

.funnel-icon {
    width: 50px;
    height: 50px;
}

.funnel-icon svg {
    width: 100%;
    height: 100%;
}

.funnel-step-large span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
}

.funnel-arrow-large {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
    position: relative;
}

.funnel-arrow-large::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--color-gradient-end);
}

/* ================================
   Final CTA Section
================================ */
.final-cta {
    padding: var(--spacing-3xl) 0;
}

.cta-box {
    text-align: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    border-radius: var(--radius-xl);
    color: white;
}

.cta-box h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
}

.cta-box p {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: var(--spacing-xl);
}

/* ================================
   Modal
================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-md);
}

.modal:target,
.modal.active {
    display: flex;
}

.modal-content {
    background: var(--color-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: var(--spacing-sm);
    right: var(--spacing-sm);
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
}

.modal-close:hover {
    color: var(--color-text);
}

.modal h2 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-lg);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.brief-form .btn {
    width: 100%;
}

/* ================================
   Footer
================================ */
.footer {
    background: var(--color-text);
    color: white;
    padding: var(--spacing-3xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--spacing-sm);
    font-size: 0.875rem;
}

.footer-brand .logo-img {
    filter: brightness(0) invert(1);
}

.footer-logo {
    height: 28px;
}

.footer-brand .logo-research {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a,
.footer-contact a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9375rem;
}

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

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ================================
   Scroll Animations
================================ */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ================================
   Responsive Styles
================================ */
@media (max-width: 1199px) {
    .feature-layout,
    .case-full-layout,
    .tech-full-layout {
        gap: var(--spacing-xl);
    }

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

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

@media (max-width: 991px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

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

    .hero-visual {
        order: -1;
    }

    .hero-illustration {
        max-width: 350px;
    }

    .feature-layout,
    .case-full-layout,
    .tech-full-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-layout.text-right .feature-visual,
    .feature-layout.text-right .feature-text,
    .case-full-layout.reverse .case-visualizations,
    .case-full-layout.reverse .case-info,
    .tech-full-layout.reverse .tech-visual,
    .tech-full-layout.reverse .tech-info {
        order: unset;
    }

    .feature-text,
    .tech-info {
        max-width: 100%;
    }

    .feature-benefits {
        text-align: left;
        max-width: 400px;
        margin: 0 auto;
    }

    .case-info {
        position: static;
    }

    .case-details {
        text-align: left;
    }

    .global-content {
        grid-template-columns: 1fr;
    }

    .global-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 767px) {
    html {
        font-size: 14px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 110px;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: var(--spacing-lg);
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links.active {
        display: flex;
    }

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

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

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

    .feature-title,
    .case-title,
    .tech-title {
        font-size: 1.5rem;
    }

    .full-screen-section {
        min-height: auto;
        padding: var(--spacing-2xl) 0;
    }

    .cta-box {
        padding: var(--spacing-xl);
    }

    .cta-box h2 {
        font-size: 1.5rem;
    }

    .case-screenshots {
        grid-template-columns: 1fr;
    }

    .funnel-visual-large {
        flex-direction: column;
    }

    .funnel-arrow-large {
        width: 2px;
        height: 30px;
        transform: rotate(90deg);
    }

    .clients-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }
}

@media (max-width: 480px) {
    .hero-illustration {
        max-width: 280px;
    }

    .floating-emoji {
        width: 36px;
        height: 36px;
    }

    .particle {
        display: none;
    }

    .brain-waves {
        display: none;
    }
}

/* ================================
   Animations - Reduced Motion
================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ================================
   Solution Section - New Visualizations
================================ */

/* Comparison Visual (Competitive Comparison) */
.comparison-visual {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.brand-label {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-gradient-start);
}

.brand-label.competitor {
    color: var(--color-gradient-end);
}

.vs-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-light);
    background: rgba(0, 0, 0, 0.05);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
}

.comparison-bars {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.comparison-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.comparison-row .metric-name {
    width: 90px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    flex-shrink: 0;
}

.bar-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bar-container .bar {
    height: 18px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: var(--spacing-xs);
    transition: width 1s ease-out;
}

.bar-container .bar span {
    font-size: 0.625rem;
    font-weight: 700;
    color: white;
}

.bar-container .bar-yours {
    background: linear-gradient(90deg, var(--color-gradient-start), #91C8F0);
}

.bar-container .bar-competitor {
    background: linear-gradient(90deg, var(--color-gradient-mid), var(--color-gradient-end));
}

.comparison-row .winner {
    width: 45px;
    font-size: 0.75rem;
    font-weight: 700;
    text-align: right;
    flex-shrink: 0;
}

.comparison-row .winner.you {
    color: #10B981;
}

.comparison-row .winner.them {
    color: #EF4444;
}

/* Turnaround Visual (Fast Turnaround) */
.turnaround-visual {
    width: 100%;
    max-width: 400px;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.clock-animation {
    width: 200px;
    height: 200px;
    margin: 0 auto var(--spacing-lg);
}

.clock-svg {
    width: 100%;
    height: 100%;
}

.clock-progress {
    transform-origin: center;
    animation: clockProgress 3s ease-in-out infinite;
}

@keyframes clockProgress {
    0%, 100% { stroke-dashoffset: 282; }
    50% { stroke-dashoffset: 0; }
}

.clock-number {
    font-size: 2.5rem;
    font-weight: 800;
    fill: url(#clockGrad);
}

.clock-label {
    font-size: 1rem;
    font-weight: 600;
    fill: var(--color-text-light);
}

.turnaround-steps {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.turnaround-steps .step {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    opacity: 0.5;
    transition: all var(--transition-normal);
}

.turnaround-steps .step.active {
    opacity: 1;
    color: var(--color-text);
}

.turnaround-steps .step .step-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Tests Comparison (5x More Tests) */
.tests-comparison {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    display: flex;
    gap: var(--spacing-xl);
    justify-content: center;
}

.tests-column {
    flex: 1;
    text-align: center;
    max-width: 180px;
}

.tests-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-md);
}

.tests-column .test-icons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
    justify-content: center;
    min-height: 90px;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.tests-column .test-icon {
    width: 40px;
    height: 40px;
}

.tests-column .test-icon.filled svg rect {
    fill: url(#testGrad);
}

.tests-column .test-icon.anim-1 { animation: popIn 0.4s ease 0.1s both; }
.tests-column .test-icon.anim-2 { animation: popIn 0.4s ease 0.2s both; }
.tests-column .test-icon.anim-3 { animation: popIn 0.4s ease 0.3s both; }
.tests-column .test-icon.anim-4 { animation: popIn 0.4s ease 0.4s both; }
.tests-column .test-icon.anim-5 { animation: popIn 0.4s ease 0.5s both; }

@keyframes popIn {
    0% { transform: scale(0); opacity: 0; }
    70% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.tests-column .budget-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: var(--spacing-xs);
}

.tests-column .budget-bar .budget-fill {
    height: 100%;
    background: linear-gradient(90deg, #10B981, #34D399);
    border-radius: var(--radius-sm);
}

.tests-column .budget-label {
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-weight: 500;
}

/* Media Environment Visual */
.media-environment-visual {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.platform-comparison {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.platform-item {
    flex: 1;
    max-width: 120px;
    text-align: center;
}

.platform-item .platform-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--spacing-sm);
}

.platform-item .platform-name {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--spacing-sm);
}

.platform-item .emotion-meter {
    height: 80px;
    width: 30px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    margin: 0 auto var(--spacing-xs);
    position: relative;
    overflow: hidden;
}

.platform-item .emotion-meter .meter-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: var(--radius-sm);
    transition: height 1s ease-out;
}

.platform-item .meter-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
}

.media-insight {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-style: italic;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ================================
   Singltone Visual Comparison Grid
================================ */
.singltone-visual {
    padding: var(--spacing-md);
}

.visual-comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.comparison-cell {
    padding: var(--spacing-sm);
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    background: white;
}

.comparison-cell.header {
    background: rgba(125, 211, 252, 0.1);
    font-weight: 700;
    color: var(--color-text);
}

.comparison-cell.header.yt {
    color: #FF0000;
}

.comparison-cell.header.fb {
    color: #1877F2;
}

.comparison-cell.label {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-light);
    font-size: 0.75rem;
}

.comparison-cell.value {
    font-weight: 600;
    color: var(--color-text);
}

.comparison-cell.value.winner {
    background: rgba(16, 185, 129, 0.15);
    color: #059669;
    font-weight: 700;
}

/* ================================
   Global Simple Section
================================ */
.global-simple {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.05) 0%, rgba(192, 132, 252, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.global-text-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.global-statement {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    color: var(--color-text);
    margin-bottom: var(--spacing-xl);
}

.global-statement .highlight-number {
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

.backed-by-simple {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg) var(--spacing-xl);
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.backed-by-simple p {
    font-size: 1rem;
    color: var(--color-text);
    margin: 0;
}

.backed-by-simple p strong {
    color: var(--color-accent);
}

.backed-logo-simple {
    height: 50px;
    width: auto;
}

/* ================================
   Tech Section - Chart Container
================================ */
.tech-chart-container {
    width: 100%;
    max-width: 500px;
    background: white;
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.tech-chart-container canvas {
    width: 100% !important;
    height: 280px !important;
}

/* ================================
   Tech Section - In-Media Visual
================================ */
.in-media-visual {
    width: 100%;
    max-width: 450px;
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
}

.media-platform-row {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.media-platform-card {
    flex: 1;
    max-width: 100px;
    text-align: center;
}

.media-platform-card .platform-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto var(--spacing-sm);
}

.media-platform-card .platform-emotion-bar {
    height: 100px;
    width: 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-sm);
    margin: 0 auto var(--spacing-xs);
    position: relative;
    overflow: hidden;
}

.media-platform-card .platform-emotion-bar .emotion-level {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: var(--radius-sm);
    transition: height 1s ease-out;
}

.media-platform-card .platform-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--color-text);
}

.media-visual-caption {
    text-align: center;
    font-size: 0.75rem;
    color: var(--color-text-light);
    font-style: italic;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin: 0;
}

/* ================================
   Tech Section - Funnel Flow
================================ */
.funnel-diagram {
    display: flex;
    justify-content: center;
}

.funnel-flow {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.funnel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-xs);
}

.funnel-item .funnel-circle {
    width: 60px;
    height: 60px;
}

.funnel-item span {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text);
}

.funnel-item.final span {
    color: var(--color-gradient-end);
    font-weight: 700;
}

.funnel-arrow {
    width: 40px;
    height: 20px;
    flex-shrink: 0;
}

/* ================================
   Section Decorations
================================ */
.section-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: floatShape 8s ease-in-out infinite;
}

.floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid));
    top: 5%;
    left: -5%;
}

.floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-gradient-mid), var(--color-gradient-end));
    bottom: 10%;
    right: -3%;
    animation-delay: 2s;
}

.floating-shape.shape-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, var(--color-gradient-end), var(--color-gradient-start));
    top: 30%;
    right: 5%;
    animation-delay: 4s;
}

.floating-shape.shape-4 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    bottom: 20%;
    left: 10%;
    animation-delay: 1s;
}

.floating-shape.shape-5 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--color-gradient-mid), var(--color-gradient-start));
    top: 10%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes floatShape {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.05);
    }
    50% {
        transform: translate(-10px, -20px) scale(0.95);
    }
    75% {
        transform: translate(15px, 10px) scale(1.02);
    }
}

.pulsing-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid;
    opacity: 0;
    animation: pulseCircle 4s ease-out infinite;
}

.pulsing-circle.circle-1 {
    width: 100px;
    height: 100px;
    border-color: var(--color-gradient-start);
    top: 15%;
    right: 10%;
}

.pulsing-circle.circle-2 {
    width: 80px;
    height: 80px;
    border-color: var(--color-gradient-mid);
    bottom: 25%;
    left: 5%;
    animation-delay: 1.5s;
}

.pulsing-circle.circle-3 {
    width: 120px;
    height: 120px;
    border-color: var(--color-gradient-end);
    top: 40%;
    left: 8%;
    animation-delay: 3s;
}

@keyframes pulseCircle {
    0% {
        transform: scale(0.5);
        opacity: 0.6;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

.data-particle,
.tech-particle-1,
.tech-particle-2,
.tech-particle-3,
.tech-particle-4,
.tech-particle-5 {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    animation: particleFloat 6s ease-in-out infinite;
}

.tech-particle-1 { top: 20%; left: 15%; }
.tech-particle-2 { top: 60%; right: 10%; animation-delay: 2s; }
.tech-particle-3 { bottom: 30%; left: 25%; animation-delay: 4s; }
.tech-particle-4 { top: 25%; right: 20%; animation-delay: 1s; }
.tech-particle-5 { bottom: 20%; right: 25%; animation-delay: 3s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(15px, -25px) scale(1.2);
        opacity: 0.8;
    }
    50% {
        transform: translate(-10px, -15px) scale(0.8);
        opacity: 0.6;
    }
    75% {
        transform: translate(20px, 10px) scale(1.1);
        opacity: 0.7;
    }
}

/* Section Wave Animation */
.section-wave {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 100%;
    height: 60px;
    opacity: 0.15;
}

.section-wave .wave-path.animated {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    animation: waveFlow 4s ease-in-out infinite;
}

@keyframes waveFlow {
    0% { stroke-dashoffset: 1200; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -1200; }
}

/* Floating Dots */
.floating-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    opacity: 0.3;
    animation: dotFloat 6s ease-in-out infinite;
}

.floating-dot.dot-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-dot.dot-2 {
    top: 50%;
    right: 15%;
    animation-delay: 2s;
    width: 8px;
    height: 8px;
}

.floating-dot.dot-3 {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
    width: 16px;
    height: 16px;
}

@keyframes dotFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.3);
    }
    50% {
        transform: translate(-15px, -20px) scale(0.8);
    }
    75% {
        transform: translate(25px, 15px) scale(1.1);
    }
}

/* Mini Eye Animation for sections */
.mini-eye {
    position: absolute;
    width: 60px;
    height: 60px;
    opacity: 0.15;
}

.mini-eye svg {
    width: 100%;
    height: 100%;
}

.mini-eye.eye-1 {
    top: 15%;
    right: 8%;
    animation: miniEyePulse 3s ease-in-out infinite;
}

.mini-eye.eye-2 {
    bottom: 20%;
    left: 5%;
    animation: miniEyePulse 3s ease-in-out infinite 1.5s;
}

@keyframes miniEyePulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.2; }
}

/* Emotion icons floating */
.floating-emotion {
    position: absolute;
    width: 30px;
    height: 30px;
    opacity: 0.2;
    animation: emotionFloat 5s ease-in-out infinite;
}

.floating-emotion svg {
    width: 100%;
    height: 100%;
}

.floating-emotion.emotion-1 {
    top: 10%;
    left: 15%;
    animation-delay: 0s;
}

.floating-emotion.emotion-2 {
    top: 40%;
    right: 10%;
    animation-delay: 1.5s;
}

.floating-emotion.emotion-3 {
    bottom: 15%;
    left: 25%;
    animation-delay: 3s;
}

@keyframes emotionFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.15;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 0.25;
    }
}

/* ================================
   Decorative Dividers
================================ */
.decorative-divider {
    padding: var(--spacing-xl) 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(125, 211, 252, 0.02) 0%, rgba(192, 132, 252, 0.02) 100%);
}

.decorative-divider.alt {
    background: linear-gradient(180deg, rgba(192, 132, 252, 0.02) 0%, rgba(125, 211, 252, 0.02) 100%);
}

.deco-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xl);
    position: relative;
}

/* Deco Eye */
.deco-eye {
    width: 120px;
    height: 80px;
    animation: decoEyePulse 3s ease-in-out infinite;
}

.eye-svg-deco {
    width: 100%;
    height: 100%;
}

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

/* Deco Waves */
.deco-waves {
    width: 200px;
    height: 50px;
}

.brain-wave-deco {
    width: 100%;
    height: 100%;
}

.wave-line-1 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: waveLineDraw 3s ease-in-out infinite;
}

.wave-line-2 {
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: waveLineDraw 3s ease-in-out infinite 0.5s;
}

@keyframes waveLineDraw {
    0% { stroke-dashoffset: 400; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -400; }
}

/* Deco Particles */
.deco-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.deco-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    animation: decoParticleFloat 4s ease-in-out infinite;
}

.deco-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.deco-particle:nth-child(2) { left: 30%; top: 70%; animation-delay: 0.5s; width: 6px; height: 6px; }
.deco-particle:nth-child(3) { right: 30%; top: 30%; animation-delay: 1s; }
.deco-particle:nth-child(4) { right: 10%; top: 60%; animation-delay: 1.5s; width: 10px; height: 10px; }
.deco-particle:nth-child(5) { left: 50%; top: 10%; animation-delay: 2s; width: 5px; height: 5px; }

@keyframes decoParticleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    50% { transform: translate(10px, -15px) scale(1.3); opacity: 0.8; }
}

/* Deco Emojis */
.deco-emojis {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.deco-emoji {
    width: 50px;
    height: 50px;
    animation: decoEmojiFloat 4s ease-in-out infinite;
}

.deco-emoji.happy { animation-delay: 0s; }
.deco-emoji.surprised { animation-delay: 1s; }
.deco-emoji.love { animation-delay: 2s; }

@keyframes decoEmojiFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-10px) rotate(5deg); }
    75% { transform: translateY(5px) rotate(-5deg); }
}

/* Deco Chart Mini */
.deco-chart-mini {
    width: 120px;
    height: 60px;
}

.deco-chart-mini svg {
    width: 100%;
    height: 100%;
}

.chart-line-animated {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: chartLineDraw 2s ease-out infinite;
}

.chart-dot {
    opacity: 0;
    animation: chartDotAppear 2s ease-out infinite;
}

.chart-dot:nth-child(2) { animation-delay: 0.5s; }
.chart-dot:nth-child(3) { animation-delay: 1s; }
.chart-dot:nth-child(4) { animation-delay: 1.5s; }

@keyframes chartLineDraw {
    0% { stroke-dashoffset: 200; }
    60% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: 0; }
}

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

/* Deco Brain */
.deco-brain {
    width: 80px;
    height: 70px;
}

.brain-icon {
    width: 100%;
    height: 100%;
}

.brain-outline {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: brainDraw 4s ease-in-out infinite;
}

@keyframes brainDraw {
    0% { stroke-dashoffset: 300; }
    50% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -300; }
}

/* Deco Signals */
.deco-signals {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    position: relative;
}

.signal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-end));
    animation: signalPulse 1.5s ease-in-out infinite;
}

.signal-dot:nth-child(2) { animation-delay: 0.3s; }
.signal-dot:nth-child(3) { animation-delay: 0.6s; }

.signal-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gradient-start), var(--color-gradient-end));
    border-radius: 2px;
    animation: signalLine 2s ease-in-out infinite;
}

@keyframes signalPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.3); opacity: 1; }
}

@keyframes signalLine {
    0%, 100% { transform: scaleX(1); opacity: 0.5; }
    50% { transform: scaleX(1.2); opacity: 1; }
}

/* ================================
   Animated Visualizations
================================ */
.comparison-visual,
.turnaround-visual,
.tests-comparison,
.media-environment-visual,
.in-media-visual,
.funnel-flow {
    animation: visualFadeIn 0.8s ease-out;
}

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

/* Animated bars */
.bar-container .bar {
    animation: barGrow 1s ease-out forwards;
    transform-origin: left;
}

@keyframes barGrow {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Platform meters animation */
.platform-item .emotion-meter .meter-fill,
.media-platform-card .platform-emotion-bar .emotion-level {
    animation: meterFill 1.5s ease-out forwards;
    transform-origin: bottom;
}

@keyframes meterFill {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

/* Clock animation enhancement */
.clock-animation {
    animation: clockFloat 3s ease-in-out infinite;
}

@keyframes clockFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Test icons sequential animation */
.tests-column.emonomy .test-icon {
    opacity: 0;
    animation: testIconPop 0.5s ease-out forwards;
}

.tests-column.emonomy .test-icon.anim-1 { animation-delay: 0.1s; }
.tests-column.emonomy .test-icon.anim-2 { animation-delay: 0.3s; }
.tests-column.emonomy .test-icon.anim-3 { animation-delay: 0.5s; }
.tests-column.emonomy .test-icon.anim-4 { animation-delay: 0.7s; }
.tests-column.emonomy .test-icon.anim-5 { animation-delay: 0.9s; }

@keyframes testIconPop {
    0% { opacity: 0; transform: scale(0) rotate(-10deg); }
    70% { transform: scale(1.2) rotate(5deg); }
    100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Funnel items animation */
.funnel-item {
    animation: funnelItemAppear 0.6s ease-out forwards;
    opacity: 0;
}

.funnel-item:nth-child(1) { animation-delay: 0.1s; }
.funnel-item:nth-child(3) { animation-delay: 0.3s; }
.funnel-item:nth-child(5) { animation-delay: 0.5s; }
.funnel-item:nth-child(7) { animation-delay: 0.7s; }

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

/* Comparison grid cells animation */
.visual-comparison-grid .comparison-cell {
    animation: cellFadeIn 0.4s ease-out forwards;
    opacity: 0;
}

.visual-comparison-grid .comparison-cell:nth-child(1) { animation-delay: 0.05s; }
.visual-comparison-grid .comparison-cell:nth-child(2) { animation-delay: 0.1s; }
.visual-comparison-grid .comparison-cell:nth-child(3) { animation-delay: 0.15s; }
.visual-comparison-grid .comparison-cell:nth-child(4) { animation-delay: 0.2s; }
.visual-comparison-grid .comparison-cell:nth-child(5) { animation-delay: 0.25s; }
.visual-comparison-grid .comparison-cell:nth-child(6) { animation-delay: 0.3s; }
.visual-comparison-grid .comparison-cell:nth-child(7) { animation-delay: 0.35s; }
.visual-comparison-grid .comparison-cell:nth-child(8) { animation-delay: 0.4s; }
.visual-comparison-grid .comparison-cell:nth-child(9) { animation-delay: 0.45s; }
.visual-comparison-grid .comparison-cell:nth-child(10) { animation-delay: 0.5s; }
.visual-comparison-grid .comparison-cell:nth-child(11) { animation-delay: 0.55s; }
.visual-comparison-grid .comparison-cell:nth-child(12) { animation-delay: 0.6s; }
.visual-comparison-grid .comparison-cell:nth-child(13) { animation-delay: 0.65s; }
.visual-comparison-grid .comparison-cell:nth-child(14) { animation-delay: 0.7s; }
.visual-comparison-grid .comparison-cell:nth-child(15) { animation-delay: 0.75s; }

@keyframes cellFadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

/* Responsive decorative dividers */
@media (max-width: 767px) {
    .decorative-divider {
        padding: var(--spacing-lg) 0;
    }

    .deco-content {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .deco-eye {
        width: 80px;
        height: 55px;
    }

    .deco-waves {
        width: 150px;
        height: 40px;
    }

    .deco-emojis {
        gap: var(--spacing-md);
    }

    .deco-emoji {
        width: 40px;
        height: 40px;
    }

    .deco-chart-mini {
        width: 100px;
        height: 50px;
    }

    .deco-brain {
        width: 60px;
        height: 50px;
    }
}

/* Position relative for sections with animations */
.full-screen-section {
    position: relative;
}

.full-screen-section > .container {
    position: relative;
    z-index: 1;
}

/* Toyota gradient placeholder */
.case-screenshots.toyota-gradient {
    display: flex;
    justify-content: center;
}

.gradient-placeholder {
    width: 100%;
    max-width: 400px;
    height: 200px;
    background: linear-gradient(135deg, var(--color-gradient-start), var(--color-gradient-mid), var(--color-gradient-end));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.gradient-placeholder span {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Chart container large */
.chart-container-large {
    max-width: 550px;
}

.chart-container-large canvas {
    height: 320px !important;
}

/* ================================
   Responsive - New Visualizations
================================ */
@media (max-width: 991px) {
    .comparison-visual,
    .turnaround-visual,
    .tests-comparison,
    .media-environment-visual,
    .tech-chart-container,
    .in-media-visual,
    .funnel-flow {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .comparison-row {
        flex-wrap: wrap;
    }

    .comparison-row .metric-name {
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }

    .comparison-row .winner {
        width: auto;
    }

    .tests-comparison {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .tests-column {
        max-width: 100%;
    }

    .platform-comparison,
    .media-platform-row {
        flex-wrap: wrap;
    }

    .platform-item,
    .media-platform-card {
        flex: 0 0 calc(33.333% - var(--spacing-sm));
    }

    .visual-comparison-grid {
        font-size: 0.75rem;
    }

    .comparison-cell {
        padding: var(--spacing-xs);
    }

    .global-statement {
        font-size: 1.5rem;
    }

    .funnel-flow {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .funnel-arrow {
        transform: rotate(90deg);
    }

    .floating-shape {
        display: none;
    }

    .turnaround-steps {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}
