/* ==========================================================================
   Sensai - Premium Dark Theme
   Clean, luxurious aesthetic with smooth transitions
   ========================================================================== */

:root {
    /* Background */
    --bg-primary: #000000;
    --bg-card: #0a0a0a;
    --bg-elevated: #111111;

    /* Demo surfaces */
    --demo-surface: #e7e7e3;
    --demo-surface-alt: #dcdcd7;
    --demo-border: rgba(0, 0, 0, 0.12);
    --demo-border-soft: rgba(0, 0, 0, 0.08);

    /* Text - White/Gray only */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --text-subtle: rgba(255, 255, 255, 0.3);

    /* Borders */
    --border: rgba(255, 255, 255, 0.1);
    --border-light: rgba(255, 255, 255, 0.05);

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    --space-5xl: 128px;

    /* Typography - System font */
    --font: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;

    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    --text-7xl: 5.5rem;

    /* Border Radius - Rounded pills */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    /* Layout */
    --max-width: 1200px;
    --header-height: 64px;
}

/* ==========================================================================
   Reset
   ========================================================================== */

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

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

body {
    font-family: var(--font);
    font-size: var(--text-base);
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
}

body.no-scroll {
    overflow: hidden;
}

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    position: relative;
    z-index: 10;
}

/* ==========================================================================
   Section Fade Transitions
   ========================================================================== */

.section-fade-top,
.section-fade-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 300px;
    pointer-events: none;
    z-index: 2;
}

.section-fade-top {
    top: 0;
    background: linear-gradient(to bottom, var(--bg-primary) 0%, transparent 100%);
}

.section-fade-bottom {
    bottom: 0;
    background: linear-gradient(to top, var(--bg-primary) 0%, transparent 100%);
}

section,
.demo-section,
.features-section,
.performance-section,
.products-section,
.testimonial-section,
.intro-section {
    position: relative;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.header.scrolled {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.logo {
    font-size: var(--text-lg);
    font-weight: 600;
    letter-spacing: -0.02em;
}

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

.nav-links a,
.nav-dropdown-btn {
    color: #000000;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header.scrolled .nav-links a,
.header.scrolled .nav-dropdown-btn {
    color: var(--text-secondary);
}

.nav-links a:hover,
.nav-dropdown-btn:hover {
    color: rgba(0, 0, 0, 0.7);
}

.header.scrolled .nav-links a:hover,
.header.scrolled .nav-dropdown-btn:hover {
    color: var(--text-primary);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + var(--space-sm));
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: var(--space-sm);
    min-width: 160px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s;
}

.nav-dropdown-menu a {
    color: var(--text-secondary);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.nav-dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.btn-link {
    color: #000000;
    font-size: var(--text-sm);
    font-weight: 500;
    transition: color 0.2s;
}

.header.scrolled .btn-link {
    color: var(--text-secondary);
}

.btn-link:hover {
    color: rgba(0, 0, 0, 0.7);
}

.header.scrolled .btn-link:hover {
    color: var(--text-primary);
}

/* ==========================================================================
   Buttons - Rounded Pills
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 10px 20px;
    font-size: var(--text-sm);
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.2);
}

.btn-secondary {
    /* Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.1),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.15),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.btn-secondary:hover::after {
    left: 120%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--text-base);
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    justify-content: center;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    border-radius: 2px;
}

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

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--bg-primary);
    z-index: 1001;
    padding: var(--space-lg);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--border-light);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-2xl);
}

.mobile-menu-close {
    color: var(--text-primary);
    padding: var(--space-sm);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-bottom: var(--space-xl);
}

.mobile-nav-links a {
    padding: var(--space-md) 0;
    font-size: var(--text-lg);
    border-bottom: 1px solid var(--border-light);
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

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

/* ==========================================================================
   Hero with High-Res Sunset Image
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + var(--space-4xl)) var(--space-lg) var(--space-4xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 70%;
    animation: cloudFloat 60s ease-in-out infinite alternate;
}

@keyframes cloudFloat {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.1) translate(-10px, -5px);
    }
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: var(--text-sm);
    color: rgba(0, 0, 0, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.hero h1 {
    font-size: var(--text-6xl);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-lg);
    color: #000000;
}

.hero h1 em {
    font-style: italic;
    font-weight: 400;
}

.hero-description {
    font-size: var(--text-xl);
    color: rgba(0, 0, 0, 0.8);
    max-width: 560px;
    margin: 0 auto var(--space-xl);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #000000;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.6),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.hero .btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.hero .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.8),
        inset 0 -1px 1px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.hero .btn-secondary:hover::after {
    left: 120%;
}

/* ==========================================================================
   Intro Section - Very Large Text
   ========================================================================== */

.intro-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.intro-text {
    font-size: var(--text-4xl);
    font-weight: 400;
    color: var(--text-secondary);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
    letter-spacing: -0.02em;
}

.intro-text em {
    color: var(--text-primary);
    font-style: italic;
}

/* ==========================================================================
   Section Headers
   ========================================================================== */

.section-eyebrow {
    font-size: var(--text-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.section-eyebrow.center,
h2.center {
    text-align: center;
}

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

.section-header h2 {
    font-size: var(--text-4xl);
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

h2 {
    font-size: var(--text-4xl);
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

/* ==========================================================================
   Features Grid - With Animations & Effects
   ========================================================================== */

.features-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    perspective: 1000px;
}

/* Feature cards start hidden */
.features-grid.animated .feature-card {
    opacity: 0;
    transform: translateY(80px) scale(0.85);
    filter: blur(8px);
}

/* Each card animates in individually */
.features-grid.animated .feature-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.feature-card {
    position: relative;
    padding: var(--space-xl);
    /* Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    overflow: hidden;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
    transform-style: preserve-3d;
    will-change: transform, opacity, filter;
}

/* Liquid glass shine effect */
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
}

/* Transition delays now controlled via JavaScript for staggered effect */

.feature-glow {
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle at center,
            rgba(255, 255, 255, 0.08) 0%,
            transparent 50%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.feature-card:hover .feature-glow {
    opacity: 1;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.3),
        0 0 80px rgba(255, 255, 255, 0.03),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Liquid glass icon */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.feature-card:hover .feature-icon {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.1) translateY(-2px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.15);
}

.feature-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ==========================================================================
   Image Separators - High Resolution
   ========================================================================== */

.image-separator {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.separator-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.1s ease-out;
}

/* Hide background image but keep section content */
.image-separator.hide-bg .separator-img {
    display: none;
}

.image-separator.hide-bg {
    background: linear-gradient(180deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
}

/* Scroll-based content reveal for separators */
.image-separator .separator-content {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-separator.in-view .separator-content {
    opacity: 1;
    transform: translateY(0);
}

.separator-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.3) 0%,
            rgba(0, 0, 0, 0.2) 30%,
            rgba(0, 0, 0, 0.2) 70%,
            rgba(0, 0, 0, 0.3) 100%);
}

.separator-overlay.darker {
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0.5) 0%,
            rgba(0, 0, 0, 0.4) 30%,
            rgba(0, 0, 0, 0.4) 70%,
            rgba(0, 0, 0, 0.6) 100%);
}

.separator-content {
    position: relative;
    z-index: 3;
    max-width: 700px;
    padding: var(--space-lg);
}

.separator-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-md);
}

.separator-content h2 {
    font-size: var(--text-5xl);
    font-weight: 500;
    margin-bottom: var(--space-md);
    line-height: 1.1;
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.separator-content p {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.separator-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    margin-top: var(--space-xl);
}

/* ==========================================================================
   Email Demo
   ========================================================================== */

.demo-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.demo-layout {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: var(--space-2xl);
    align-items: start;
}

.demo-main {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) 48px minmax(0, 1.15fr);
    gap: var(--space-md);
    align-items: stretch;
}

.email-layout {
    grid-template-columns: 0.7fr 1.3fr;
    gap: var(--space-3xl);
    align-items: center;
}

.email-copy {
    max-width: 480px;
}

.email-copy h2 {
    font-size: var(--text-3xl);
}

.email-copy .section-desc {
    font-size: var(--text-base);
    line-height: 1.6;
}

.demo-features {
    display: grid;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.demo-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    padding: 0;
}

.demo-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    color: var(--text-primary);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.demo-feature:hover .demo-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.demo-feature-icon svg {
    width: 22px;
    height: 22px;
}

.demo-feature h4 {
    margin-bottom: 4px;
    font-size: var(--text-base);
    color: var(--text-primary);
}

.demo-feature p {
    margin: 0;
    color: var(--text-secondary);
    font-size: var(--text-sm);
}

.demo-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

.demo-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    align-self: center;
    color: #111111;
    gap: var(--space-xs);
}

