/* CSS Variables for Light Theme */
:root {
    --bg: #FAFAFC;
    --ink: #111318;
    --muted: #6A7380;
    --line: #E7EAF0;
    --accent: #1F6FEB;
    --accent-2: #9B8CFF;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--ink);
    background-color: #f5f3f0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: var(--space-md);
    color: var(--ink);
}

h1 { font-size: var(--font-size-5xl); }
h2 { font-size: var(--font-size-4xl); }
h3 { font-size: var(--font-size-2xl); }
h4 { font-size: var(--font-size-xl); }
h5 { font-size: var(--font-size-lg); }
h6 { font-size: var(--font-size-base); }

p {
    margin-bottom: var(--space-md);
    color: var(--muted);
}

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

a:hover {
    color: var(--ink);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}


/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
    background: #f5f3f0; /* Creamy background color */
    box-sizing: border-box;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/* Hero Frame Container */
.hero-frame {
    position: relative;
    width: 100%;
    max-width: 1600px;
    height: calc(100vh - 2 * var(--space-lg));
    min-height: 600px;
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Hero Navigation */
.hero-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) var(--space-xl);
    background: transparent;
}

.hero-logo {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: opacity var(--transition-base);
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

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

.logo-link:focus,
.logo-link:active,
.logo-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1); /* Make logo white */
}

.hero-nav-links {
    display: flex;
    gap: var(--space-lg);
}

.hero-nav .nav-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity var(--transition-base);
    position: relative;
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

.hero-nav .nav-link:hover {
    opacity: 0.8;
}

.hero-nav .nav-link:focus,
.hero-nav .nav-link:active,
.hero-nav .nav-link:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.hero-nav .nav-link::after {
    display: none;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.05) 0%,
        rgba(0, 0, 0, 0.1) 50%,
        rgba(0, 0, 0, 0.15) 100%
    );
    z-index: 2;
}

.hero-content {
    position: absolute;
    bottom: var(--space-2xl);
    left: var(--space-2xl);
    z-index: 3;
    max-width: 500px;
    text-align: left;
}

.hero-title {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    margin-bottom: var(--space-md);
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.hero-cta {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-cta::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;
}

.hero-cta:hover {
    background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.hero-cta:hover::before {
    left: 100%;
}

/* Hero Volume Container - Bottom Right */
.hero-volume-container {
    position: absolute;
    bottom: var(--space-xl);
    right: var(--space-xl);
    z-index: 4;
}

/* Video Loading Indicator */
.video-loading-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 5;
    color: white;
    background: rgba(0, 0, 0, 0.7);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-md);
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.video-loading-indicator p {
    margin: 0;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.video-loading-indicator.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

/* Volume Toggle Button */
.volume-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: 50%;
    transition: all var(--transition-base);
    outline: none !important;
    -webkit-tap-highlight-color: transparent;
    -webkit-focus-ring-color: transparent;
}

.volume-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.1);
}

.volume-toggle:focus,
.volume-toggle:active,
.volume-toggle:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.volume-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* Make volume icons white */
    transition: all var(--transition-base);
}


/* Motto Section */
.motto {
    padding: 0;
    background: #f5f3f0; /* Same creamy background as hero */
    position: relative;
    min-height: 400px;
}

.motto::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e0ddd8; /* Thin divider line */
}

.motto-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: var(--space-5xl) 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.motto-label {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
    position: relative;
    opacity: 0.8;
}

.motto-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.motto-text {
    font-size: var(--font-size-5xl);
    line-height: 1.2;
    font-weight: 100;
    color: var(--ink);
    margin: 0;
    position: relative;
    letter-spacing: -0.03em;
    font-style: italic;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

.motto-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-radius: 2px;
}

.motto-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -60px;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 50%, #667eea 100%);
    border-radius: 2px;
}

.motto-text strong {
    font-weight: 600;
    color: #667eea;
}

