/* CSS Variables */
:root {
    /* Background - Professional dark blue gradient */
    --bg-gradient-start: #0a1628;
    --bg-gradient-mid: #1a2744;
    --bg-gradient-end: #0f1b2e;
    
    /* Primary Accent - Trust-building blue */
    --accent-primary: #3b82f6;
    --accent-primary-dark: #2563eb;
    --accent-primary-light: #60a5fa;
    
    /* Secondary Accent - Professional teal */
    --accent-teal: #06b6d4;
    --accent-teal-dark: #0891b2;
    --accent-teal-light: #22d3ee;
    
    /* Tertiary Accent - Subtle purple for variety */
    --accent-purple: #8b5cf6;
    --accent-purple-dark: #7c3aed;
    
    /* Success/Positive - Green */
    --accent-success: #10b981;
    
    /* Text Colors - High contrast for readability */
    --text-primary: #ffffff;
    --text-secondary: #f3f4f6;
    --text-muted: #d1d5db;
    --text-accent: #dbeafe;
    
    /* Card Colors - More visible and professional */
    --card-bg: rgba(255, 255, 255, 0.08);
    --card-bg-hover: rgba(255, 255, 255, 0.12);
    --card-bg-light: rgba(59, 130, 246, 0.1);
    --card-border: rgba(255, 255, 255, 0.15);
    --card-border-accent: rgba(59, 130, 246, 0.3);
    
    /* Shadows - More depth */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-accent: 0 4px 20px rgba(59, 130, 246, 0.3);
    
    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    --spacing-2xl: 6rem;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    background: 
        radial-gradient(circle at 0% 0%, rgba(30, 58, 138, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 100% 0%, rgba(79, 70, 229, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 100%, rgba(15, 23, 42, 0.5) 0%, transparent 50%),
        radial-gradient(circle at 20% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(139, 92, 246, 0.25) 0%, transparent 40%),
        linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e3a8a 50%, #312e81 75%, #0f172a 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

/* Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(30, 30, 50, 0.9));
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    width: 100%;
    box-sizing: border-box;
}

.nav-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-img {
    transform: scale(1.05);
}

/* Fallback text logo if image doesn't load */
.nav-logo a:not(:has(img)) {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmerGold 3s ease-in-out infinite;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-teal));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateX(-50%);
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
}

/* Language Switcher */
.language-switcher {
    position: relative;
    z-index: 1002;
}

.language-switcher-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-switcher-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
}

.language-switcher-btn .globe-icon {
    opacity: 0.7;
    flex-shrink: 0;
}

.language-switcher-btn .current-language-flag {
    font-size: 1rem;
    line-height: 1;
}

.language-switcher-btn .current-language-name {
    max-width: 80px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.language-switcher-btn .chevron-icon {
    opacity: 0.6;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}

.language-switcher-btn[aria-expanded="true"] .chevron-icon {
    transform: rotate(180deg);
}

.language-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 180px;
    max-height: 320px;
    overflow-y: auto;
    background: linear-gradient(180deg, rgba(20, 30, 50, 0.98), rgba(15, 23, 42, 0.98));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.language-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-dropdown::-webkit-scrollbar {
    width: 6px;
}

.language-dropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.language-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    padding: 10px 12px;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.15s ease;
}

.language-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
}

.language-option.active {
    background: rgba(59, 130, 246, 0.15);
    color: var(--accent-primary-light);
}

.language-option .lang-flag {
    font-size: 1.1rem;
    line-height: 1;
}

.language-option .lang-name {
    flex: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu-toggle.menu-open .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.menu-open .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.menu-open .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Nav Menu Container (for mobile) */
.nav-menu {
    display: contents;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-ghost {
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1rem;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-primary) 0%, var(--accent-primary-dark) 100%);
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.01em;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-primary-dark) 0%, var(--accent-primary) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(59, 130, 246, 0.5);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.01em;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-secondary:hover {
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
}

.btn-secondary:hover::before {
    opacity: 1;
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    border: none;
    transition: all 0.3s ease;
}

.btn-ghost:hover {
    color: var(--text-primary);
    transform: translateY(-1px);
}

.btn-large {
    padding: 1rem 2.25rem;
    font-size: 1rem;
    border-radius: 10px;
}

/* Hero Section */
.hero {
    padding: var(--spacing-2xl) 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(59, 130, 246, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 50%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(6, 182, 212, 0.2) 0%, transparent 50%);
    animation: heroGradientShift 20s ease-in-out infinite alternate;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.5) 100%);
    pointer-events: none;
}

.hero > .container {
    position: relative;
    z-index: 2;
}

@keyframes heroGradientShift {
    0% {
        transform: scale(1) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: scale(1.2) rotate(5deg);
        opacity: 0.6;
    }
}

/* Floating Background Elements */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.floating-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    animation: floatOrb 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.6) 0%, transparent 70%);
    top: -10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.5) 0%, transparent 70%);
    top: 30%;
    right: -5%;
    animation-delay: -5s;
    animation-duration: 25s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    bottom: -10%;
    left: 30%;
    animation-delay: -10s;
    animation-duration: 22s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(30px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }
    75% {
        transform: translate(20px, 30px) scale(1.05);
    }
}

.floating-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: floatShape 15s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    top: 20%;
    left: 8%;
    transform: rotate(45deg);
    animation-delay: 0s;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, transparent 50%);
}

.shape-2 {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    top: 60%;
    right: 10%;
    animation-delay: -3s;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 50%);
}