.demo-arrow .arrow-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: var(--demo-surface);
    border: 1px solid var(--demo-border-soft);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.demo-arrow svg {
    width: 22px;
    height: 22px;
}

/* ==========================================================================
   Scroll Pinned Section (Email AI Demo)
   ========================================================================== */

.scroll-pinned-section {
    position: relative;
    background: var(--bg-primary);
    min-height: 150vh;
}

.scroll-pinned-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
}

.scroll-pinned-container {
    display: flex;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    width: 100%;
}

/* Text - Left Side */
.scroll-pinned-text {
    width: 35%;
    padding-right: var(--space-3xl);
}

.scroll-text-block {
    opacity: var(--scroll-opacity, 0);
    transform: translateY(var(--scroll-y, 40px));
    filter: blur(calc((1 - var(--scroll-opacity, 0)) * 6px));
    will-change: transform, opacity, filter;
}

.scroll-text-block h2 {
    font-size: var(--text-3xl);
}

.scroll-text-block .section-desc {
    text-align: left;
    margin: 0 0 var(--space-lg) 0;
}

/* Scroll Animate Right (Voice AI section) */
.scroll-animate-right {
    opacity: var(--scroll-opacity, 0);
    transform: translateX(var(--scroll-x, 60px));
    transition: opacity 0.15s ease-out, transform 0.15s ease-out;
    will-change: transform, opacity;
}

@media (max-width: 1024px) {
    .scroll-animate-right {
        opacity: 1;
        transform: none;
    }
}

/* Demo - Right Side */
.scroll-pinned-demo {
    width: 65%;
}

