:root {
    /* Premium Color System */
    --color-primary: #0f172a;
    --color-primary-light: #1e293b;
    --color-primary-lighter: #334155;
    --color-primary-lightest: #64748b;
    --color-surface: #ffffff;
    --color-surface-muted: #f8fafc;
    --color-surface-subtle: #f1f5f9;
    --color-surface-elevated: #ffffff;
    --color-text-primary: #0f172a;
    --color-text-secondary: #334155;
    --color-text-muted: #64748b;
    --color-border: #e2e8f0;
    --color-border-muted: #cbd5e0;
    --color-success: #10b981;
    --color-error: #ef4444;
    --color-warning: #f59e0b;
    --color-info: #3b82f6;
    
    /* Premium Accent Colors */
    --color-accent-premium: #FF9900;
    --color-accent-premium-light: #FFB84D;
    --color-accent-premium-dark: #CC7700;
    --color-accent-platinum: #e5e7eb;
    --color-accent-navy: #1e3a8a;
    
    /* Premium Gradients */
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    --gradient-luxury: linear-gradient(135deg, #1e3a8a 0%, #3730a3 50%, #581c87 100%);
    --gradient-surface: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    --gradient-accent: linear-gradient(135deg, #FF9900 0%, #FFB84D 100%);
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    
    /* Premium Typography System */
    --font-family-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    --font-size-6xl: 3.75rem;     /* 60px */
    --font-size-7xl: 4.5rem;      /* 72px */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;
    
    /* Premium Letter Spacing */
    --letter-spacing-tighter: -0.05em;
    --letter-spacing-tight: -0.025em;
    --letter-spacing-normal: 0em;
    --letter-spacing-wide: 0.025em;
    --letter-spacing-wider: 0.05em;
    --letter-spacing-widest: 0.1em;
    
    /* Premium Shadow System */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Premium Layered Shadows */
    --shadow-luxury: 0 4px 14px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.06), 0 1px 2px 0 rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 8px 32px rgba(0, 0, 0, 0.12), 0 4px 16px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-elite: 0 16px 64px rgba(0, 0, 0, 0.15), 0 8px 32px rgba(0, 0, 0, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
    
    /* Glassmorphism Effects */
    --glass-light: rgba(255, 255, 255, 0.1);
    --glass-medium: rgba(255, 255, 255, 0.15);
    --glass-heavy: rgba(255, 255, 255, 0.25);
    --backdrop-blur-sm: blur(4px);
    --backdrop-blur-md: blur(8px);
    --backdrop-blur-lg: blur(16px);
    --backdrop-blur-xl: blur(24px);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-base: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    height: 100%;
}

body {
    font-family: var(--font-family-sans);
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 50%, #f1f5f9 100%);
    font-weight: 400;
    font-size: var(--font-size-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1, "calt" 1;
    min-height: 100%;
    overflow-x: hidden;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--color-primary);
    color: var(--color-surface);
    padding: var(--space-sm) var(--space-md);
    text-decoration: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    z-index: 9999;
    transition: top var(--transition-fast);
}

.skip-link:focus {
    top: 6px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

*:focus-visible {
    outline: 2px solid var(--color-info);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

*:focus {
    outline: none;
}

/* Premium Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-display);
    font-weight: 600;
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-lg);
    color: var(--color-text-primary);
    letter-spacing: var(--letter-spacing-tight);
    text-rendering: optimizeLegibility;
}

h1 {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-6xl));
    font-weight: 800;
    letter-spacing: var(--letter-spacing-tighter);
    line-height: var(--line-height-tight);
}

h2 {
    font-size: clamp(var(--font-size-3xl), 4vw, var(--font-size-5xl));
    font-weight: 700;
    letter-spacing: var(--letter-spacing-tight);
}

h3 {
    font-size: clamp(var(--font-size-xl), 3vw, var(--font-size-3xl));
    font-weight: 600;
    letter-spacing: var(--letter-spacing-tight);
}

p {
    margin-bottom: var(--space-lg);
    font-size: var(--font-size-lg);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    font-weight: 400;
    letter-spacing: var(--letter-spacing-normal);
}

/* Premium Text Variants */
.text-display {
    font-family: var(--font-family-display);
    font-weight: 800;
    letter-spacing: var(--letter-spacing-tighter);
    line-height: var(--line-height-tight);
}

.text-luxury {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Premium Button System */
.btn-primary, .btn-secondary, .btn-luxury {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    letter-spacing: var(--letter-spacing-wide);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
    min-height: 52px;
    position: relative;
    overflow: hidden;
    font-family: var(--font-family-display);
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-surface);
    font-weight: 700;
    box-shadow: var(--shadow-luxury);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

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

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

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

.btn-secondary {
    background: var(--gradient-surface);
    color: var(--color-primary);
    border: 2px solid var(--color-border-muted);
    font-weight: 600;
    box-shadow: var(--shadow-base);
}

/* Secondary button on hero section needs better contrast */
.hero .btn-secondary {
    color: var(--color-surface);
    border: 2px solid var(--glass-medium);
    background: var(--glass-light);
    backdrop-filter: var(--backdrop-blur-md);
    box-shadow: var(--shadow-luxury);
}

.btn-secondary:hover {
    background: var(--gradient-primary);
    color: var(--color-surface);
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
    border-color: var(--color-primary);
}

.hero .btn-secondary:hover {
    background: var(--glass-medium);
    border: 2px solid var(--glass-heavy);
    color: var(--color-surface);
    backdrop-filter: var(--backdrop-blur-lg);
    box-shadow: var(--shadow-premium);
}

/* Premium Button Variants */
.btn-luxury {
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%),
        #ffffff;
    color: #1a1a1a;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset,
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    backdrop-filter: blur(20px) saturate(1.8);
    position: relative;
    isolation: isolate;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.15) 50%, 
        transparent 100%
    );
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-luxury::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-luxury:hover {
    transform: translateY(-2px);
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%),
        #ffffff;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset,
        0 8px 32px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 153, 0, 0.4);
    border-color: rgba(255, 153, 0, 0.6);
}

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

.btn-luxury:hover::after {
    width: 200px;
    height: 200px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: var(--backdrop-blur-xl);
    box-shadow: var(--shadow-premium);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-md) var(--space-xl);
    max-width: 1200px;
    margin: 0 auto;
    min-height: 80px;
}

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