.shape-3 {
    width: 100px;
    height: 100px;
    border-radius: 30px;
    bottom: 15%;
    left: 15%;
    transform: rotate(-15deg);
    animation-delay: -7s;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

@keyframes floatShape {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(calc(var(--rotate, 0deg) + 10deg));
        opacity: 0.8;
    }
}

.shape-1 { --rotate: 45deg; }
.shape-2 { --rotate: 0deg; }
.shape-3 { --rotate: -15deg; }

/* Hero Content - Centered Layout */
.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content.hero-centered {
    max-width: 900px;
    margin: 0 auto;
}

.hero-text {
    max-width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--spacing-lg);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    animation: shimmerBadge 3s ease-in-out infinite;
}

@keyframes shimmerBadge {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.hero-text h1 {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--text-primary);
    letter-spacing: -0.03em;
}

.hero-line {
    display: block;
}

.hero-gradient-text {
    background: linear-gradient(135deg, var(--accent-primary-light) 0%, var(--accent-teal-light) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 5s ease-in-out infinite;
}

@keyframes gradientFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-subheadline {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.7;
    font-weight: 400;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

.hero-ctas {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}

/* Glowing CTA Button */
.btn-glow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-teal), var(--accent-purple), var(--accent-primary));
    background-size: 300% 100%;
    border-radius: inherit;
    z-index: -1;
    animation: glowRotate 3s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn-glow:hover::before {
    opacity: 1;
}

@keyframes glowRotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 300% 50%; }
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-glow:hover .btn-arrow {
    transform: translateX(4px);
}

.hero-features {
    display: flex;
    gap: var(--spacing-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.feature-icon {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-teal));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 12px;
    height: 12px;
}

/* Entrance Animations */
.anim-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--delay, 0s);
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for hero content */
.hero-text > * {
    opacity: 0;
    animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }

/* Scroll-triggered animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered children animations */
.scroll-animate-children > * {
    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);
}

.scroll-animate-children.is-visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.scroll-animate-children.is-visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.scroll-animate-children.is-visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.scroll-animate-children.is-visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.scroll-animate-children.is-visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.scroll-animate-children.is-visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.35s; }

/* Scale up animation */
.scroll-scale {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.scroll-scale.is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Hero Visual - Apple-style Layered Screens (Legacy - can be removed) */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
    perspective-origin: center center;
    position: relative;
    min-height: 500px;
}

.hero-visual::before {
    content: '';
    position: absolute;
    inset: 5% 15% 10%;
    background: 
        radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    filter: blur(80px);
    opacity: 0.7;
    animation: heroAura 12s ease-in-out infinite;
    z-index: 0;
}

.hero-visual .screens-container {
    position: relative;
    z-index: 1;
}

.hero-visual:hover .screens-container {
    transform: translateY(-6px);
    transition: transform 0.6s ease;
}

.screens-container {
    position: relative;
    width: 100%;
    max-width: 700px;
    height: 500px;
    transform-style: preserve-3d;
}

.screen {
    position: absolute;
    width: 100%;
    max-width: 600px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.6s ease;
    backface-visibility: hidden;
}

/* Device Frame - MacBook style */
.device-frame {
    position: relative;
    width: 100%;
    transform-style: preserve-3d;
}

.device-bezel {
    background: linear-gradient(180deg, #1a1a1a 0%, #0a0a0a 100%);
    border-radius: 12px 12px 4px 4px;
    padding: 8px;
    position: relative;
}

.device-bezel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: #000;
    border-radius: 0 0 8px 8px;
    z-index: 2;
}

.device-screen {
    background: #000;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Browser Chrome */
.browser-chrome {
    background: #2d2d2d;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chrome-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.chrome-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: block;
}

.chrome-dot.red {
    background: #ff5f56;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.chrome-dot.yellow {
    background: #ffbd2e;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.chrome-dot.green {
    background: #27c93f;
    box-shadow: 0 0 0 0.5px rgba(0, 0, 0, 0.2);
}

.chrome-bar {
    flex: 1;
    height: 24px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.device-base {
    width: 100%;
    height: 4px;
    background: linear-gradient(180deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 0 0 8px 8px;
    margin-top: -2px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.screen img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mockera Product Interface */
.mockera-interface {
    position: relative;
    background: #000;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.interface-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: rgba(26, 26, 46, 0.8);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.mockera-logo-small {
    font-size: 1rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.interview-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 600;
}

.timer-icon {
    font-size: 0.75rem;
}

.interface-content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.interface-content .hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    flex: 1;
}

.product-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.question-counter {
    background: rgba(59, 130, 246, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
}

.counter-label {
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.counter-value {
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 700;
}

.interview-progress {
    width: 100%;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-light));
    border-radius: 2px;
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(59, 130, 246, 0.5);
}

.interface-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 16px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.control-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.control-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.control-btn.active {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
    color: #000;
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.5);
}

.control-btn.end-btn {
    background: #ff4444;
    border-color: #ff4444;
    color: #fff;
}

.control-btn.end-btn:hover {
    background: #ff6666;
    box-shadow: 0 0 12px rgba(255, 68, 68, 0.5);
}

/* Feedback View */
.feedback-view .interface-content {
    padding: 24px;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(15, 52, 96, 0.95));
}

.feedback-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.feedback-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.score-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.score-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.score-label {
    font-size: 1rem;
    color: var(--text-muted);
}

.feedback-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 20px;
    padding: 6px 12px;
    font-size: 0.75rem;
    color: var(--accent-primary);
    font-weight: 600;
}