.scroll-pinned-demo .demo-main {
    display: grid;
    grid-template-columns: 1fr 48px 1fr;
    gap: var(--space-md);
    align-items: stretch;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .scroll-pinned-section {
        min-height: auto;
    }

    .scroll-pinned-wrapper {
        position: relative;
        height: auto;
        flex-direction: column;
        padding: calc(var(--header-height) + var(--space-2xl)) 0 var(--space-2xl);
    }

    .scroll-pinned-container {
        flex-direction: column;
        gap: var(--space-2xl);
    }

    .scroll-pinned-text {
        width: 100%;
        padding-right: 0;
        padding: 0 var(--space-md);
        order: 2;
    }

    .scroll-text-block {
        opacity: 1;
        transform: none;
        filter: none;
    }

    .scroll-pinned-demo {
        width: 100%;
        padding: 0 var(--space-md);
        order: 1;
    }

    .scroll-pinned-demo .demo-main {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .scroll-pinned-demo .demo-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 768px) {
    .scroll-text-block h2 {
        font-size: var(--text-2xl);
    }
}

.email-card {
    background: var(--demo-surface);
    border: 1px solid var(--demo-border);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    color: #111111;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.email-card.response {
    border-color: var(--demo-border-soft);
    background: linear-gradient(135deg, var(--demo-surface) 0%, var(--demo-surface-alt) 100%);
}

.email-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.email-avatar {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background: var(--demo-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-sm);
    font-weight: 600;
    color: #666666;
}

.email-avatar.ai {
    background: #000000;
    color: #ffffff;
}

.email-meta {
    flex: 1;
}

.email-name {
    display: block;
    font-weight: 600;
    font-size: var(--text-sm);
    color: #111111;
}

.email-address {
    font-size: var(--text-xs);
    color: #666666;
}

.confidence-badge {
    font-size: var(--text-xs);
    color: #444444;
    padding: var(--space-xs) var(--space-sm);
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    border: 1px solid rgba(0, 0, 0, 0.05);
    white-space: nowrap;
}

.email-subject {
    font-weight: 600;
    font-size: var(--text-sm);
    margin-bottom: var(--space-sm);
    color: #111111;
}

.email-body {
    font-size: var(--text-sm);
    color: #444444;
    line-height: 1.8;
}

.email-body strong {
    color: #111111;
}

.email-footer {
    margin-top: var(--space-md);
    padding-top: var(--space-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    font-size: var(--text-xs);
    color: #888888;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
}

/* Typing Animation */
.typing-container {
    position: relative;
}

.typing-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #111111;
    margin-left: 2px;
    animation: blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* Stats Panel */
.stats-panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.stat-item {
    background: var(--demo-surface);
    border: 1px solid var(--demo-border);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.stat-item .stat-value {
    display: block;
    font-size: var(--text-3xl);
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: #111111;
}

.stat-item .stat-label {
    font-size: var(--text-xs);
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ==========================================================================
   Voice Demo
   ========================================================================== */

.voice-demo {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.voice-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.call-card {
    background: var(--demo-surface);
    border: 1px solid var(--demo-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    animation: callPulse 7s ease-in-out infinite;
}

.call-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--demo-surface-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.call-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    color: #111111;
}

.call-dot,
.live-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.voice-wave {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-left: 12px;
}

.voice-wave .bar {
    width: 3px;
    height: 14px;
    border-radius: 9999px;
    background: linear-gradient(180deg, #222222 0%, #000000 100%);
    animation: wavePulse 1.3s ease-in-out infinite;
    opacity: 0.95;
}

.voice-wave .bar:nth-child(2) { height: 18px; animation-delay: 0.1s; }
.voice-wave .bar:nth-child(3) { height: 22px; animation-delay: 0.2s; }
.voice-wave .bar:nth-child(4) { height: 18px; animation-delay: 0.3s; }
.voice-wave .bar:nth-child(5) { height: 16px; animation-delay: 0.4s; }

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes wavePulse {
    0% { transform: scaleY(0.4); opacity: 0.5; }
    40% { transform: scaleY(1.25); opacity: 1; }
    80% { transform: scaleY(0.65); opacity: 0.7; }
    100% { transform: scaleY(0.5); opacity: 0.6; }
}

@keyframes speakGlow {
    0% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); border-left-color: #000000; }
    50% { box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18); border-left-color: #111111; }
    100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); border-left-color: #000000; }
}

@keyframes floatPulse {
    0% { transform: translateY(0px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
    50% { transform: translateY(-6px); box-shadow: 0 16px 28px rgba(0, 0, 0, 0.14); }
    100% { transform: translateY(0px); box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1); }
}

@keyframes callPulse {
    0% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); border-color: var(--demo-border); }
    50% { box-shadow: 0 24px 48px rgba(0, 0, 0, 0.26); border-color: var(--demo-border-soft); }
    100% { box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2); border-color: var(--demo-border); }
}

.call-time {
    font-size: var(--text-sm);
    color: #666666;
    font-family: 'SF Mono', monospace;
}

.call-contact {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.call-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, #333333 0%, #111111 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: white;
}

.call-info {
    flex: 1;
}

.call-name {
    display: block;
    font-weight: 600;
    color: #111111;
}

.call-number {
    font-size: var(--text-sm);
    color: #666666;
}

.call-badges {
    display: flex;
    gap: var(--space-xs);
}

.badge {
    font-size: 10px;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-full);
    color: #666666;
}

.transcript-section {
    padding: var(--space-lg);
}

.transcript-label {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: #111111;
}

.transcript-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.transcript-line {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    line-height: 1.5;
}

.transcript-line.customer {
    background: var(--demo-surface-alt);
    color: #444444;
}

.transcript-line.ai {
    background: var(--demo-surface);
    color: #111111;
    border-left: 2px solid #000000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    animation: speakGlow 3.4s ease-in-out infinite;
}

.call-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-lg);
    background: var(--demo-surface-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: var(--text-xs);
}

.ai-confidence {
    color: #666666;
}

.powered-by {
    color: #888888;
}

.voice-copy {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.voice-copy .section-desc {
    max-width: 520px;
}

.voice-points {
    margin-top: var(--space-sm);
}

.voice-stat:nth-child(2) {
    animation-delay: 1.6s;
}

/* ==========================================================================
   Calendar AI Section
   ========================================================================== */

.calendar-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.calendar-content .section-eyebrow {
    margin-bottom: var(--space-md);
}

.calendar-content h2 {
    margin-bottom: var(--space-md);
}

.calendar-content .section-desc {
    text-align: left;
    margin: 0 0 var(--space-xl) 0;
}

.calendar-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.calendar-feature {
    display: flex;
    gap: var(--space-md);
}

.calendar-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.calendar-feature:hover .calendar-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.calendar-feature h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.calendar-feature p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

.calendar-card {
    background: var(--demo-surface);
    border: 1px solid var(--demo-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.calendar-card-header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: var(--demo-surface-alt);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: var(--text-sm);
    font-weight: 500;
    color: #111111;
}

.calendar-conversation {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.calendar-msg {
    max-width: 85%;
}

.calendar-msg.user {
    align-self: flex-end;
}

.calendar-msg.ai {
    align-self: flex-start;
}

.calendar-msg p {
    font-size: var(--text-sm);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-lg);
    line-height: 1.5;
}

.calendar-msg.user p {
    background: #111111;
    color: #ffffff;
    border-bottom-right-radius: var(--radius-sm);
}

.calendar-msg.ai p {
    background: var(--demo-surface-alt);
    border-bottom-left-radius: var(--radius-sm);
    color: #333333;
}

.time-slots {
    display: flex;
    gap: var(--space-sm);
    margin: var(--space-sm) 0;
    padding: 0 var(--space-md);
}

.time-slot {
    padding: var(--space-xs) var(--space-md);
    background: var(--demo-surface);
    border: 1px solid var(--demo-border);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: #666666;
    transition: all 0.2s;
}

.time-slot.selected {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.timezone-note {
    font-size: var(--text-xs) !important;
    color: #888888 !important;
    padding: 0 var(--space-md) !important;
    background: none !important;
}

.booking-confirmed {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-top: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-md);
    font-size: var(--text-xs);
    color: #111111;
}

.calendar-card-footer {
    padding: var(--space-md) var(--space-lg);
    background: var(--demo-surface-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    font-size: var(--text-xs);
    color: #666666;
}

/* ==========================================================================
   Integrations Section - Orbiting Animation
   ========================================================================== */

.integrations-demo {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.integrations-content .section-eyebrow {
    margin-bottom: var(--space-md);
}

.integrations-content h2 {
    margin-bottom: var(--space-md);
}

.integrations-content .section-desc {
    text-align: left;
    margin: 0 0 var(--space-xl) 0;
}

.integrations-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.integrations-feature {
    display: flex;
    gap: var(--space-md);
}

.integrations-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.integrations-feature:hover .integrations-feature-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
}

.integrations-feature h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.integrations-feature p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: 1.5;
}

/* Orbit Container */
.integrations-orbit {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    max-width: 500px;
    margin: 0 auto;
}

/* Center Logo */
.orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.orbit-logo {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    animation: centerPulse 3s ease-in-out infinite;
    box-shadow:
        0 0 40px rgba(255, 255, 255, 0.1),
        0 0 80px rgba(255, 255, 255, 0.05);
}

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

@keyframes centerPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow:
            0 0 40px rgba(255, 255, 255, 0.1),
            0 0 80px rgba(255, 255, 255, 0.05);
    }
    50% {
        transform: scale(1.05);
        box-shadow:
            0 0 60px rgba(255, 255, 255, 0.2),
            0 0 100px rgba(255, 255, 255, 0.1);
    }
}