.nav-logo {
    color: var(--color-surface);
    transition: all var(--transition-base);
}

.nav-brand h1 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0;
    color: var(--color-surface);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-cta {
    display: flex;
    align-items: center;
}

.nav-book-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    padding: var(--space-sm) calc(var(--space-lg) + 4px) var(--space-sm) var(--space-lg);
    min-height: 44px;
    border-radius: var(--radius-lg);
    font-weight: 600;
    letter-spacing: var(--letter-spacing-wide);
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 100%),
        rgba(255, 255, 255, 0.9);
    color: #1a1a1a;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.08) inset,
        0 3px 12px rgba(0, 0, 0, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-shadow: none;
    backdrop-filter: blur(12px) saturate(1.1);
    position: relative;
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
}

.nav-book-call:hover {
    transform: translateY(-1px);
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%),
        rgba(255, 255, 255, 0.95);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset,
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 153, 0, 0.3);
    border-color: rgba(255, 153, 0, 0.4);
}

.btn-icon {
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.nav-book-call .btn-icon {
    margin-left: -4px;
    margin-right: 2px;
    filter: invert(1) brightness(0.2);
}

.btn-luxury .btn-icon {
    filter: invert(1) brightness(0.2);
}

.nav-book-call:hover .btn-icon {
    transform: scale(1.15) rotate(5deg);
    filter: invert(1) brightness(0.1);
}

.btn-luxury:hover .btn-icon {
    transform: scale(1.15) rotate(-3deg);
    filter: invert(1) brightness(0.1);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--color-surface);
    font-weight: 500;
    transition: all var(--transition-base);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-links a:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-1px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    background: transparent;
    border: none;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background-color: var(--color-surface);
    margin: 3px 0;
    transition: all var(--transition-base);
    border-radius: 1px;
}