.feedback-badge span:first-child {
    color: #27c93f;
    font-weight: 700;
}

.feedback-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-label {
    min-width: 80px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-light));
    border-radius: 3px;
    transition: width 0.3s ease;
}

.stat-value {
    min-width: 40px;
    text-align: right;
    font-size: 0.875rem;
    color: var(--text-primary);
    font-weight: 600;
}

.feedback-actions {
    display: flex;
    gap: 12px;
}

.btn-feedback-primary,
.btn-feedback-secondary {
    flex: 1;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-feedback-primary {
    background: var(--accent-primary);
    color: #ffffff;
}

.btn-feedback-primary:hover {
    background: var(--accent-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 212, 255, 0.4);
}

.btn-feedback-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-feedback-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

/* Screen 1 - Front (largest, centered) */
.screen-1 {
    z-index: 3;
    opacity: 1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) translateZ(0px) scale(1);
}

/* Screen 2 - Middle (slightly behind, offset right) */
.screen-2 {
    z-index: 2;
    transform: translate(-45%, -50%) translateZ(-40px) scale(0.95) rotateY(-5deg);
    opacity: 0.85;
    top: 50%;
    left: 50%;
    filter: brightness(0.9);
}

/* Screen 3 - Back (furthest, offset left) */
.screen-3 {
    z-index: 1;
    transform: translate(-55%, -50%) translateZ(-80px) scale(0.9) rotateY(5deg);
    opacity: 0.7;
    top: 50%;
    left: 50%;
    filter: brightness(0.8);
}

/* Hover effect - bring screens forward */
.screens-container:hover .screen-1 {
    transform: translate(-50%, -50%) translateZ(20px) scale(1.02);
}

.screens-container:hover .screen-2 {
    transform: translate(-45%, -50%) translateZ(-20px) scale(0.97) rotateY(-3deg);
    opacity: 0.9;
}

.screens-container:hover .screen-3 {
    transform: translate(-55%, -50%) translateZ(-60px) scale(0.92) rotateY(3deg);
    opacity: 0.75;
}

/* Subtle animation on load */
@keyframes screenFloat {
    0%, 100% {
        transform: translate(-50%, -50%) translateZ(0px) scale(1);
    }
    50% {
        transform: translate(-50%, -52%) translateZ(10px) scale(1.01);
    }
}

.screen-1 {
    animation: screenFloat 6s ease-in-out infinite;
}

/* Enhanced shadow for device frames */
.screen-1 .device-bezel {
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.05),
        0 25px 70px rgba(0, 0, 0, 0.7),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.screen-2 .device-bezel {
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.03),
        0 15px 50px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.screen-3 .device-bezel {
    box-shadow: 
        0 0 0 1px rgba(255, 255, 255, 0.02),
        0 10px 40px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Glow effect for depth on device frames */
.device-bezel::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2) 0%,
        rgba(0, 212, 255, 0.05) 50%,
        rgba(0, 212, 255, 0.2) 100%);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.screen-1 .device-bezel::after {
    opacity: 0.5;
}

.screen-2 .device-bezel::after {
    opacity: 0.3;
}

.screen-3 .device-bezel::after {
    opacity: 0.15;
}

/* Screen reflection effect */
.device-screen::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 212, 255, 0.02) 100%
    );
    pointer-events: none;
    z-index: 1;
}

/* Intro Section */
.intro {
    padding: var(--spacing-2xl) 0;
    text-align: center;
    position: relative;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(59, 130, 246, 0.1);
    backdrop-filter: blur(10px);
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: var(--spacing-xl);
    text-transform: none;
    letter-spacing: 0.5px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    color: var(--accent-primary-light);
}

.pill::before {
    content: '✨';
    font-size: 1.1rem;
    -webkit-text-fill-color: initial;
}

.pill::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    animation: shimmerPill 3s ease-in-out infinite;
    pointer-events: none;
}

@keyframes shimmerPill {
    0% { left: -100%; }
    50%, 100% { left: 100%; }
}

.intro-content p {
    font-size: 1.25rem;
    color: var(--text-primary);
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.01em;
}


@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        animation-delay: 0s !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .questions-track,
    .feedback-track,
    .btn-primary {
        animation: none !important;
    }
}

/* Section Styles */
.section {
    padding: var(--spacing-2xl) 0;
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

/* Gradient text option for section titles */
.section-title-gradient {
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent-primary-light) 50%, var(--accent-teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: var(--spacing-xl);
    font-size: 1rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* How It Works Section */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.step-card {
    background: var(--card-bg);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15), var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--accent-primary-light);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.step-card:hover .step-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(6, 182, 212, 0.2) 100%);
    border-color: rgba(59, 130, 246, 0.4);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.2);
}

.step-number {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    font-size: 5rem;
    font-weight: 800;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(6, 182, 212, 0.15) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    z-index: 0;
    font-family: var(--font-display);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding-right: 1rem;
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    margin: 0;
    padding-right: 1rem;
}

/* Value Props Section */
.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.value-card {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, transparent 0%, transparent 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.value-card:hover {
    background: var(--card-bg-hover);
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.2), var(--shadow-md);
    border-color: transparent;
}