/* Orbit Rings - visual only */
.orbit-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    transform-origin: center center;
}

.orbit-ring-1 {
    width: 55%;
    height: 55%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite;
}

.orbit-ring-2 {
    width: 75%;
    height: 75%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite 1s;
}

.orbit-ring-3 {
    width: 95%;
    height: 95%;
    transform: translate(-50%, -50%);
    animation: ringPulse 4s ease-in-out infinite 2s;
}

@keyframes ringPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Orbiting Icons - positioned absolutely */
.orbit-icon {
    position: absolute;
    width: 52px;
    height: 52px;
    margin-left: -26px;
    margin-top: -26px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.3s ease, opacity 0.3s ease, translate 0.1s ease-out;
    z-index: 5;
    /* Magnetic repulsion offset - controlled by JavaScript */
    --repel-x: 0px;
    --repel-y: 0px;
    translate: var(--repel-x) var(--repel-y);
}

/* Ring 1 - Inner orbit (4 icons) - radius ~27.5% */
.orbit-ring-1 .orbit-icon:nth-child(1) {
    top: 50%;
    left: 50%;
    animation: orbit1-icon1 20s linear infinite;
}
.orbit-ring-1 .orbit-icon:nth-child(2) {
    top: 50%;
    left: 50%;
    animation: orbit1-icon2 20s linear infinite;
}
.orbit-ring-1 .orbit-icon:nth-child(3) {
    top: 50%;
    left: 50%;
    animation: orbit1-icon3 20s linear infinite;
}
.orbit-ring-1 .orbit-icon:nth-child(4) {
    top: 50%;
    left: 50%;
    animation: orbit1-icon4 20s linear infinite;
}

@keyframes orbit1-icon1 {
    from { transform: rotate(0deg) translateX(70px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(70px) rotate(-360deg); }
}
@keyframes orbit1-icon2 {
    from { transform: rotate(90deg) translateX(70px) rotate(-90deg); }
    to { transform: rotate(450deg) translateX(70px) rotate(-450deg); }
}
@keyframes orbit1-icon3 {
    from { transform: rotate(180deg) translateX(70px) rotate(-180deg); }
    to { transform: rotate(540deg) translateX(70px) rotate(-540deg); }
}
@keyframes orbit1-icon4 {
    from { transform: rotate(270deg) translateX(70px) rotate(-270deg); }
    to { transform: rotate(630deg) translateX(70px) rotate(-630deg); }
}

/* Ring 2 - Middle orbit (4 icons) - radius ~37.5% */
.orbit-ring-2 .orbit-icon:nth-child(1) {
    top: 50%;
    left: 50%;
    animation: orbit2-icon1 30s linear infinite reverse;
}
.orbit-ring-2 .orbit-icon:nth-child(2) {
    top: 50%;
    left: 50%;
    animation: orbit2-icon2 30s linear infinite reverse;
}
.orbit-ring-2 .orbit-icon:nth-child(3) {
    top: 50%;
    left: 50%;
    animation: orbit2-icon3 30s linear infinite reverse;
}
.orbit-ring-2 .orbit-icon:nth-child(4) {
    top: 50%;
    left: 50%;
    animation: orbit2-icon4 30s linear infinite reverse;
}

@keyframes orbit2-icon1 {
    from { transform: rotate(45deg) translateX(110px) rotate(-45deg); }
    to { transform: rotate(405deg) translateX(110px) rotate(-405deg); }
}
@keyframes orbit2-icon2 {
    from { transform: rotate(135deg) translateX(110px) rotate(-135deg); }
    to { transform: rotate(495deg) translateX(110px) rotate(-495deg); }
}
@keyframes orbit2-icon3 {
    from { transform: rotate(225deg) translateX(110px) rotate(-225deg); }
    to { transform: rotate(585deg) translateX(110px) rotate(-585deg); }
}
@keyframes orbit2-icon4 {
    from { transform: rotate(315deg) translateX(110px) rotate(-315deg); }
    to { transform: rotate(675deg) translateX(110px) rotate(-675deg); }
}

/* Ring 3 - Outer orbit (2 icons) - radius ~47.5% */
.orbit-ring-3 .orbit-icon:nth-child(1) {
    top: 50%;
    left: 50%;
    animation: orbit3-icon1 40s linear infinite;
}
.orbit-ring-3 .orbit-icon:nth-child(2) {
    top: 50%;
    left: 50%;
    animation: orbit3-icon2 40s linear infinite;
}

@keyframes orbit3-icon1 {
    from { transform: rotate(30deg) translateX(150px) rotate(-30deg); }
    to { transform: rotate(390deg) translateX(150px) rotate(-390deg); }
}
@keyframes orbit3-icon2 {
    from { transform: rotate(210deg) translateX(150px) rotate(-210deg); }
    to { transform: rotate(570deg) translateX(150px) rotate(-570deg); }
}

.orbit-icon:hover {
    box-shadow:
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(255, 255, 255, 0.2);
    z-index: 100;
}

.orbit-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.orbit-icon:hover img {
    transform: scale(1.15);
}

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

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

@keyframes iconSpin {
    from { /* handled by orbit ring rotation */ }
    to { /* handled by orbit ring rotation */ }
}

/* Shuffle animation class */
.orbit-icon.shuffling {
    animation: iconShuffle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards !important;
}

@keyframes iconShuffle {
    0% {
        transform: scale(1) rotate(0deg);
    }
    30% {
        transform: scale(var(--shuffle-scale, 1.1)) rotate(var(--shuffle-rotate, 5deg));
    }
    60% {
        transform: scale(0.95) rotate(calc(var(--shuffle-rotate, 5deg) * -0.5));
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}

/* Connection line animation */
.connection-line {
    stroke-dasharray: 200;
    stroke-dashoffset: 200;
    animation: drawLine 1s ease forwards;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

/* Glow pulse for active connections */
@keyframes connectionPulse {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.6));
    }
}