/* Premium Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    background: 
        radial-gradient(ellipse 1200px 800px at top center, rgba(255, 153, 0, 0.08) 0%, rgba(255, 153, 0, 0.02) 30%, transparent 60%),
        radial-gradient(circle 600px at 85% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(circle 400px at 15% 85%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
        radial-gradient(ellipse 1000px 300px at 50% 100%, rgba(255, 153, 0, 0.03) 0%, transparent 40%),
        linear-gradient(135deg, #070b14 0%, #0a0f1c 20%, #0f172a 40%, #1a202c 60%, #0f172a 80%, #070b14 100%);
    position: relative;
    overflow: hidden;
    color: var(--color-surface);
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 1px,
            rgba(255, 255, 255, 0.008) 1px,
            rgba(255, 255, 255, 0.008) 2px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 1px,
            rgba(255, 153, 0, 0.006) 1px,
            rgba(255, 153, 0, 0.006) 2px
        ),
        linear-gradient(
            0deg,
            rgba(0, 0, 0, 0.1) 0%,
            transparent 20%,
            transparent 80%,
            rgba(0, 0, 0, 0.1) 100%
        );
    pointer-events: none;
    animation: subtleShimmer 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle 500px at 25% 25%, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 40%, transparent 70%),
        radial-gradient(circle 400px at 75% 75%, rgba(255, 153, 0, 0.03) 0%, rgba(255, 153, 0, 0.01) 40%, transparent 70%),
        radial-gradient(circle 300px at 10% 70%, rgba(255, 255, 255, 0.02) 0%, transparent 60%),
        radial-gradient(circle 350px at 90% 30%, rgba(255, 153, 0, 0.02) 0%, transparent 60%);
    pointer-events: none;
    opacity: 0.8;
    animation: ambientPulse 15s ease-in-out infinite alternate;
}

@keyframes subtleShimmer {
    0%, 100% {
        opacity: 0.3;
        transform: translateX(-2px);
    }
    50% {
        opacity: 0.7;
        transform: translateX(2px);
    }
}

@keyframes ambientPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }
    100% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

.hero-status {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-xl);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--color-error);
    border-radius: var(--radius-full);
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    margin-bottom: var(--space-xl);
    color: var(--color-surface);
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    line-height: var(--line-height-tight);
    letter-spacing: var(--letter-spacing-tighter);
    font-family: var(--font-family-display);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}


.title-line.highlight {
    color: #ffffff;
    position: relative;
    display: inline-block;
    font-weight: 300;
    letter-spacing: -0.02em;
}

.title-line.highlight::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 153, 0, 0.8);
    animation: sweepUnderline 0.8s cubic-bezier(0.4, 0, 0.2, 1) 1.2s forwards;
}

@keyframes sweepUnderline {
    0% {
        width: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        width: 100%;
        opacity: 0.6;
    }
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto var(--space-2xl);
    line-height: var(--line-height-relaxed);
    font-weight: 300;
}

.hero-metrics {
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.metric-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--glass-light);
    backdrop-filter: var(--backdrop-blur-lg);
    border-radius: 20px;
    border: 1px solid var(--glass-medium);
    flex: 1;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.metric-card:hover {
    background: var(--glass-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-luxury);
}

.metric-card:hover::before {
    opacity: 0.3;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.5rem;
    line-height: 1;
    font-family: var(--font-family-display);
    letter-spacing: var(--letter-spacing-tight);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: var(--letter-spacing-wide);
    text-transform: uppercase;
}

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

.hero-trust {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.7);
    margin-top: var(--space-xl);
    font-weight: 400;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    animation: float 12s ease-in-out infinite, fadeInFloat 1.2s ease-out forwards;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(20px);
}

.floating-1 { 
    top: 15%; 
    left: 8%; 
    animation-delay: 1.5s, 1.5s;
    animation-duration: 10s, 1.2s;
}

.floating-2 { 
    top: 25%; 
    right: 12%; 
    animation-delay: 2s, 2s;
    animation-duration: 12s, 1.2s;
}

.floating-3 { 
    top: 45%; 
    left: 5%; 
    animation-delay: 2.5s, 2.5s;
    animation-duration: 8s, 1.2s;
}

.floating-4 { 
    top: 65%; 
    right: 8%; 
    animation-delay: 3s, 3s;
    animation-duration: 11s, 1.2s;
}

.floating-5 { 
    top: 35%; 
    left: 85%; 
    animation-delay: 3.5s, 3.5s;
    animation-duration: 9s, 1.2s;
}

.floating-6 { 
    top: 75%; 
    left: 15%; 
    animation-delay: 4s, 4s;
    animation-duration: 10s, 1.2s;
}

@keyframes fadeInFloat {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.6;
        transform: translateY(0px);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) translateX(0px) rotate(0deg); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-8px) translateX(3px) rotate(0.5deg); 
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-4px) translateX(-2px) rotate(-0.3deg); 
        opacity: 0.65;
    }
    75% { 
        transform: translateY(-10px) translateX(4px) rotate(0.4deg); 
        opacity: 0.7;
    }
}

/* Premium Services Section */
.services {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 1000px 400px at 50% 0%, rgba(255, 153, 0, 0.02) 0%, transparent 60%),
        radial-gradient(circle 300px at 15% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 50%),
        radial-gradient(circle 400px at 85% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        linear-gradient(180deg, #fafbfc 0%, #ffffff 50%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent 0px,
            transparent 80px,
            rgba(255, 255, 255, 0.3) 80px,
            rgba(255, 255, 255, 0.3) 81px
        );
    pointer-events: none;
    opacity: 0.5;
}