.value-card:hover::before {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.5) 0%, rgba(6, 182, 212, 0.3) 50%, rgba(139, 92, 246, 0.4) 100%);
    opacity: 1;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.value-card-image {
    position: absolute;
    max-width: 250px;
    width: auto;
    height: auto;
    z-index: 0;
    object-fit: contain;
    opacity: 0.25;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.value-card:hover .value-card-image {
    opacity: 0.45;
    transform: scale(1.05);
}

.value-card-image-left {
    top: -20px;
    left: -20px;
    border-radius: var(--radius-lg) 0 0 0;
}

.value-card-image-right {
    top: -20px;
    right: -20px;
    border-radius: 0 var(--radius-lg) 0 0;
}

.value-card-image-left-bottom {
    bottom: -10px;
    left: -20px;
    top: auto;
    border-radius: 0 0 0 var(--radius-lg);
    max-width: 250px;
}

.value-card-image-right-bottom {
    bottom: -20px;
    right: -20px;
    top: auto;
    border-radius: 0 0 var(--radius-lg) 0;
    max-width: 180px;
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.3s ease;
}

/* Creative CSS Icons */
.icon-target {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 50%;
    position: relative;
}

.icon-target::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-target::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--accent-teal);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

.icon-video {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.icon-video::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 16px solid var(--accent-teal);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.icon-video::after {
    content: '';
    position: absolute;
    width: 32px;
    height: 24px;
    border: 2px solid var(--accent-teal);
    border-radius: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.icon-analytics {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 8px;
    position: relative;
}

.icon-analytics::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 24px;
    background: var(--accent-teal);
    border-radius: 2px;
    bottom: 12px;
    left: 12px;
    box-shadow: 12px 0 0 var(--accent-teal), 24px -8px 0 var(--accent-teal), 36px -4px 0 var(--accent-teal);
}

.icon-analytics::after {
    content: '';
    position: absolute;
    width: 48px;
    height: 2px;
    background: rgba(59, 130, 246, 0.3);
    bottom: 10px;
    left: 8px;
}

.icon-growth {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.icon-growth::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 16px;
    background: var(--accent-teal);
    border-radius: 2px;
    bottom: 12px;
    left: 14px;
    transform: rotate(-15deg);
    box-shadow: 8px -4px 0 var(--accent-teal), 16px -8px 0 var(--accent-teal), 24px -12px 0 var(--accent-teal);
}

.icon-growth::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(--accent-teal);
    top: 16px;
    right: 16px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

.value-card:nth-child(1) { animation-delay: 0.2s; }
.value-card:nth-child(2) { animation-delay: 0.3s; }
.value-card:nth-child(3) { animation-delay: 0.4s; }
.value-card:nth-child(4) { animation-delay: 0.5s; }

/* Sample Content Section */
.sample-content {
    background: transparent;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
}

.sample-content > .container {
    max-width: 100%;
    width: 100%;
    padding: 0;
}

.sample-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.sample-column {
    overflow: hidden;
    max-width: 100%;
    width: 100%;
}

.sample-column h3 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xl);
    text-align: center;
    line-height: 1.2;
    padding: 0 var(--spacing-md);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, var(--accent-primary-light) 50%, var(--accent-teal-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.sample-column h3::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
    border-radius: 2px;
}

.sample-column h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-teal), transparent);
    border-radius: 2px;
}

.sample-intro {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 var(--spacing-md);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Questions & Feedback Marquee */
.questions-marquee,
.feedback-marquee {
    overflow: hidden;
    position: relative;
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    min-height: 200px;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.questions-marquee::before,
.questions-marquee::after,
.feedback-marquee::before,
.feedback-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.questions-marquee::before,
.feedback-marquee::before {
    left: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), transparent);
}

.questions-marquee::after,
.feedback-marquee::after {
    right: 0;
    background: linear-gradient(to left, rgba(0, 0, 0, 0.4), transparent);
}

.marquee-track {
    display: flex;
    gap: var(--spacing-md);
    white-space: nowrap;
    flex-shrink: 0;
    width: max-content;
    will-change: transform;
}

/* Multiple tracks with different speeds and directions - slower */
.questions-track.track-1 {
    animation: scrollQuestions 120s linear infinite;
}

.questions-track.track-2 {
    animation: scrollQuestionsReverse 135s linear infinite;
    animation-delay: -5s;
}

.questions-track.track-3 {
    animation: scrollQuestions 150s linear infinite;
    animation-delay: -8s;
}

.questions-track.track-4 {
    animation: scrollQuestionsReverse 130s linear infinite;
    animation-delay: -12s;
}

.questions-marquee:hover .questions-track {
    animation-play-state: paused;
}

.feedback-track.track-1 {
    animation: scrollFeedback 100s linear infinite;
}

.feedback-track.track-2 {
    animation: scrollFeedbackReverse 110s linear infinite;
    animation-delay: -10s;
}

.feedback-track.track-3 {
    animation: scrollFeedback 120s linear infinite;
    animation-delay: -15s;
}

.feedback-track.track-4 {
    animation: scrollFeedbackReverse 105s linear infinite;
    animation-delay: -20s;
}

.feedback-marquee:hover .feedback-track {
    animation-play-state: paused;
}