/* Icon brand colors - applied via filter for SVGs */
.icon-gmail { filter: invert(35%) sepia(96%) saturate(3500%) hue-rotate(346deg) brightness(95%) contrast(95%); }
.icon-outlook { filter: invert(35%) sepia(98%) saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(95%); }
.icon-whatsapp { filter: invert(65%) sepia(70%) saturate(500%) hue-rotate(90deg) brightness(95%) contrast(95%); }
.icon-slack { filter: invert(20%) sepia(90%) saturate(2000%) hue-rotate(280deg) brightness(80%) contrast(95%); }
.icon-teams { filter: invert(35%) sepia(80%) saturate(1200%) hue-rotate(220deg) brightness(90%) contrast(95%); }
.icon-asana { filter: invert(50%) sepia(80%) saturate(800%) hue-rotate(320deg) brightness(95%) contrast(95%); }
.icon-notion { filter: invert(0%) sepia(0%) saturate(0%) brightness(20%) contrast(100%); }
.icon-shopify { filter: invert(60%) sepia(60%) saturate(500%) hue-rotate(50deg) brightness(95%) contrast(95%); }
.icon-instagram { filter: invert(40%) sepia(90%) saturate(1500%) hue-rotate(320deg) brightness(90%) contrast(95%); }
.icon-linkedin { filter: invert(30%) sepia(98%) saturate(1500%) hue-rotate(190deg) brightness(95%) contrast(95%); }

/* Floating Particles */
.orbit-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
}

.particle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.particle:nth-child(2) {
    top: 70%;
    left: 25%;
    animation-delay: -2s;
    animation-duration: 9s;
}

.particle:nth-child(3) {
    top: 30%;
    right: 20%;
    animation-delay: -4s;
    animation-duration: 6s;
}

.particle:nth-child(4) {
    bottom: 25%;
    right: 15%;
    animation-delay: -1s;
    animation-duration: 8s;
}

.particle:nth-child(5) {
    top: 50%;
    left: 10%;
    animation-delay: -3s;
    animation-duration: 10s;
}

.particle:nth-child(6) {
    bottom: 15%;
    left: 50%;
    animation-delay: -5s;
    animation-duration: 7s;
}

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

/* Connection lines SVG */
.orbit-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.3;
}

