:root {
    --primary-blue: #3b82f6;
    --primary-indigo: #6366f1;
    --primary-purple: #8b5cf6;
    --secondary-slate: #64748b;
    --accent-teal: #14b8a6;
    --surface-glass: rgba(255, 255, 255, 0.25);
    --surface-frost: rgba(255, 255, 255, 0.15);
    --border-glass: rgba(255, 255, 255, 0.2);
    --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glass: 0 8px 32px rgba(31, 38, 135, 0.15);
    --backdrop-blur: blur(20px);
}

* {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.hero-gradient {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 0.95) 0%,
        rgba(241, 245, 249, 0.9) 25%,
        rgba(226, 232, 240, 0.85) 50%,
        rgba(203, 213, 225, 0.9) 75%,
        rgba(248, 250, 252, 0.95) 100%
    );
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 90%, rgba(59, 130, 246, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.glass-card {
    background: var(--surface-glass);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    box-shadow: var(--shadow-glass);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    opacity: 0.6;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 80px rgba(31, 38, 135, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.nav-link {
    color: #64748b;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-indigo);
    background-color: rgba(99, 102, 241, 0.08);
    transform: translateY(-2px);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-indigo), var(--primary-purple));
    border-radius: 1px;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::before {
    width: 80%;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-purple) 100%);
    color: white;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

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

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

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.process-timeline {
    position: relative;
}

.process-node {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
    position: relative;
    z-index: 10;
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
}

.process-node:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(99, 102, 241, 0.4);
}

@media (max-width: 1023px) {
    .process-node {
        width: 60px;
        height: 60px;
        font-size: 18px;
        margin: 0 auto;
    }
    
    .process-timeline .absolute {
        display: none;
    }
}

.mobile-menu-button {
    color: #64748b;
    transition: all 0.3s ease;
}

.mobile-menu-button:hover {
    color: var(--primary-indigo);
    transform: rotate(90deg);
}

.mobile-menu {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-menu.hidden {
    opacity: 0;
    transform: translateY(-10px);
}

.contact-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.contact-input:focus {
    outline: none;
    border-color: var(--primary-indigo);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--surface-glass);
    backdrop-filter: var(--backdrop-blur);
    -webkit-backdrop-filter: var(--backdrop-blur);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(120%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content p {
    color: #475569;
    margin-bottom: 16px;
    line-height: 1.6;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-accept {
    background: linear-gradient(135deg, var(--primary-indigo) 0%, var(--primary-purple) 100%);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
}

.cookie-decline {
    background: #f8fafc;
    color: #475569;
    border: 1px solid #e2e8f0;
    padding: 10px 20px;
    border-radius: 10px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-decline:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.cookie-more {
    color: var(--primary-indigo);
    text-decoration: underline;
    padding: 10px 0;
    font-size: 14px;
}

.cookie-more:hover {
    color: var(--primary-purple);
}

@media (max-width: 640px) {
    .cookie-consent {
        left: 16px;
        right: 16px;
        padding: 16px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-accept,
    .cookie-decline {
        width: 100%;
        text-align: center;
    }
}

.prose h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.prose p {
    margin-bottom: 1rem;
}

.prose ul {
    margin-bottom: 1.5rem;
}

footer {
    min-height: auto;
}

html {
    scroll-behavior: smooth;
}

@media (max-width: 768px) {
    .text-5xl {
        font-size: 2.5rem;
    }
    
    .text-6xl {
        font-size: 3rem;
    }
    
    .text-7xl {
        font-size: 3.5rem;
    }
    
    .glass-card {
        padding: 2rem 1.5rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 16px;
    }
}

.iti {
    width: 100%;
}

.iti__flag-container {
    padding: 12px 16px;
}

.iti__selected-flag {
    padding: 12px 16px;
}

.iti input {
    padding: 12px 16px 12px 60px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
}

.iti input:focus {
    outline: none;
    border-color: var(--primary-indigo);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

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

.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (min-width: 768px) {
    .container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}