/* Process Section */
.process {
    padding: 0;
    min-height: 500px;
    background: #f5f3f0; /* Same creamy background as hero */
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 75%;
    height: 1px;
    background: #e0ddd8; /* Thin divider line */
}

.process-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    padding: var(--space-2xl) 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.process-label {
    display: block;
    font-size: var(--font-size-xs);
    font-weight: 500;
    color: #667eea;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: var(--space-xl);
    position: relative;
    opacity: 0.8;
}

.process-label::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #667eea, transparent);
}

.process-text {
    font-size: var(--font-size-2xl);
    line-height: 1.4;
    color: var(--ink);
    font-weight: 300;
    position: relative;
    letter-spacing: -0.02em;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto;
}

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

.process-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--space-lg);
    color: var(--ink);
}

.process-subtitle {
    font-size: var(--font-size-lg);
    color: var(--muted);
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    justify-content: center;
    align-items: stretch;
    margin: 4px auto 64px auto;
    position: relative;
    max-width: 2400px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    padding: var(--space-4xl) var(--space-2xl);
    background: white;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(30px);
    position: relative;
    border-right: 1px solid #e5e7eb;
    min-height: 300px;
}

.process-step:last-child {
    border-right: none;
}

.process-step:hover {
    background: #f9fafb;
}

.process-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.process-step:hover {
    background: rgba(102, 126, 234, 0.02);
}

.step-number {
    font-size: 5rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: var(--space-xl);
    line-height: 0.8;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.step-content {
    text-align: left;
    width: 100%;
}

.step-title {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 2.6em;
    display: flex;
    align-items: center;
}

.step-description {
    font-size: var(--font-size-base);
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    min-height: 6.4em;
    display: flex;
    align-items: flex-start;
}




.step-separator {
    display: none;
}

.process-connector.in-view {
    opacity: 1;
    transform: translateX(0);
}

.process-caption {
    text-align: center;
    font-size: var(--font-size-sm);
    color: var(--muted);
    font-style: italic;
    margin-bottom: 0;
}

/* CTA Band */
.cta-band {
    padding: var(--space-6xl) var(--space-xl);
    background: #f5f3f0;
    position: relative;
}

.cta-panel {
    max-width: 1400px;
    margin: 0 auto;
    background: linear-gradient(90deg, #f8f4ff 0%, #e6f3ff 100%);
    border-radius: 24px;
    border: 1px solid #e0ddd8;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.cta-container {
    padding: var(--space-5xl) var(--space-3xl);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.cta-content {
    max-width: 1000px;
    z-index: 2;
    position: relative;
    text-align: center;
}

.cta-title {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.cta-subtitle {
    font-size: var(--font-size-xl);
    color: #4a4a4a;
    margin-bottom: var(--space-2xl);
    line-height: 1.4;
    font-weight: 400;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-base);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::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;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    color: white !important;
}


.cta-frame-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.frame-line {
    position: absolute;
    background: #e0ddd8;
    opacity: 0.6;
}

.left-line {
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
}

.left-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 4px,
        #e0ddd8 4px,
        #e0ddd8 8px
    );
}

.right-line {
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
}

.right-line::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: repeating-linear-gradient(
        to bottom,
        transparent 0,
        transparent 4px,
        #e0ddd8 4px,
        #e0ddd8 8px
    );
}

.corner-mark {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid #e0ddd8;
    opacity: 0.6;
}

.top-left {
    top: 20px;
    left: 20px;
    border-right: none;
    border-bottom: none;
}

.bottom-right {
    bottom: 20px;
    right: 20px;
    border-left: none;
    border-top: none;
}

/* Footer */
.footer {
    background: #1C1931;
    padding: var(--space-xl) var(--space-2xl) var(--space-lg);
    position: relative;
    margin-top: var(--space-2xl);
}

.footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

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

.footer-left {
    display: flex;
    align-items: center;
}

.footer-logo {
    display: block;
}