/* Responsive adjustments for Integrations */
@media (max-width: 1024px) {
    .integrations-demo {
        grid-template-columns: 1fr;
    }

    .integrations-orbit {
        max-width: 400px;
        margin-top: var(--space-2xl);
    }

    /* Adjust orbit radii for smaller container */
    @keyframes orbit1-icon1 {
        from { transform: rotate(0deg) translateX(55px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(55px) rotate(-360deg); }
    }
    @keyframes orbit1-icon2 {
        from { transform: rotate(90deg) translateX(55px) rotate(-90deg); }
        to { transform: rotate(450deg) translateX(55px) rotate(-450deg); }
    }
    @keyframes orbit1-icon3 {
        from { transform: rotate(180deg) translateX(55px) rotate(-180deg); }
        to { transform: rotate(540deg) translateX(55px) rotate(-540deg); }
    }
    @keyframes orbit1-icon4 {
        from { transform: rotate(270deg) translateX(55px) rotate(-270deg); }
        to { transform: rotate(630deg) translateX(55px) rotate(-630deg); }
    }
    @keyframes orbit2-icon1 {
        from { transform: rotate(45deg) translateX(90px) rotate(-45deg); }
        to { transform: rotate(405deg) translateX(90px) rotate(-405deg); }
    }
    @keyframes orbit2-icon2 {
        from { transform: rotate(135deg) translateX(90px) rotate(-135deg); }
        to { transform: rotate(495deg) translateX(90px) rotate(-495deg); }
    }
    @keyframes orbit2-icon3 {
        from { transform: rotate(225deg) translateX(90px) rotate(-225deg); }
        to { transform: rotate(585deg) translateX(90px) rotate(-585deg); }
    }
    @keyframes orbit2-icon4 {
        from { transform: rotate(315deg) translateX(90px) rotate(-315deg); }
        to { transform: rotate(675deg) translateX(90px) rotate(-675deg); }
    }
    @keyframes orbit3-icon1 {
        from { transform: rotate(30deg) translateX(120px) rotate(-30deg); }
        to { transform: rotate(390deg) translateX(120px) rotate(-390deg); }
    }
    @keyframes orbit3-icon2 {
        from { transform: rotate(210deg) translateX(120px) rotate(-210deg); }
        to { transform: rotate(570deg) translateX(120px) rotate(-570deg); }
    }
}

@media (max-width: 768px) {
    .integrations-orbit {
        max-width: 320px;
    }

    .orbit-icon {
        width: 44px;
        height: 44px;
        margin-left: -22px;
        margin-top: -22px;
        border-radius: 12px;
    }

    .orbit-icon img {
        width: 24px;
        height: 24px;
    }

    .orbit-logo {
        width: 60px;
        height: 60px;
    }

    .orbit-logo img {
        width: 36px;
        height: 36px;
    }

    /* Smaller orbit radii */
    @keyframes orbit1-icon1 {
        from { transform: rotate(0deg) translateX(45px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(45px) rotate(-360deg); }
    }
    @keyframes orbit1-icon2 {
        from { transform: rotate(90deg) translateX(45px) rotate(-90deg); }
        to { transform: rotate(450deg) translateX(45px) rotate(-450deg); }
    }
    @keyframes orbit1-icon3 {
        from { transform: rotate(180deg) translateX(45px) rotate(-180deg); }
        to { transform: rotate(540deg) translateX(45px) rotate(-540deg); }
    }
    @keyframes orbit1-icon4 {
        from { transform: rotate(270deg) translateX(45px) rotate(-270deg); }
        to { transform: rotate(630deg) translateX(45px) rotate(-630deg); }
    }
    @keyframes orbit2-icon1 {
        from { transform: rotate(45deg) translateX(70px) rotate(-45deg); }
        to { transform: rotate(405deg) translateX(70px) rotate(-405deg); }
    }
    @keyframes orbit2-icon2 {
        from { transform: rotate(135deg) translateX(70px) rotate(-135deg); }
        to { transform: rotate(495deg) translateX(70px) rotate(-495deg); }
    }
    @keyframes orbit2-icon3 {
        from { transform: rotate(225deg) translateX(70px) rotate(-225deg); }
        to { transform: rotate(585deg) translateX(70px) rotate(-585deg); }
    }
    @keyframes orbit2-icon4 {
        from { transform: rotate(315deg) translateX(70px) rotate(-315deg); }
        to { transform: rotate(675deg) translateX(70px) rotate(-675deg); }
    }
    @keyframes orbit3-icon1 {
        from { transform: rotate(30deg) translateX(95px) rotate(-30deg); }
        to { transform: rotate(390deg) translateX(95px) rotate(-390deg); }
    }
    @keyframes orbit3-icon2 {
        from { transform: rotate(210deg) translateX(95px) rotate(-210deg); }
        to { transform: rotate(570deg) translateX(95px) rotate(-570deg); }
    }
}

@media (max-width: 480px) {
    .integrations-orbit {
        max-width: 280px;
    }

    .orbit-icon {
        width: 38px;
        height: 38px;
        margin-left: -19px;
        margin-top: -19px;
        border-radius: 10px;
    }

    .orbit-icon img {
        width: 20px;
        height: 20px;
    }

    .orbit-logo {
        width: 50px;
        height: 50px;
    }

    .orbit-logo img {
        width: 30px;
        height: 30px;
    }

    /* Even smaller orbit radii */
    @keyframes orbit1-icon1 {
        from { transform: rotate(0deg) translateX(38px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(38px) rotate(-360deg); }
    }
    @keyframes orbit1-icon2 {
        from { transform: rotate(90deg) translateX(38px) rotate(-90deg); }
        to { transform: rotate(450deg) translateX(38px) rotate(-450deg); }
    }
    @keyframes orbit1-icon3 {
        from { transform: rotate(180deg) translateX(38px) rotate(-180deg); }
        to { transform: rotate(540deg) translateX(38px) rotate(-540deg); }
    }
    @keyframes orbit1-icon4 {
        from { transform: rotate(270deg) translateX(38px) rotate(-270deg); }
        to { transform: rotate(630deg) translateX(38px) rotate(-630deg); }
    }
    @keyframes orbit2-icon1 {
        from { transform: rotate(45deg) translateX(60px) rotate(-45deg); }
        to { transform: rotate(405deg) translateX(60px) rotate(-405deg); }
    }
    @keyframes orbit2-icon2 {
        from { transform: rotate(135deg) translateX(60px) rotate(-135deg); }
        to { transform: rotate(495deg) translateX(60px) rotate(-495deg); }
    }
    @keyframes orbit2-icon3 {
        from { transform: rotate(225deg) translateX(60px) rotate(-225deg); }
        to { transform: rotate(585deg) translateX(60px) rotate(-585deg); }
    }
    @keyframes orbit2-icon4 {
        from { transform: rotate(315deg) translateX(60px) rotate(-315deg); }
        to { transform: rotate(675deg) translateX(60px) rotate(-675deg); }
    }
    @keyframes orbit3-icon1 {
        from { transform: rotate(30deg) translateX(80px) rotate(-30deg); }
        to { transform: rotate(390deg) translateX(80px) rotate(-390deg); }
    }
    @keyframes orbit3-icon2 {
        from { transform: rotate(210deg) translateX(80px) rotate(-210deg); }
        to { transform: rotate(570deg) translateX(80px) rotate(-570deg); }
    }
}

/* ==========================================================================
   Performance Section
   ========================================================================== */

.performance-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.performance-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.performance-content .section-eyebrow {
    margin-bottom: var(--space-md);
}

.performance-content h2 {
    margin-bottom: var(--space-md);
}

.performance-content .section-desc {
    margin: 0 0 var(--space-xl);
    text-align: left;
}

.learning-points {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.learning-point h4 {
    font-size: var(--text-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.learning-point p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.performance-visual {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.performance-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.live-badge {
    font-size: var(--text-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
}

.trend {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.performance-metrics {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.perf-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xs);
}

.perf-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.perf-value {
    font-size: var(--text-sm);
    font-weight: 600;
}

.perf-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.perf-fill {
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--radius-full);
    width: var(--width);
    transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.performance-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--space-lg);
    padding-top: var(--space-md);
    border-top: 1px solid var(--border-light);
}

.learning-status {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-xs);
    color: var(--text-secondary);
}

.status-dot {
    width: 6px;
    height: 6px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    animation: pulse 2s infinite;
}

.updated {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.quick-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.quick-stat {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    text-align: center;
}

.quick-value {
    display: block;
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.quick-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* ==========================================================================
   Products Section
   ========================================================================== */

.products-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

.products-section h2 {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.product-card:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.product-type {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
}

.product-card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.product-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
    line-height: 1.6;
}

.product-link {
    font-size: var(--text-sm);
    color: var(--text-primary);
    font-weight: 500;
    transition: opacity 0.2s;
}

.product-link:hover {
    opacity: 0.7;
}

/* ==========================================================================
   Testimonial
   ========================================================================== */

.testimonial-section {
    padding: var(--space-5xl) 0;
    background: var(--bg-primary);
}

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

.testimonial p {
    font-size: var(--text-2xl);
    font-weight: 400;
    line-height: 1.5;
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xs);
}

.testimonial strong {
    font-size: var(--text-base);
}

.testimonial footer span {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* ==========================================================================
   CTA Separator
   ========================================================================== */

.cta-separator {
    min-height: 500px;
    background: #04070d;
    overflow: hidden;
}

/* Animated starfield background for CTA */
.cta-separator.hide-bg {
    background: #000;
}

.cta-animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    background: #000;
}

/* White torch glow from button area */
.cta-animated-bg::before {
    content: '';
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse 50% 60% at 50% 50%,
        rgba(255, 255, 255, 0.18) 0%,
        rgba(255, 255, 255, 0.1) 25%,
        rgba(255, 255, 255, 0.03) 50%,
        transparent 70%);
    animation: buttonGlow 8s ease-in-out infinite;
}

.cta-animated-bg::after {
    content: '';
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(ellipse 60% 50% at 50% 50%,
        rgba(255, 255, 255, 0.15) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        transparent 70%);
    animation: buttonGlow 8s ease-in-out infinite 0.5s;
}

@keyframes buttonGlow {
    0%, 100% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.08);
    }
}

/* Stars */
.cta-star {
    position: absolute;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.5);
}

@keyframes starDrift1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    25% {
        transform: translate(15px, -10px) scale(1.1);
        opacity: 0.9;
    }
    50% {
        transform: translate(5px, -20px) scale(1);
        opacity: 0.5;
    }
    75% {
        transform: translate(-10px, -5px) scale(1.15);
        opacity: 1;
    }
}

@keyframes starDrift2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(-12px, 8px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -5px) scale(0.9);
        opacity: 0.4;
    }
    75% {
        transform: translate(8px, 12px) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes starDrift3 {
    0%, 100% {
        transform: translate(0, 0) scale(1.1);
        opacity: 0.6;
    }
    33% {
        transform: translate(10px, 15px) scale(1);
        opacity: 1;
    }
    66% {
        transform: translate(-15px, 10px) scale(1.2);
        opacity: 0.5;
    }
}

/* No overlay needed for starfield */
.cta-separator .separator-overlay {
    display: none;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--bg-primary);
    border-top: 1px solid var(--border-light);
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-brand {
    max-width: 240px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: var(--space-md);
}

.footer-brand p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: var(--space-3xl);
}