.services-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, #edf2f7 0%, #e2e8f0 100%);
    border: 1px solid #cbd5e0;
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
    box-shadow: var(--shadow-sm);
}

.services-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.services-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 32px;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    text-align: left;
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset,
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 4px 16px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px) saturate(1.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 153, 0, 0.8) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(0, 0, 0, 0.03) inset,
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.3);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 72px;
    height: 72px;
    margin-bottom: var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    border-radius: 24px;
    color: var(--color-primary);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.1) inset,
        0 4px 16px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    background: 
        linear-gradient(180deg, rgba(255, 153, 0, 0.9) 0%, rgba(255, 153, 0, 0.7) 100%);
    color: var(--color-surface);
    border-color: rgba(255, 153, 0, 0.6);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.3) inset,
        0 -1px 0 rgba(0, 0, 0, 0.2) inset,
        0 8px 32px rgba(255, 153, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    margin-bottom: 1rem;
    color: #1a202c;
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 1.3;
}

.service-card p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2d3748;
    transition: all var(--transition-fast);
}

.feature-tag:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Premium Live Demo Section */
.live-demo {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 800px 400px at 50% 100%, rgba(255, 153, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle 500px at 20% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle 400px at 80% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        linear-gradient(180deg, #f8f9fa 0%, #ffffff 30%, #fafbfc 70%, #f8f9fa 100%);
    position: relative;
}

.live-demo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            45deg,
            transparent 0px,
            transparent 100px,
            rgba(255, 255, 255, 0.2) 100px,
            rgba(255, 255, 255, 0.2) 101px
        );
    pointer-events: none;
    opacity: 0.4;
}

.demo-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.demo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(45, 55, 72, 0.05) 100%);
    border: 1px solid rgba(74, 85, 104, 0.15);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
    box-shadow: var(--shadow-sm);
}

.demo-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.demo-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.demo-dashboard {
    max-width: 1200px;
    margin: 0 auto;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 0 rgba(255, 255, 255, 0.8) inset,
        0 -2px 0 rgba(0, 0, 0, 0.05) inset,
        0 20px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(40px) saturate(1.8);
    overflow: hidden;
    position: relative;
}