.question-item,
.feedback-item {
    display: inline-flex;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Different colors for question items */
/* Different colors for question items - Professional color variety */
.question-item:nth-child(1),
.question-item:nth-child(5),
.question-item:nth-child(9) {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.question-item:nth-child(2),
.question-item:nth-child(6),
.question-item:nth-child(10) {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.question-item:nth-child(3),
.question-item:nth-child(7),
.question-item:nth-child(11) {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.25);
}

.question-item:nth-child(4),
.question-item:nth-child(8),
.question-item:nth-child(12) {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
}

/* Different colors for feedback items - Professional color variety */
.feedback-item:nth-child(1),
.feedback-item:nth-child(5),
.feedback-item:nth-child(9) {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.25);
}

.feedback-item:nth-child(2),
.feedback-item:nth-child(6),
.feedback-item:nth-child(10) {
    background: rgba(6, 182, 212, 0.12);
    border-color: rgba(6, 182, 212, 0.25);
}

.feedback-item:nth-child(3),
.feedback-item:nth-child(7),
.feedback-item:nth-child(11) {
    background: rgba(139, 92, 246, 0.12);
    border-color: rgba(139, 92, 246, 0.25);
}

.feedback-item:nth-child(4),
.feedback-item:nth-child(8),
.feedback-item:nth-child(12) {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
}

/* Rotation classes for irregular angles */
.rotate-1 {
    transform: rotate(-2deg);
}

.rotate-2 {
    transform: rotate(1.5deg);
}

.rotate-3 {
    transform: rotate(-1deg);
}

.question-item.rotate-1,
.feedback-item.rotate-1 {
    transform: rotate(-2deg);
}

.question-item.rotate-2,
.feedback-item.rotate-2 {
    transform: rotate(1.5deg);
}

.question-item.rotate-3,
.feedback-item.rotate-3 {
    transform: rotate(-1deg);
}

.question-item {
    position: relative;
    padding-left: 2.5rem;
}

.question-item::before {
    content: "→";
    position: absolute;
    left: 1rem;
    color: var(--accent-primary);
    font-weight: bold;
}

.feedback-item {
    position: relative;
    padding-left: 2.5rem;
    max-width: 500px;
    white-space: normal;
    word-wrap: break-word;
    min-width: 400px;
}

.feedback-item::before {
    content: "💡";
    position: absolute;
    left: 1rem;
}

.question-item:hover,
.feedback-item:hover {
    background: rgba(0, 212, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    transform: scale(1.05);
    box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

@keyframes scrollQuestions {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollQuestionsReverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

@keyframes scrollFeedback {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollFeedbackReverse {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Who It's For Section */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.audience-card {
    background: var(--card-bg);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.audience-card-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.35;
    z-index: 0;
    mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
}

.card-switchers .audience-card-image {
    width: 120%;
    height: 120%;
    left: -10%;
    top: 0;
    object-position: top center;
    object-fit: cover;
}

.card-students .audience-card-image {
    object-position: top center;
}

.card-professionals .audience-card-image {
    object-position: top center;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-primary), var(--accent-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.audience-card:hover::before {
    transform: scaleX(1);
}

.card-students {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.card-switchers {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.card-professionals {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.02));
}

.audience-card:hover {
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
}

.audience-card:hover .audience-card-image {
    opacity: 0.45;
    transition: opacity 0.4s ease;
}

.audience-icon {
    width: 56px;
    height: 56px;
    margin-bottom: var(--spacing-md);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.1));
    position: relative;
}

.icon-students {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
}

.icon-students::before {
    content: '';
    width: 24px;
    height: 24px;
    border: 3px solid var(--accent-teal);
    border-radius: 50%;
    position: absolute;
}

.icon-students::after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--accent-teal);
    border-radius: 50%;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
}

.icon-switchers {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
}

.icon-switchers::before {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent-teal);
    border-radius: 4px;
    position: absolute;
    transform: rotate(45deg);
}

.icon-switchers::after {
    content: '';
    width: 20px;
    height: 20px;
    border: 3px solid var(--accent-teal);
    border-radius: 4px;
    position: absolute;
    transform: rotate(-45deg);
    opacity: 0.6;
}

.icon-professionals {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(59, 130, 246, 0.15));
}

.icon-professionals::before {
    content: '';
    width: 28px;
    height: 20px;
    border: 3px solid var(--accent-teal);
    border-radius: 4px 4px 0 0;
    position: absolute;
    top: 8px;
}

.icon-professionals::after {
    content: '';
    width: 4px;
    height: 12px;
    background: var(--accent-teal);
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: -8px 0 0 var(--accent-teal), 8px 0 0 var(--accent-teal);
}

.audience-card h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    line-height: 1.3;
    position: relative;
    z-index: 2;
}

.audience-card p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 2;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Trust Section */
.trust {
    padding: var(--spacing-xl) 0;
}

.trust-list {
    list-style: none;
    max-width: 700px;
    margin: var(--spacing-md) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    background: var(--card-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    transition: all 0.3s ease;
}

.trust-list li:hover {
    background: var(--card-bg-hover);
    border-color: rgba(59, 130, 246, 0.2);
}

.trust-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-primary);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-size: 0.875rem;
}

.trust-list p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.9rem;
    margin: 0;
}

/* FAQ Section */
.faq-list {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: var(--card-bg);
    border-radius: var(--radius-md);
    border: 1px solid var(--card-border);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    background: var(--card-bg-hover);
    border-color: rgba(59, 130, 246, 0.2);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    padding: var(--spacing-md) var(--spacing-lg);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question span:first-child {
    flex: 1;
}

.faq-icon {
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--accent-primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.3s ease;
    padding: 0 var(--spacing-lg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
    padding: 0 var(--spacing-lg) var(--spacing-md) var(--spacing-lg);
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.75;
    font-size: 1rem;
    margin: 0;
}

.faq-answer p + p {
    margin-top: var(--spacing-sm);
}

.faq-answer ul {
    margin: var(--spacing-sm) 0;
    padding-left: var(--spacing-lg);
    color: var(--text-secondary);
}

.faq-answer li {
    line-height: 1.75;
    font-size: 1rem;
    margin: var(--spacing-xs) 0;
    color: var(--text-secondary);
}

.faq-answer li strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Early Access Section */
.early-access {
    background: rgba(0, 212, 255, 0.1);
    text-align: center;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

.early-access-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

.early-access-note {
    margin-top: var(--spacing-md);
    font-size: 0.875rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Pricing Section */
.pricing {
    padding: var(--spacing-2xl) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
    align-items: stretch;
    max-width: 100%;
}

.pricing-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-xl);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    min-width: 0;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(59, 130, 246, 0.3);
}

.pricing-card:hover .plan-header-section {
    background: rgba(255, 255, 255, 0.08);
}

.pricing-card-popular {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.95), rgba(30, 30, 50, 0.9));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 32px rgba(59, 130, 246, 0.2), var(--shadow-md);
}