.footer-col h4 {
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-col a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--border-light);
}

.footer-bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.made-in-europe {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

.made-in-europe .heart-icon {
    color: #e25555;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.made-in-europe .eu-flag {
    border-radius: 2px;
    margin-left: 2px;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {

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

    .demo-layout,
    .voice-demo,
    .calendar-demo {
        grid-template-columns: 1fr;
    }

    .demo-main {
        grid-template-columns: 1fr;
    }

    .demo-arrow {
        display: none;
    }

    .stats-panel,
    .voice-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stats-panel>*,
    .voice-stats>* {
        flex: 1;
        min-width: 120px;
    }

    .performance-layout {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .calendar-demo {
        gap: var(--space-2xl);
    }
}

@media (max-width: 768px) {
    :root {
        --text-6xl: 3rem;
        --text-5xl: 2.5rem;
        --text-4xl: 2rem;
    }

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

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

    .hero h1 br,
    .separator-content h2 br {
        display: none;
    }

    .intro-text {
        font-size: var(--text-2xl);
    }

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

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

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        flex-wrap: wrap;
        gap: var(--space-xl);
    }

    .image-separator {
        min-height: 450px;
    }

    .separator-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-fade-top,
    .section-fade-bottom {
        height: 100px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero {
        padding-top: calc(var(--header-height) + var(--space-2xl));
    }

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

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

    .quick-stats {
        grid-template-columns: 1fr;
    }

    .stats-panel,
    .voice-stats {
        flex-direction: column;
    }
}

.chip-soon {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(4px);
    margin-bottom: var(--space-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
}


/* ==========================================================================
   Coming Soon Styles
   ========================================================================== */

.coming-soon-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 50;
    border-radius: var(--radius-xl);
}

.coming-soon-badge {
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.coming-soon-text {
    font-size: var(--text-lg);
    color: var(--text-primary);
    font-weight: 500;
}

.badge-sm {
    display: inline-block;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    margin-left: 6px;
    vertical-align: middle;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.nav-dropdown-menu a.disabled {
    pointer-events: none;
    opacity: 0.5;
}

.product-card.coming-soon {
    opacity: 0.7;
}

.product-card.coming-soon .product-link {
    cursor: default;
    opacity: 0.5;
    pointer-events: none;
}

/* ==========================================================================
   Pricing Section
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    position: relative;
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    background: linear-gradient(145deg, var(--bg-card) 0%, rgba(255, 255, 255, 0.03) 100%);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-primary);
    color: var(--bg-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.card-header h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.price {
    margin-bottom: var(--space-xs);
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.amount {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--text-primary);
}

.amount.custom {
    font-size: var(--text-2xl);
}

.period {
    font-size: var(--text-base);
    color: var(--text-secondary);
    font-weight: 400;
}

.price-desc {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    min-height: 42px;
}

.features-list {
    margin-bottom: var(--space-xl);
    flex-grow: 1;
}

.features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.check {
    color: var(--text-primary);
    font-weight: bold;
}

.pricing-card .btn {
    width: 100%;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.contact-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-md);
    text-align: center;
    background: var(--bg-primary);
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-md);
}

/* Contact Options */
.contact-options-section {
    padding: var(--space-2xl) 0;
    background: var(--bg-primary);
}

.contact-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

/* Contact option cards start hidden for animation */
.contact-options-grid.animated .contact-option-card {
    opacity: 0;
    transform: translateY(60px) scale(0.9);
    filter: blur(6px);
}

.contact-options-grid.animated .contact-option-card.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.contact-option-card {
    /* Liquid Glass Effect */
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease,
                border-color 0.3s ease,
                box-shadow 0.3s ease;
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* Liquid glass shine */
.contact-option-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.contact-option-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-6px) scale(1.02);
    box-shadow:
        0 16px 40px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.option-icon {
    width: 48px;
    height: 48px;
    /* Liquid glass icon */
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
    transition: all 0.3s ease;
    box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.contact-option-card:hover .option-icon {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.contact-option-card h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.contact-option-card p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    color: var(--text-primary);
    font-weight: 500;
    font-size: var(--text-sm);
    transition: opacity 0.2s;
}

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

/* Contact Main (Form + Sidebar) */
.contact-main-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.contact-form-wrapper h2 {
    font-size: var(--text-3xl);
    margin-bottom: var(--space-sm);
}

.form-desc {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.form-group label {
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 12px 16px;
    font-family: inherit;
    font-size: var(--text-base);
    color: var(--text-primary);
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--text-muted);
    background: rgba(255, 255, 255, 0.05);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-subtle);
}

/* Sidebar */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.sidebar-block {
    padding: var(--space-xl);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
}

.sidebar-block h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-lg);
}

.office-location {
    margin-bottom: var(--space-md);
}

.office-location:last-child {
    margin-bottom: 0;
}

.office-location h4 {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-primary);
}

.office-location p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.phone-link {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--text-lg);
    font-weight: 500;
    color: var(--text-primary);
}

/* FAQ */
.faq-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border);
    transform: translateY(-4px);
}

.faq-item h3 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-md);
    font-weight: 600;
}

