:root {
    --bg: #0a0f1a;
    --bg-soft: #0f1a2e;
    --card: #111d33;
    --accent: #fbbf24;
    --accent-2: #06b6d4;
    --accent-3: #a855f7;
    --text: #f1f5f9;
    --muted: #94a3b8;
    --shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(251, 191, 36, 0.15);
    --radius: 20px;
    --radius-sm: 12px;
    --max: 1180px;
    --transition: cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    box-sizing: border-box;
}

::selection {
    background: rgba(251, 191, 36, 0.3);
    color: var(--text);
}

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

a {
    color: inherit;
}

a:focus-visible {
    border-radius: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Space Grotesk', 'Inter', 'Segoe UI', system-ui, sans-serif;
    background: var(--bg);
    background-image: 
        radial-gradient(ellipse 80% 50% at 50% -20%, rgba(6, 182, 212, 0.15), transparent),
        radial-gradient(ellipse 60% 40% at 100% 0%, rgba(168, 85, 247, 0.1), transparent),
        radial-gradient(ellipse 50% 30% at 0% 100%, rgba(251, 191, 36, 0.08), transparent);
    color: var(--text);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Animated background gradient - optimized for performance */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(6, 182, 212, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.06) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
    will-change: opacity;
    animation: bgFloat 20s ease-in-out infinite;
}

@keyframes bgFloat {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Smooth fade-in animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

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

/* Scroll Animation Classes */
.animate-ready {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s var(--transition), transform 0.6s var(--transition);
}

.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for grid items */
.cards .card.animate-ready:nth-child(1) { transition-delay: 0s; }
.cards .card.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.cards .card.animate-ready:nth-child(3) { transition-delay: 0.2s; }

.steps .step.animate-ready:nth-child(1) { transition-delay: 0s; }
.steps .step.animate-ready:nth-child(2) { transition-delay: 0.1s; }
.steps .step.animate-ready:nth-child(3) { transition-delay: 0.2s; }
.steps .step.animate-ready:nth-child(4) { transition-delay: 0.3s; }

/* Scale animation for cards on hover */
.card.animate-in:hover,
.step.animate-in:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Smooth parallax for hero */
.hero {
    will-change: transform, opacity;
    transition: transform 0.1s linear, opacity 0.1s linear;
}

.page {
    max-width: var(--max);
    margin: 0 auto;
    padding: 32px 28px 80px;
}

/* Staggered animations for page elements */
.page > section {
    animation: fadeInUp 0.8s var(--transition) backwards;
}

.page > section:nth-child(2) { animation-delay: 0.1s; }
.page > section:nth-child(3) { animation-delay: 0.15s; }
.page > section:nth-child(4) { animation-delay: 0.2s; }
.page > section:nth-child(5) { animation-delay: 0.25s; }
.page > section:nth-child(6) { animation-delay: 0.3s; }
.page > section:nth-child(7) { animation-delay: 0.35s; }
.page > section:nth-child(8) { animation-delay: 0.4s; }

header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 8px;
    gap: 16px;
    padding: 14px 20px;
    background: rgba(17, 29, 51, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    position: sticky;
    top: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.6s var(--transition);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    padding: 10px;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.nav-toggle:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text);
    display: block;
    transition: all 0.3s var(--transition);
    border-radius: 2px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.brand-badge {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--bg);
    font-weight: 800;
    font-size: 17px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    transition: all 0.3s var(--transition);
}

.brand:hover .brand-badge {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
}

.lang-switch {
    display: inline-flex;
    gap: 4px;
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    padding: 4px;
    border-radius: var(--radius-sm);
}

.lang-btn {
    border: none;
    background: transparent;
    color: var(--muted);
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.25s var(--transition);
}

.lang-btn:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.08);
}

.lang-btn[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--bg);
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

nav {
    display: flex;
    gap: 6px;
    align-items: center;
}

nav a {
    color: var(--muted);
    text-decoration: none;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    transition: all 0.25s var(--transition);
    font-weight: 500;
    font-size: 14px;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 6px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 2px;
    transition: all 0.3s var(--transition);
    transform: translateX(-50%);
}

nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.06);
}

nav a:hover::after {
    width: 60%;
}

nav a.active {
    color: var(--text);
    background: rgba(251, 191, 36, 0.12);
}

nav a.active::after {
    width: 60%;
    background: var(--accent);
}