.demo-dashboard::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 153, 0, 0.3) 20%, 
        rgba(255, 153, 0, 0.8) 50%, 
        rgba(255, 153, 0, 0.3) 80%, 
        transparent 100%
    );
}

.dashboard-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.tab-btn {
    flex: 1;
    padding: 2rem 2.5rem;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-text-secondary);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    letter-spacing: var(--letter-spacing-wide);
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: rgba(255, 153, 0, 0.8);
    transform: translateX(-50%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tab-btn.active {
    color: var(--color-text-primary);
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.4) 100%);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 4px 16px rgba(0, 0, 0, 0.06);
}

.tab-btn.active::before {
    width: 60%;
}

.dashboard-content {
    padding: 2rem;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem;
    background: var(--gradient-surface);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    transition: all var(--transition-base);
    box-shadow: var(--shadow-luxury);
    position: relative;
    overflow: hidden;
}

.metric-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.metric-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(212, 175, 55, 0.2);
}

.metric-item:hover::before {
    opacity: 0.4;
}

.metric-icon {
    font-size: 2rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.1) 0%, rgba(45, 55, 72, 0.05) 100%);
    border-radius: 12px;
    flex-shrink: 0;
}

.metric-info {
    flex: 1;
}

.metric-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.25rem;
}

.metric-text {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.metric-trend {
    font-size: 0.75rem;
    color: #22c55e;
    font-weight: 600;
}

/* Premium Transformation Section */
.transformation {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 1000px 300px at 50% 0%, rgba(255, 153, 0, 0.04) 0%, transparent 60%),
        radial-gradient(circle 400px at 10% 100%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle 500px at 90% 100%, rgba(255, 255, 255, 0.2) 0%, transparent 50%),
        linear-gradient(180deg, #f7fafc 0%, #edf2f7 30%, #f1f5f9 70%, #f7fafc 100%);
    position: relative;
}

.transformation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            135deg,
            transparent 0px,
            transparent 120px,
            rgba(255, 255, 255, 0.15) 120px,
            rgba(255, 255, 255, 0.15) 122px
        );
    pointer-events: none;
    opacity: 0.6;
}

.transformation-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.transformation-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(45, 55, 72, 0.05) 100%);
    border: 1px solid rgba(74, 85, 104, 0.15);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
    box-shadow: var(--shadow-sm);
}

.transformation-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.transformation-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.comparison-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 3rem;
    align-items: start;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 100%);
    border-radius: 40px;
    padding: 3rem;
    box-shadow: 
        0 2px 0 rgba(255, 255, 255, 0.8) inset,
        0 -2px 0 rgba(0, 0, 0, 0.05) inset,
        0 20px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(40px) saturate(1.8);
}

.comparison-side {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    min-height: 500px;
}

.side-header {
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.side-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    transition: all var(--transition-base);
}

.problem-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.solution-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.side-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.side-subtitle {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-weight: 400;
}

.comparison-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    flex: 1;
}

.comparison-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    min-height: 100px;
}

.problem-item {
    background: rgba(239, 68, 68, 0.03);
    border: 1px solid rgba(239, 68, 68, 0.1);
}

.solution-item {
    background: rgba(34, 197, 94, 0.03);
    border: 1px solid rgba(34, 197, 94, 0.1);
}

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

.item-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all var(--transition-base);
}

.problem-item .item-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.solution-item .item-icon {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
}

.comparison-item:hover .item-icon {
    transform: scale(1.1);
}

.item-content {
    flex: 1;
}

.item-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.item-content p {
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
    margin: 0;
    font-weight: 400;
}

.comparison-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    align-self: center;
    margin: 0;
}

.divider-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
}

.divider-arrow {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: var(--shadow-xl);
    transition: all var(--transition-base);
}

.divider-arrow img {
    margin-left: -2px;
    margin-top: 2px;
}

.divider-arrow:hover {
    transform: scale(1.1);
}