.pricing-card-popular .plan-header-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.6), rgba(30, 30, 50, 0.5));
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.pricing-card-popular .plan-features-section {
    background: rgba(26, 26, 46, 0.4);
}

.pricing-card-popular:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.3), var(--shadow-lg);
    border-color: rgba(59, 130, 246, 0.5);
}

.plan-badge-pill {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 50px;
    white-space: nowrap;
    line-height: 1.2;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
}

.plan-badge-popular {
    position: absolute;
    top: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-light));
    color: #ffffff;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.plan-badge-savings {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
    border: 1px solid rgba(212, 175, 55, 0.3);
    font-size: 0.7rem;
    padding: 6px 14px;
    margin: var(--spacing-sm) 0;
    display: inline-block;
    text-align: center;
    width: fit-content;
    max-width: 100%;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: normal;
    word-wrap: break-word;
}

.plan-header-section {
    padding: var(--spacing-md) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--card-border);
    position: relative;
}

.pricing-card-popular .plan-header-section {
    padding-top: calc(var(--spacing-md) + 28px);
}

.plan-header {
    margin-bottom: 0;
    padding-top: 0;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.375rem;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

.plan-tagline {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0.25rem 0 0 0;
    padding: 0;
}

.plan-price {
    margin: var(--spacing-sm) 0 0 0;
    padding: 0;
    border-bottom: none;
    width: 100%;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    display: block;
    margin: 0;
    letter-spacing: -0.02em;
}

.price-period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 4px 0 0 0;
    display: block;
}

.price-per-mock {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 4px 0 0 0;
    display: block;
    opacity: 0.85;
}

.plan-prepay {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 12px 0 0 0;
    display: block;
    text-align: center;
    line-height: 1.4;
}

.plan-prepay-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: 50px;
    white-space: normal;
    line-height: 1.4;
    width: fit-content;
    max-width: 100%;
    box-sizing: border-box;
    margin: 12px auto 0;
    text-align: center;
    background: rgba(212, 175, 55, 0.12);
    color: #b8860b;
    border: 1px solid rgba(212, 175, 55, 0.25);
}

.plan-prepay-small {
    font-size: 0.75rem;
    color: var(--text-secondary);
    font-weight: 400;
    margin: 4px 0 0 0;
    display: block;
    text-align: center;
    opacity: 0.8;
}

.plan-savings {
    font-size: 0.875rem;
    color: var(--accent-success);
    font-weight: 600;
    margin: var(--spacing-xs) 0 var(--spacing-sm) 0;
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(16, 185, 129, 0.2);
    text-align: center;
}

.plan-features-section {
    padding: var(--spacing-md) var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.02);
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--spacing-sm) 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 0;
}

.plan-features li {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
    padding-left: calc(var(--spacing-md) + 4px);
    padding-right: 0;
    margin: 0;
    position: relative;
}

.plan-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: 700;
    font-size: 1rem;
}

.pricing-card-pro .plan-features li::before {
    color: var(--accent-purple);
}

.btn-pricing {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin-top: auto;
}

.pricing-card-pro {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15), var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.pricing-card-pro .plan-header-section {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(244, 208, 63, 0.05));
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.pricing-card-pro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(139, 92, 246, 0.08) 0%, transparent 50%);
    opacity: 0.6;
    pointer-events: none;
    z-index: 0;
}

.pricing-card-pro > * {
    position: relative;
    z-index: 1;
}

.pricing-card-pro:hover {
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25), var(--shadow-lg);
    transform: translateY(-4px);
}

.pricing-card-pro .plan-name {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 50%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: shimmerGold 3s ease-in-out infinite;
}

@keyframes shimmerGold {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.pricing-card-pro .plan-tagline {
    color: #475569;
}

.pricing-card-pro .price-amount {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-pro .price-period {
    color: #64748b;
}

.pricing-card-pro .price-per-mock {
    color: #64748b;
}

.pricing-card-pro .plan-features li {
    color: #334155;
}

.pricing-card-pro .plan-features li::before {
    color: #d4af37;
}

.pricing-card-pro .plan-features-section {
    background: rgba(255, 255, 255, 0.5);
}

.pricing-card-pro .plan-savings {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #b8860b;
}

.pricing-card-pro .plan-price {
    border-bottom-color: rgba(212, 175, 55, 0.2);
}

.pricing-card-pro .plan-prepay {
    color: #64748b;
}

.pricing-card-pro .plan-prepay-badge {
    background: rgba(212, 175, 55, 0.15);
    color: #b8860b;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: block;
    margin: 12px auto 0;
}

.pricing-card-pro .btn-primary {
    background: linear-gradient(135deg, #d4af37 0%, #f4d03f 100%);
    color: #1e293b;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.4);
}

.pricing-card-pro .btn-primary:hover {
    background: linear-gradient(135deg, #b8860b 0%, #d4af37 100%);
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.5);
    color: #1e293b;
}

.pricing-card-pro .btn-secondary {
    background: transparent;
    color: #334155;
    border: 1.5px solid rgba(212, 175, 55, 0.4);
}

.pricing-card-pro .btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    color: #1e293b;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    padding: var(--spacing-2xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.cta-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
    top: -100px;
    left: 10%;
    animation: floatOrb 15s ease-in-out infinite;
}

.cta-orb-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4) 0%, transparent 70%);
    bottom: -80px;
    right: 15%;
    animation: floatOrb 18s ease-in-out infinite reverse;
}