.footer-logo img {
    height: 32px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    gap: var(--space-2xl);
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-base);
    font-weight: 400;
}

.footer-nav a:hover {
    color: white;
}

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

.copyright {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    font-weight: 400;
}

/* Scroll Reveal Animation */
.in-view {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .process-step,
    .process-connector {
        opacity: 1 !important;
        transform: none !important;
    }
    
    .hero-video {
        animation: none !important;
    }
}

/* Handle very small heights */
@media (max-height: 700px) {
    .hero {
        min-height: auto;
        height: auto;
        padding: var(--space-lg);
    }

    .hero-frame {
        height: auto;
        min-height: auto;
        position: relative;
    }

    .hero-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        min-height: 56px;
        padding: var(--space-md) var(--space-lg);
        z-index: 10;
    }

    .hero-content {
        position: absolute;
        bottom: var(--space-xl);
        left: var(--space-xl);
        z-index: 3;
    }

    .hero-video-container {
        min-height: 400px;
    }
}

@media (max-height: 600px) {
    .hero-nav {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: auto;
        min-height: 56px;
        z-index: 10;
    }

    .hero {
        padding: var(--space-md);
    }

    .hero-frame {
        min-height: auto;
        position: relative;
    }

    .hero-content {
        position: absolute;
        bottom: var(--space-lg);
        left: var(--space-lg);
        z-index: 3;
    }

    .hero-video-container {
        min-height: 300px;
    }
}

/* Responsive Design */
@media (min-width: 1920px) {
    .hero {
        padding: var(--space-sm) var(--space-sm);
    }
    
    .hero-frame {
        max-width: 1800px;
        height: calc(100vh - 2 * var(--space-sm));
    }
}

@media (min-height: 1080px) {
    .hero {
        padding: var(--space-lg) var(--space-lg);
    }
    
    .hero-frame {
        height: calc(100vh - 2 * var(--space-lg));
    }
}