.hero {
    margin: 100px 0 80px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(36px, 5.5vw, 60px);
    line-height: 1.08;
    margin: 0 0 24px;
    letter-spacing: -0.03em;
    background: linear-gradient(135deg, var(--text) 0%, var(--muted) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    margin: 0 0 32px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
}

.tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(6, 182, 212, 0.12));
    color: var(--accent);
    padding: 12px 18px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(251, 191, 36, 0.2);
    position: relative;
    overflow: hidden;
}

.tagline::before {
    content: '✦';
    font-size: 12px;
    animation: pulse 2s ease-in-out infinite;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn {
    border: none;
    outline: none;
    cursor: pointer;
    text-decoration: none;
    font-weight: 700;
    padding: 16px 28px;
    border-radius: var(--radius);
    color: var(--bg);
    background: linear-gradient(135deg, var(--accent) 0%, #f59e0b 100%);
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s var(--transition);
    font-size: 15px;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn:active {
    transform: translateY(-1px);
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 8px 30px rgba(0, 0, 0, 0.3);
}

/* Hero panel improvements */
.hero-panel {
    animation: float 6s ease-in-out infinite;
}

.pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.stats-row {
    display: flex;
    gap: 32px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
    font-weight: 500;
}

/* Card icons */
.card-icon {
    font-size: 32px;
    margin-bottom: 16px;
    display: inline-block;
    animation: pulse 3s ease-in-out infinite;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 24px 0 56px;
}

.card {
    background: linear-gradient(145deg, rgba(17, 29, 51, 0.8), rgba(17, 29, 51, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    transition: all 0.4s var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
    opacity: 0;
    transition: opacity 0.3s var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    border-color: rgba(251, 191, 36, 0.2);
    box-shadow: var(--shadow), var(--shadow-glow);
}

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

.card h3 {
    margin: 0 0 14px;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

.card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.65;
    font-size: 15px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    color: var(--muted);
    font-weight: 600;
    font-size: 13px;
    margin-right: 10px;
    margin-bottom: 12px;
    transition: all 0.3s var(--transition);
}

.pill:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.3);
    color: var(--text);
}

section {
    margin: 80px 0;
    scroll-margin-top: 100px;
}

section h2 {
    margin: 0 0 16px;
    font-size: 32px;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    border-radius: 3px;
}

section p.lead {
    color: var(--muted);
    margin: 0 0 32px;
    font-size: 17px;
    line-height: 1.7;
    max-width: 680px;
}

.process {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.step {
    padding: 24px;
    border-radius: var(--radius);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s var(--transition);
    position: relative;
}

.step::before {
    content: '';
    position: absolute;
    top: 24px;
    left: 24px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
}

.step:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
    border-color: rgba(251, 191, 36, 0.2);
    transform: translateX(8px);
}

.step strong {
    display: block;
    margin-bottom: 10px;
    padding-left: 20px;
    font-size: 1.05rem;
}

.step span {
    color: var(--muted);
    padding-left: 20px;
    display: block;
    line-height: 1.6;
}

.cta-panel {
    padding: 40px;
    border-radius: calc(var(--radius) + 8px);
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.12) 0%, rgba(168, 85, 247, 0.08) 50%, rgba(251, 191, 36, 0.1) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow), 0 0 80px rgba(6, 182, 212, 0.08);
    position: relative;
    overflow: hidden;
}

.cta-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
}

.cta-panel h2::after {
    display: none;
}

.cta-panel .lead {
    position: relative;
    z-index: 1;
}