/* Premium Social Proof Section */
.social-proof {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 800px 400px at 50% 0%, rgba(255, 153, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle 600px at 20% 80%, rgba(255, 255, 255, 0.4) 0%, transparent 40%),
        radial-gradient(circle 500px at 80% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 50%, #ffffff 100%);
    position: relative;
}

.proof-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.proof-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.proof-header p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    font-weight: 400;
}

.client-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.logo-item {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    border-radius: 16px;
    border: 1px solid rgba(226, 232, 240, 0.8);
    transition: all var(--transition-base);
    min-width: 150px;
}

.logo-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.logo-placeholder {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 0.5rem;
}

.logo-stats {
    font-size: 0.9rem;
    color: #4a5568;
    font-weight: 500;
}

.testimonial-highlight {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 0 rgba(255, 255, 255, 0.8) inset,
        0 -2px 0 rgba(0, 0, 0, 0.05) inset,
        0 24px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(40px) saturate(1.8);
    position: relative;
}

.testimonial-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 153, 0, 0.4) 30%, 
        rgba(255, 153, 0, 0.8) 50%, 
        rgba(255, 153, 0, 0.4) 70%, 
        transparent 100%
    );
}

.testimonial-highlight blockquote {
    font-size: 1.4rem;
    font-style: italic;
    color: #1a202c;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 400;
}

.testimonial-author strong {
    display: block;
    font-size: 1.1rem;
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #4a5568;
    font-size: 1rem;
    font-weight: 500;
}

/* Premium Process Section */
.process {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 1000px 400px at 50% 100%, rgba(255, 153, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle 400px at 10% 20%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle 500px at 90% 80%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        linear-gradient(180deg, #ffffff 0%, #f7fafc 30%, #f1f5f9 70%, #ffffff 100%);
    position: relative;
}

.process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent 0px,
            transparent 150px,
            rgba(255, 255, 255, 0.2) 150px,
            rgba(255, 255, 255, 0.2) 152px
        );
    pointer-events: none;
    opacity: 0.4;
}

.process-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.process-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(45, 55, 72, 0.05) 100%);
    border: 1px solid rgba(74, 85, 104, 0.15);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
    box-shadow: var(--shadow-sm);
}

.process-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.process-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.process-timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 20%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.1) 80%, transparent 100%);
    transform: translateX(-50%);
    z-index: 1;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset,
        0 16px 64px rgba(0, 0, 0, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px) saturate(1.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-step::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(180deg, 
        rgba(255, 153, 0, 0.8) 0%, 
        rgba(255, 153, 0, 0.4) 50%, 
        rgba(255, 153, 0, 0.8) 100%
    );
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-step:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(0, 0, 0, 0.03) inset,
        0 24px 80px rgba(0, 0, 0, 0.10),
        0 12px 40px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 153, 0, 0.2);
    border-color: rgba(255, 153, 0, 0.3);
}

.process-step:hover::before {
    width: 3px;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
}

.step-content {
    flex: 1;
    text-align: left;
}

.process-step:nth-child(even) .step-content {
    text-align: right;
}

.step-content h3 {
    color: #1a202c;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.step-content p {
    color: #4a5568;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.step-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.process-step:nth-child(even) .step-details {
    justify-content: flex-end;
}

.detail-tag {
    display: inline-block;
    padding: 5px 12px;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(45, 55, 72, 0.05) 100%);
    border: 1px solid rgba(74, 85, 104, 0.15);
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: #2d3748;
    transition: all var(--transition-base);
}

.detail-tag:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

/* Premium Engagement Section */
.engagement {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 800px 300px at 50% 50%, rgba(255, 153, 0, 0.02) 0%, transparent 50%),
        linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
}

.engagement-card {
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.85) 100%);
    padding: 4rem;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 2px 0 rgba(255, 255, 255, 0.8) inset,
        0 -2px 0 rgba(0, 0, 0, 0.05) inset,
        0 24px 80px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(40px) saturate(1.8);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.engagement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 153, 0, 0.4) 30%, 
        rgba(255, 153, 0, 0.8) 50%, 
        rgba(255, 153, 0, 0.4) 70%, 
        transparent 100%
    );
}