@media (min-height: 1440px) {
    .hero {
        padding: var(--space-sm) var(--space-sm);
    }
    
    .hero-frame {
        height: calc(100vh - 2 * var(--space-sm));
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-frame {
        height: 75vh;
        border-radius: 28px;
        position: relative;
    }
    
    .hero-content {
        position: absolute;
        max-width: 400px;
    }
    
    .hero-title {
        font-size: var(--font-size-4xl);
    }
    
    .process-steps {
        flex-direction: column;
        margin: 16px auto 64px auto;
        border-radius: 8px;
        max-width: 100%;
    }
    
    .process-step {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding: var(--space-3xl) var(--space-xl);
        align-items: center;
        text-align: center;
        min-height: 250px;
    }
    
    .process-step:last-child {
        border-bottom: none;
    }
    
    .step-content {
        text-align: center;
    }
    
    .step-number {
        font-size: 4rem;
    }
    
    .step-title {
        min-height: auto;
        display: block;
    }
    
    .step-description {
        min-height: auto;
        display: block;
    }
    
    .motto-text {
        text-align: left !important;
        line-height: 1.8;
    }
    
    .cta-panel {
        margin: 0 var(--space-md);
    }
    
    .cta-container {
        flex-direction: column;
        text-align: center;
        padding: var(--space-4xl) var(--space-lg);
    }
    
    .cta-content {
        max-width: 100%;
    }
    
    .cta-title {
        font-size: var(--font-size-3xl);
    }
    
    .cta-subtitle {
        font-size: var(--font-size-lg);
    }
    
    .cta-frame-lines {
        display: none;
    }
}

@media (max-width: 768px) {
    .motto-text {
        text-align: left !important;
        line-height: 1.8;
    }
    
    .hero {
        padding: 0;
        padding-top: 72px;
    }
    
    .hero-frame {
        height: calc(100vh - 72px);
        border-radius: 20px;
        position: relative;
    }
    
    .hero-nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        height: 72px;
        padding: var(--space-lg);
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        z-index: 100;
        display: flex;
        align-items: center;
        justify-content: space-between;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .logo-img {
        height: 32px;
        filter: none;
    }
    
    .hero-nav-links {
        gap: var(--space-lg);
        white-space: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .hero-nav .nav-link {
        color: #1a1a1a;
    }
    
    .hero-content {
        position: absolute;
        bottom: var(--space-xl);
        left: var(--space-xl);
        z-index: 3;
        max-width: calc(100% - 2 * var(--space-xl));
    }
    
    .hero-video {
        width: auto;
        height: 100%;
        min-width: 100%;
        max-width: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-title {
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
    
    .hero-subtitle {
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    }
    
    .hero-content {
        position: absolute;
        max-width: calc(100% - 2 * var(--space-lg));
        z-index: 3;
        text-align: left;
    }
    
    .hero-volume-container {
        bottom: var(--space-lg);
        right: var(--space-lg);
    }
    
    .hero-title {
        font-size: var(--font-size-3xl);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-base);
    }
    
    .motto-text {
        font-size: var(--font-size-3xl);
    }
    
    .motto-text::before,
    .motto-text::after {
        width: 3px;
    }
    
    .motto-text::before {
        left: -40px;
    }
    
    .motto-text::after {
        right: -40px;
    }
    
    .process-title {
        font-size: var(--font-size-3xl);
    }
    
    .cta-title {
        font-size: var(--font-size-3xl);
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer {
        padding: var(--space-lg);
    }

    .footer-content {
        flex-direction: column;
        gap: var(--space-lg);
        margin-bottom: var(--space-xl);
    }

    .footer-nav {
        gap: var(--space-lg);
    }

    .footer-bottom {
        padding-top: var(--space-lg);
    }
}

@media (max-width: 480px) {
    .motto-text {
        text-align: left !important;
        line-height: 1.8;
    }
    
    .hero {
        padding-top: 64px;
    }
    
    .hero-frame {
        height: calc(100vh - 64px);
        border-radius: 16px;
        position: relative;
    }
    
    .hero-nav {
        padding: var(--space-md);
        height: 64px;
    }
    
    .logo-img {
        height: 28px;
    }
    
    .hero-nav-links {
        gap: var(--space-md);
        margin-left: var(--space-md);
    }
    
    .hero-content {
        position: absolute;
        bottom: var(--space-lg);
        left: var(--space-lg);
        z-index: 3;
        max-width: calc(100% - 2 * var(--space-lg));
    }
    
    .hero-video {
        width: auto;
        height: 100%;
        min-width: 120%;
        max-width: none;
        position: relative;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-volume-container {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .hero-title {
        font-size: var(--font-size-2xl);
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    }
    
    .footer-right {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
}

@media (max-width: 480px) {
    .hero-title {
        font-size: var(--font-size-2xl);
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: var(--font-size-sm);
    }
    
    .motto-text {
        font-size: var(--font-size-2xl);
        text-align: center;
    }
    
    .motto-text::before,
    .motto-text::after {
        display: none;
    }
    
    .process-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-title {
        font-size: var(--font-size-2xl);
    }
    
    .cta-primary,
    .cta-secondary {
        padding: var(--space-md) var(--space-lg);
        font-size: var(--font-size-base);
    }
    
    .process-step {
        padding: var(--space-lg);
    }
}

/* Print Styles */
@media print {
    .video-controls,
    .sound-toggle,
    .hero-video,
    .hero-overlay {
        display: none !important;
    }
    
    .hero {
        height: auto;
        padding: var(--space-2xl) 0;
        background: var(--bg);
    }
    
    .hero-content {
        position: static;
        color: var(--ink);
    }
    
    .hero-title,
    .hero-subtitle {
        color: var(--ink);
        text-shadow: none;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .process-step {
        opacity: 1 !important;
        transform: none !important;
    }
}