.form-panel {
    background: linear-gradient(145deg, rgba(17, 29, 51, 0.95), rgba(10, 15, 26, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.form-panel::before {
    background: radial-gradient(circle at 20% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
}

.honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
}

.form-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    margin-top: 24px;
}

label {
    display: grid;
    gap: 10px;
    color: var(--text);
    font-weight: 600;
    font-size: 14px;
}

input, textarea, select {
    width: 100%;
    padding: 16px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s var(--transition);
}

input::placeholder, textarea::placeholder {
    color: var(--muted);
    opacity: 0.6;
}

input:hover, textarea:hover, select:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

input:focus-visible, textarea:focus-visible, select:focus-visible {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

input.error, textarea.error {
    border-color: #f87171;
    box-shadow: 0 0 0 4px rgba(248, 113, 113, 0.15);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 18px;
    padding-right: 48px;
}

.form-foot {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-top: 24px;
}

.form-foot .muted {
    color: var(--muted);
    margin: 0;
    font-size: 13px;
}

.form-status {
    margin-top: 16px;
    font-weight: 600;
    color: var(--accent);
    padding: 12px 18px;
    border-radius: var(--radius-sm);
    background: rgba(251, 191, 36, 0.1);
    display: none;
}

.form-status:not(:empty) {
    display: block;
}

.form-status.error {
    color: #f87171;
    background: rgba(248, 113, 113, 0.1);
}

.full {
    grid-column: 1 / -1;
}

.slider {
    background: linear-gradient(145deg, rgba(17, 29, 51, 0.6), rgba(10, 15, 26, 0.4));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: calc(var(--radius) + 4px);
    padding: 32px;
    position: relative;
    overflow: hidden;
}

.slider::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 120px;
    color: rgba(251, 191, 36, 0.08);
    font-family: Georgia, serif;
    line-height: 1;
}

.slider-track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    transition: transform 0.5s var(--transition);
}

.slide {
    padding: 16px 8px;
}

.quote {
    font-size: 20px;
    line-height: 1.6;
    margin: 0 0 20px;
    font-style: italic;
    color: var(--text);
    position: relative;
}

.author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: var(--text);
    font-weight: 600;
}

.meta {
    font-size: 14px;
    color: var(--accent);
    font-weight: 500;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    cursor: pointer;
    font-size: 22px;
    transition: all 0.3s var(--transition);
    display: grid;
    place-items: center;
}

.slider-btn:hover {
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.3);
    transform: scale(1.08);
}

.slider-dots {
    display: inline-flex;
    gap: 10px;
}

.slider-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s var(--transition);
}

.slider-dots button:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.2);
}

.slider-dots button[aria-pressed="true"] {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    transform: scale(1.1);
}

footer {
    margin: 80px 0 20px;
    padding: 32px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--muted);
    font-size: 14px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text);
}

.footer-brand .brand-badge {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

.footer-links {
    color: var(--muted);
    font-size: 13px;
}

.faq {
    display: grid;
    gap: 12px;
}

.faq-item {
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s var(--transition);
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateX(4px);
}

.faq-item[aria-expanded="true"] {
    background: rgba(251, 191, 36, 0.08);
    border-color: rgba(251, 191, 36, 0.3);
}

.faq-panel {
    margin: -4px 0 12px;
    padding: 4px 24px 20px;
    color: var(--muted);
    border-left: 3px solid var(--accent);
    margin-left: 20px;
    line-height: 1.7;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s var(--transition);
    color: var(--accent);
}

.faq-item[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.to-top {
    position: fixed;
    right: 28px;
    bottom: 28px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: var(--bg);
    font-weight: 800;
    font-size: 20px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(251, 191, 36, 0.35);
    display: grid;
    place-items: center;
    transition: all 0.3s var(--transition);
    z-index: 99;
}

.to-top[hidden] {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
}

.to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.45);
}

@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        margin: 60px 0;
    }
}

@media (max-width: 640px) {
    header {
        position: relative;
        top: 0;
        border-radius: var(--radius);
    }

    .page {
        padding: 20px 18px 60px;
    }

    .hero {
        margin: 40px 0;
    }

    .hero h1 {
        font-size: clamp(28px, 8vw, 40px);
    }

    .cta-row {
        flex-direction: column;
    }

    .cta-row .btn {
        width: 100%;
        text-align: center;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: absolute;
        top: calc(100% + 12px);
        right: 0;
        left: 0;
        flex-direction: column;
        background: rgba(10, 15, 26, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: var(--radius);
        padding: 16px;
        box-shadow: var(--shadow);
        display: none;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
    }

    .nav-links.open {
        display: flex;
    }

    nav a {
        width: 100%;
        padding: 14px 16px;
    }

    section {
        margin: 50px 0;
    }

    section h2 {
        font-size: 26px;
    }

    .cta-panel {
        padding: 28px 22px;
    }

    .card {
        padding: 22px;
    }

    .slider {
        padding: 24px 18px;
    }

    .quote {
        font-size: 17px;
    }
}

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

/* Loading state for interactive elements */
.loading {
    pointer-events: none;
    opacity: 0.7;
}

/* Focus states for accessibility */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.25);
}