.engagement-card h2 {
    color: #1a202c;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.engagement-card p {
    color: #4a5568;
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.engagement-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Premium FAQs Section */
.faqs {
    padding: 120px 0;
    background: 
        radial-gradient(ellipse 1000px 400px at 50% 0%, rgba(255, 153, 0, 0.02) 0%, transparent 50%),
        radial-gradient(circle 500px at 15% 100%, rgba(255, 255, 255, 0.3) 0%, transparent 40%),
        radial-gradient(circle 400px at 85% 100%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
        linear-gradient(180deg, #f7fafc 0%, #edf2f7 30%, #f1f5f9 70%, #f7fafc 100%);
    position: relative;
}

.faqs::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            -45deg,
            transparent 0px,
            transparent 80px,
            rgba(255, 255, 255, 0.1) 80px,
            rgba(255, 255, 255, 0.1) 82px
        );
    pointer-events: none;
    opacity: 0.5;
}

.faqs-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.faqs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(45, 55, 72, 0.05) 100%);
    border: 1px solid rgba(74, 85, 104, 0.15);
    border-radius: 25px;
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: #2d3748;
    box-shadow: var(--shadow-sm);
}

.faqs-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faqs-header p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.faq-categories {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.faq-category {
    margin-bottom: 2rem;
}

.category-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.8) inset,
        0 -1px 0 rgba(0, 0, 0, 0.05) inset,
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 4px 16px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(20px) saturate(1.8);
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: rgba(255, 153, 0, 0.8);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item:hover {
    box-shadow: 
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 -1px 0 rgba(0, 0, 0, 0.03) inset,
        0 16px 64px rgba(0, 0, 0, 0.08),
        0 8px 32px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
    border-color: rgba(255, 153, 0, 0.2);
}

.faq-item:hover::before {
    width: 2px;
}

.faq-item.active {
    border-color: rgba(74, 85, 104, 0.2);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

.faq-question:hover {
    background: rgba(74, 85, 104, 0.02);
}

.faq-question h4 {
    color: #1a202c;
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 1rem;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.08) 0%, rgba(45, 55, 72, 0.05) 100%);
    border-radius: 8px;
    transition: all var(--transition-base);
    flex-shrink: 0;
    border: 1px solid rgba(74, 85, 104, 0.1);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: linear-gradient(135deg, rgba(74, 85, 104, 0.15) 0%, rgba(45, 55, 72, 0.12) 100%);
}

.toggle-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: #2d3748;
    transition: transform var(--transition-fast);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), opacity var(--transition-fast);
    background: rgba(74, 85, 104, 0.02);
    opacity: 0;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    opacity: 1;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: #4a5568;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 400;
}

/* Premium Final CTA Section */
.final-cta {
    padding: 100px 0;
    background: 
        radial-gradient(ellipse at center top, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.final-cta h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.final-cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.final-cta .btn-primary {
    background: var(--gradient-surface);
    color: var(--color-primary);
    font-weight: 700;
    box-shadow: var(--shadow-elite);
    border: 2px solid var(--glass-medium);
}

.final-cta .btn-primary .btn-icon {
    filter: invert(1) brightness(0.2);
}

.final-cta .btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(255, 255, 255, 0.4);
    border-color: var(--color-accent-gold);
}

.cta-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 500;
}

.note-icon {
    font-size: 1rem;
}

/* Premium Footer */
.footer {
    padding: var(--space-4xl) 0 var(--space-xl) 0;
    background: 
        radial-gradient(ellipse 800px 200px at 50% 0%, rgba(255, 153, 0, 0.015) 0%, transparent 50%),
        linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 50%, #f1f5f9 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 153, 0, 0.3) 30%, 
        rgba(255, 153, 0, 0.6) 50%, 
        rgba(255, 153, 0, 0.3) 70%, 
        transparent 100%
    );
}

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

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