.final-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3.25rem;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.cta-title span {
    display: block;
}

.cta-gradient-text {
    background: linear-gradient(135deg, var(--accent-primary-light) 0%, var(--accent-teal-light) 50%, var(--accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientFlow 5s ease-in-out infinite;
}

.cta-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.75;
}

/* Footer */
.footer {
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
    border-top: 1px solid var(--card-border);
    color: var(--text-muted);
    background: linear-gradient(180deg, transparent 0%, rgba(10, 22, 40, 0.5) 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-xl);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    height: 50px;
    width: auto;
    margin-bottom: var(--spacing-sm);
}

.footer-tagline {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-primary-light);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--accent-primary-light);
    transform: translateY(-2px);
}

.footer-bottom {
    padding-top: var(--spacing-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design */

/* Tablet - 1024px */
@media (max-width: 1024px) {
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-features {
        gap: var(--spacing-md);
    }
    
    .section-title {
        font-size: 2.5rem;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .sample-grid {
        grid-template-columns: 1fr;
    }

    .question-item,
    .feedback-item {
        font-size: 0.85rem;
        padding: 0.875rem 1.25rem;
    }

    .feedback-item {
        min-width: 300px;
        max-width: 350px;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    /* Hide floating shapes on tablet */
    .floating-shape {
        display: none;
    }
}

/* Mobile - 768px */
@media (max-width: 768px) {
    /* Mobile Navigation */
    .mobile-menu-toggle {
        display: flex;
        order: 2;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 340px;
        height: 100vh;
        height: 100dvh;
        background: linear-gradient(165deg, 
            rgba(15, 23, 42, 0.98) 0%, 
            rgba(20, 35, 60, 0.98) 50%,
            rgba(15, 23, 42, 0.98) 100%);
        backdrop-filter: blur(24px);
        -webkit-backdrop-filter: blur(24px);
        padding: 90px var(--spacing-lg) var(--spacing-xl);
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        border-left: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-menu.nav-menu-open {
        right: 0;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0;
        width: 100%;
        margin-bottom: var(--spacing-md);
    }
    
    .nav-links li {
        width: 100%;
        opacity: 0;
        transform: translateX(20px);
        transition: all 0.3s ease;
    }
    
    .nav-menu.nav-menu-open .nav-links li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .nav-menu.nav-menu-open .nav-links li:nth-child(1) { transition-delay: 0.1s; }
    .nav-menu.nav-menu-open .nav-links li:nth-child(2) { transition-delay: 0.15s; }
    .nav-menu.nav-menu-open .nav-links li:nth-child(3) { transition-delay: 0.2s; }
    .nav-menu.nav-menu-open .nav-links li:nth-child(4) { transition-delay: 0.25s; }
    
    .nav-links a {
        display: flex;
        align-items: center;
        padding: 18px 16px;
        font-size: 1.05rem;
        font-weight: 500;
        color: var(--text-secondary);
        border-radius: var(--radius-sm);
        margin: 2px 0;
        transition: all 0.2s ease;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(59, 130, 246, 0.1);
        color: var(--text-primary);
        padding-left: 20px;
    }
    
    .nav-links a::after {
        display: none;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: var(--spacing-lg);
        padding-top: var(--spacing-md);
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        opacity: 0;
        transform: translateY(10px);
        transition: all 0.3s ease 0.3s;
    }
    
    .nav-menu.nav-menu-open .nav-actions {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Language switcher in mobile menu */
    .nav-actions .language-switcher {
        width: 100%;
        order: -1;
        margin-bottom: 8px;
    }
    
    .nav-actions .language-switcher-btn {
        width: 100%;
        justify-content: center;
        padding: 12px 16px;
        background: rgba(255, 255, 255, 0.05);
    }
    
    .nav-actions .language-switcher-btn .current-language-name {
        max-width: none;
    }
    
    .nav-actions .language-dropdown {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        transform: translate(-50%, -50%) scale(0.95);
        min-width: 240px;
        max-height: 70vh;
    }
    
    .nav-actions .language-dropdown.open {
        transform: translate(-50%, -50%) scale(1);
    }
    
    .nav-actions a {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 24px;
    }
    
    .nav-actions .btn-ghost {
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .nav-actions .btn-primary {
        box-shadow: 0 4px 20px rgba(59, 130, 246, 0.3);
    }
    
    /* Mobile overlay */
    .nav-menu::before {
        content: '';
        position: fixed;
        top: 0;
        left: -100vw;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.6);
        opacity: 0;
        transition: opacity 0.35s ease;
        pointer-events: none;
    }
    
    .nav-menu.nav-menu-open::before {
        opacity: 1;
        pointer-events: auto;
    }
    
    .nav-container {
        justify-content: space-between;
    }
    
    /* Improved hamburger animation */
    .mobile-menu-toggle {
        position: relative;
    }
    
    .mobile-menu-toggle .hamburger-line {
        position: absolute;
        width: 22px;
        height: 2px;
        background: var(--text-primary);
        border-radius: 2px;
        transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }
    
    .mobile-menu-toggle .hamburger-line:nth-child(1) {
        top: 14px;
    }
    
    .mobile-menu-toggle .hamburger-line:nth-child(2) {
        top: 21px;
    }
    
    .mobile-menu-toggle .hamburger-line:nth-child(3) {
        top: 28px;
    }
    
    .mobile-menu-toggle.menu-open .hamburger-line:nth-child(1) {
        top: 21px;
        transform: rotate(45deg);
    }
    
    .mobile-menu-toggle.menu-open .hamburger-line:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .mobile-menu-toggle.menu-open .hamburger-line:nth-child(3) {
        top: 21px;
        transform: rotate(-45deg);
    }

    .logo-img {
        height: 50px;
    }

    /* Hero Mobile */
    .hero {
        padding: var(--spacing-xl) 0;
        min-height: auto;
        padding-top: calc(var(--spacing-xl) + 60px);
    }

    .hero-text h1 {
        font-size: 2.5rem;
        line-height: 1.15;
    }
    
    .hero-line {
        display: inline;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
    }
    
    .hero-features {
        flex-direction: column;
        gap: var(--spacing-sm);
        align-items: stretch;
    }
    
    .hero-feature {
        justify-content: center;
    }

    .hero-ctas {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .hero-ctas a {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .btn-large {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    /* Floating elements mobile */
    .floating-orb {
        opacity: 0.3;
    }
    
    .orb-1 {
        width: 250px;
        height: 250px;
    }
    
    .orb-2 {
        width: 200px;
        height: 200px;
    }
    
    .orb-3 {
        width: 220px;
        height: 220px;
    }
    
    .floating-shape {
        display: none;
    }

    /* Section Mobile */
    .section-title {
        font-size: 2rem;
    }

    .intro {
        padding: var(--spacing-xl) 0;
    }

    .intro-content p {
        font-size: 1rem;
    }

    .pill {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2rem;
    }

    .container {
        padding: 0 var(--spacing-md);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .pricing-card {
        padding: var(--spacing-md);
    }

    .plan-name {
        font-size: 1.25rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    .plan-badge-pill {
        font-size: 0.65rem;
        padding: 4px 10px;
    }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
    .logo-img {
        height: 45px;
    }

    /* Hero Small Mobile */
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-badge {
        font-size: 0.65rem;
        padding: 6px 12px;
        letter-spacing: 0.5px;
    }
    
    .hero-features {
        gap: var(--spacing-xs);
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 6px 12px;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }
    
    /* Reduce animation on small screens */
    .floating-orb {
        opacity: 0.2;
        animation: none;
    }
    
    .anim-fade-up {
        animation-duration: 0.6s;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .pricing-card {
        padding: var(--spacing-sm) var(--spacing-md);
    }

    .plan-name {
        font-size: 1.125rem;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .plan-features li {
        font-size: 0.875rem;
    }

    .plan-badge-pill {
        font-size: 0.6rem;
        padding: 3px 8px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .step-card,
    .value-card,
    .audience-card {
        padding: var(--spacing-md);
    }
    
    .faq-question {
        padding: var(--spacing-sm) var(--spacing-md);
        font-size: 0.95rem;
    }
    
    .faq-answer {
        padding: 0 var(--spacing-md);
    }
    
    .faq-item.active .faq-answer {
        padding: 0 var(--spacing-md) var(--spacing-sm);
    }
}

/* ==========================================
   Cookie Consent Banner & Modal
   ========================================== */

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.98), rgba(30, 41, 59, 0.98));
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 24px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 16px;
    max-width: 1200px;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    min-width: 200px;
}

.cookie-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.cookie-link {
    background: none;
    border: none;
    color: var(--accent-primary-light);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    padding: 0;
    transition: color 0.2s;
}

.cookie-link:hover {
    color: var(--accent-primary);
}

.cookie-accept-btn {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-primary-dark));
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.cookie-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

/* Cookie Policy Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
}

.cookie-modal-content {
    position: relative;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 32px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.cookie-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    color: var(--text-secondary);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}

.cookie-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.cookie-modal-content h2 {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin: 0 0 24px 0;
    padding-right: 40px;
}

.cookie-policy-section {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-policy-section:last-of-type {
    border-bottom: none;
    margin-bottom: 16px;
    padding-bottom: 0;
}

.cookie-policy-section h3 {
    color: var(--accent-primary-light);
    font-size: 1rem;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.cookie-policy-section p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 12px 0;
}

.cookie-policy-section ul {
    margin: 0;
    padding-left: 20px;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.cookie-policy-section li {
    margin-bottom: 6px;
}

.cookie-policy-section li strong {
    color: var(--text-secondary);
}

.cookie-policy-section a {
    color: var(--accent-primary-light);
    text-decoration: none;
}

.cookie-policy-section a:hover {
    text-decoration: underline;
}

.cookie-note {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 0.85rem !important;
    color: #10b981 !important;
}

.cookie-modal-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile adjustments for cookie banner */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .cookie-text {
        font-size: 0.85rem;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-content {
        padding: 24px;
        margin: 10px;
        max-height: 90vh;
    }
    
    .cookie-modal-content h2 {
        font-size: 1.25rem;
    }
}