.faq-item p {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 900px) {
    .contact-options-grid {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

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

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

/* Contact Page Navbar Overrides */
.contact-page .header:not(.scrolled) .nav-links a,
.contact-page .header:not(.scrolled) .nav-dropdown-btn {
    color: #FFFFFF;
}

.contact-page .header:not(.scrolled) .nav-links a:hover,
.contact-page .header:not(.scrolled) .nav-dropdown-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.contact-page .header:not(.scrolled) .nav-dropdown-btn svg {
    stroke: #FFFFFF;
}

/* ==========================================================================
   Advanced Animations - Landio-inspired effects
   ========================================================================== */

/* ---- Header & Nav Entrance ---- */
.animate-header {
    animation: headerSlideDown 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

.animate-nav-item {
    opacity: 0;
    animation: navItemFade 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: calc(var(--nav-delay, 0) * 0.1s + 0.3s);
}

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

/* ---- Hero Entrance Animations ---- */
.animate-hero {
    opacity: 0;
    transform: translateY(60px);
    animation: heroEntrance 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-hero[data-delay="0"] {
    animation-delay: 0.2s;
}

.animate-hero[data-delay="1"] {
    animation-delay: 0.4s;
}

.animate-hero[data-delay="2"] {
    animation-delay: 0.7s;
}

.animate-hero[data-delay="3"] {
    animation-delay: 0.9s;
}

@keyframes heroEntrance {
    from {
        opacity: 0;
        transform: translateY(60px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

/* Hero Title Pop/Scale Animation */
.hero-title {
    overflow: visible;
}

.hero-title .title-word {
    display: inline-block;
    transform: scale(0.5);
    animation: titlePop 1s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.hero-title .title-word:nth-child(1) {
    animation-delay: 0.1s;
}

.hero-title .title-word:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-title .title-word:nth-child(3) {
    animation-delay: 0.35s;
}

@keyframes titlePop {
    0% {
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

/* ---- Typewriter Text Animation ---- */
.scroll-reveal-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.3em;
}

.scroll-reveal-text .reveal-word {
    opacity: 0.08;
    filter: blur(8px);
    transform: translateY(5px);
    display: inline-block;
    transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.5s ease;
}

/* Next word preview - slightly visible and blurred */
.scroll-reveal-text .reveal-word.next-word {
    opacity: 0.25;
    filter: blur(4px);
    transform: translateY(2px);
}

.scroll-reveal-text .reveal-word.revealed {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

.scroll-reveal-text em.reveal-word {
    color: var(--text-muted);
}

.scroll-reveal-text em.reveal-word.revealed {
    color: var(--text-primary);
}

/* ---- Scroll Fade Up Animation ---- */
.scroll-fade-up {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* ---- Scroll Scale In Animation (Pricing Cards) ---- */
.scroll-scale-in {
    opacity: 0;
    transform: scale(0.9) translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: calc(var(--card-delay, 0) * 0.15s);
}

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

/* ---- Enhanced Feature Cards Animation ---- */
.features-grid.animated .feature-card {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.3s ease,
                box-shadow 0.3s ease;
}

.features-grid.animated.visible .feature-card {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---- Image Separator Enhanced Animation ---- */
.image-separator .separator-content {
    opacity: 0;
    transform: translateY(60px) scale(0.98);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-separator.in-view .separator-content {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.image-separator .separator-content h2 {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s;
}

.image-separator.in-view .separator-content h2 {
    opacity: 1;
    transform: translateY(0);
}

.image-separator .separator-content p {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s;
}

.image-separator.in-view .separator-content p {
    opacity: 1;
    transform: translateY(0);
}

.image-separator .separator-buttons {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.6s;
}

.image-separator.in-view .separator-buttons {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Chip Soon Badge Animation ---- */
.chip-soon {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
    animation: chipPulse 2s ease-in-out infinite;
}

@keyframes chipPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 20px 5px rgba(255, 255, 255, 0.1);
    }
}

/* ---- Testimonial Animation ---- */
.testimonial-section .testimonial {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-section.in-view .testimonial {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* ---- Button Hover Enhancements ---- */
.btn {
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.hero-buttons .btn {
    opacity: 0;
    animation: buttonEntrance 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-buttons .btn:first-child {
    animation-delay: 1s;
}

.hero-buttons .btn:last-child {
    animation-delay: 1.15s;
}

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

/* ---- Performance Section Animation ---- */
.performance-section .performance-content,
.performance-section .performance-visual {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.performance-section.in-view .performance-content {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.performance-section.in-view .performance-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s;
}

/* ---- Learning Points Stagger ---- */
.learning-point {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.performance-section.in-view .learning-point:nth-child(1) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.3s;
}

.performance-section.in-view .learning-point:nth-child(2) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.45s;
}

.performance-section.in-view .learning-point:nth-child(3) {
    opacity: 1;
    transform: translateX(0);
    transition-delay: 0.6s;
}

/* ---- Quick Stats Animation ---- */
.quick-stat {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.performance-section.in-view .quick-stat:nth-child(1) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.5s;
}

.performance-section.in-view .quick-stat:nth-child(2) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.65s;
}

.performance-section.in-view .quick-stat:nth-child(3) {
    opacity: 1;
    transform: translateY(0) scale(1);
    transition-delay: 0.8s;
}

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

/* ==========================================================================
   Contact Page Animations
   ========================================================================== */

/* Contact Hero Title Pop Animation */
.contact-title-pop {
    transform: scale(0.6);
    animation: contactTitlePop 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
    animation-delay: 0.15s;
}

@keyframes contactTitlePop {
    0% {
        transform: scale(0.6);
    }
    60% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Scroll Slide Left Animation */
.scroll-slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-slide-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Slide Right Animation */
.scroll-slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    transition-delay: 0.15s;
}

.scroll-slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Items Animation */
.faq-grid.animated .faq-item {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    filter: blur(4px);
}

.faq-grid.animated .faq-item.animate-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

/* FAQ Item Liquid Glass - override existing styles */
.faq-section .faq-item {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                filter 0.6s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.3s ease,
                border-color 0.3s ease;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.faq-section .faq-item:hover {
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

/* Contact Form Wrapper Liquid Glass - override */
.contact-page .contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.2),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

/* Contact Sidebar Liquid Glass */
.contact-page .sidebar-block {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

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

    .animate-hero,
    .scroll-fade-up,
    .scroll-scale-in,
    .scroll-slide-left,
    .scroll-slide-right,
    .scroll-reveal-text .reveal-word,
    .contact-title-pop {
        opacity: 1;
        transform: none;
        filter: none;
    }
}

/* ==========================================================================
   Legal Pages (Privacy & Terms)
   ========================================================================== */

.legal-page .header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
}

.legal-hero {
    padding: calc(var(--header-height) + var(--space-4xl)) 0 var(--space-2xl);
    text-align: center;
    background: var(--bg-primary);
}

.legal-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-hero h1 {
    font-size: var(--text-5xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    letter-spacing: -0.02em;
}

.legal-content-section {
    padding: var(--space-2xl) 0 var(--space-5xl);
    background: var(--bg-primary);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl) var(--space-3xl);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.15),
        inset 0 1px 1px rgba(255, 255, 255, 0.03);
}

.legal-section {
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section h2 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.legal-section p {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-lg);
}

.legal-section ul li {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-sm);
    position: relative;
    list-style: none;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: calc(-1 * var(--space-lg));
    top: 0.7em;
    width: 6px;
    height: 6px;
    background: var(--text-muted);
    border-radius: 50%;
}

.legal-link {
    color: var(--text-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s;
}

.legal-link:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .legal-hero h1 {
        font-size: var(--text-4xl);
    }

    .legal-content {
        padding: var(--space-xl) var(--space-lg);
    }

    .legal-section h2 {
        font-size: var(--text-lg);
    }
}