.footer-social a {
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
    padding: var(--space-xs);
    border-radius: var(--radius-sm);
}

.footer-social a:hover {
    color: var(--color-text-primary);
    transform: translateY(-1px);
}

.footer-brand h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--color-text-primary);
    margin: 0 0 var(--space-sm) 0;
}

.footer-logo {
    filter: invert(1);
}

.footer-tagline {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
    font-weight: 500;
}

.footer-nav {
    flex-shrink: 0;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-links a {
    text-decoration: none;
    color: var(--color-text-secondary);
    font-weight: 500;
    transition: color var(--transition-base);
    padding: var(--space-xs) 0;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
    gap: var(--space-lg);
}

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

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

.footer-legal a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: none;
    }
    
    .nav-cta {
        display: flex;
    }
    
    .nav-book-call {
        font-size: var(--font-size-xs);
        padding: var(--space-xs) var(--space-sm);
        min-height: 36px;
    }
    
    .hero-metrics {
        flex-direction: column;
        gap: 1rem;
        max-width: 280px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        width: 100%;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary,
    .hero-actions .btn-luxury {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        min-height: 56px;
        font-size: var(--font-size-lg);
    }
    
    .floating-element {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .comparison-divider {
        flex-direction: row;
        gap: 1rem;
        margin: 1rem 0;
        order: 0;
    }
    
    .divider-line {
        width: 60px;
        height: 1px;
        background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);
    }
    
    .divider-arrow svg {
        transform: rotate(180deg) !important;
    }
    
    .process-steps {
        gap: 1.5rem;
    }
    
    .process-step {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .step-content {
        text-align: center !important;
    }
    
    .step-details {
        justify-content: center !important;
    }
    
    .timeline-line {
        display: none;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Legal pages mobile */
    .legal-document {
        padding: 100px 0 60px 0;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-header {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
    
    .legal-section {
        margin-bottom: 2rem;
    }
    
    .legal-section h2 {
        font-size: var(--font-size-xl);
    }
    
    .legal-section h3 {
        font-size: var(--font-size-lg);
        margin-top: 1.5rem;
    }
    
    .legal-footer {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .legal-footer .btn-primary,
    .legal-footer .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .metric-card {
        padding: 1rem 0.75rem;
    }
    
    .metric-value {
        font-size: 1.75rem;
    }
    
    .service-card, .engagement-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .metric-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .metric-value {
        font-size: 2rem;
    }
    
    .btn-primary, .btn-secondary, .btn-luxury {
        min-height: 52px;
        padding: var(--space-md) var(--space-lg);
        border-radius: var(--radius-md);
    }
    
    .comparison-grid {
        padding: 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    /* Legal pages mobile */
    .legal-content {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Legal Pages Styling */
.legal-document {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f7fafc 100%);
    min-height: 100vh;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--color-border);
}

.legal-header h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: var(--line-height-tight);
}

.legal-updated {
    font-size: var(--font-size-base);
    color: var(--color-text-muted);
    font-weight: 500;
    margin: 0;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-surface);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--color-surface-subtle);
}

.legal-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.legal-section p {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.legal-section ul,
.legal-section ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-section li {
    font-size: var(--font-size-base);
    line-height: var(--line-height-relaxed);
    color: var(--color-text-secondary);
    margin-bottom: 0.5rem;
}

.legal-section ul li {
    list-style-type: disc;
}

.legal-section ol li {
    list-style-type: decimal;
}

.contact-info {
    background: var(--color-surface-muted);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-primary);
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.legal-footer {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-footer .btn-primary,
.legal-footer .btn-secondary {
    min-width: 160px;
}


/* Premium Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
    }
}

/* Premium Loading Animation */
.btn-primary.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 100%
    );
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Smooth Entrance Animations */
.animate-in {
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.animate-scale {
    animation: fadeInScale 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .floating-element {
        animation: none !important;
        transform: none !important;
    }
}