/* MK Parking Landing - Refined Corporate Theme */

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

/* CSS Variables */
:root {
    /* Colors */
    --navy-900: #0f172a;
    --navy-800: #1e293b;
    --navy-700: #334155;
    --navy-600: #475569;
    --slate-500: #64748b;
    --slate-400: #94a3b8;
    --slate-300: #cbd5e1;
    --slate-200: #e2e8f0;
    --slate-100: #f1f5f9;
    --slate-50: #f8fafc;
    --white: #ffffff;

    --amber-600: #d97706;
    --amber-500: #f59e0b;
    --amber-400: #fbbf24;
    --amber-100: #fef3c7;

    --success: #059669;
    --error: #dc2626;

    /* Typography */
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 8px 10px -6px rgba(15, 23, 42, 0.05);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
}

/* Base */
html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--navy-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 400;
    color: var(--navy-900);
    line-height: 1.2;
}

/* ========================================
   Navigation
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-200);
    transition: var(--transition-base);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-brand-icon {
    width: 40px;
    height: 40px;
    background: var(--navy-900);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-brand-icon svg {
    width: 24px;
    height: 24px;
    color: var(--amber-500);
}

.nav-brand h1 {
    font-size: 1.375rem;
    font-family: var(--font-body);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--navy-700);
    transition: var(--transition-fast);
    position: relative;
}

.nav-menu a:not(.btn-login):hover {
    color: var(--navy-900);
}

.nav-menu a:not(.btn-login)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-500);
    transition: var(--transition-base);
}

.nav-menu a:not(.btn-login):hover::after {
    width: 100%;
}

.btn-login {
    padding: 10px 24px;
    background: var(--navy-900);
    color: var(--white) !important;
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-login:hover {
    background: var(--navy-800);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--navy-900);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ========================================
   Hero Section
======================================== */
.hero {
    padding: 160px 0 120px;
    background: linear-gradient(180deg, var(--slate-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--amber-100) 0%, transparent 70%);
    opacity: 0.6;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--amber-100);
    color: var(--amber-600);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title span {
    color: var(--amber-600);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--slate-500);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
}

.btn-primary {
    background: var(--navy-900);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: var(--navy-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: var(--white);
    color: var(--navy-900);
    border: 2px solid var(--slate-200);
}

.btn-secondary:hover {
    border-color: var(--navy-900);
    background: var(--slate-50);
}

.btn-outline {
    background: transparent;
    color: var(--navy-900);
    border: 2px solid var(--navy-900);
}

.btn-outline:hover {
    background: var(--navy-900);
    color: var(--white);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--navy-900);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--slate-200);
    position: relative;
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--slate-200);
}

.hero-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--amber-500) 0%, var(--amber-600) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(217, 119, 6, 0.3);
}

.hero-card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
}

.hero-card-title {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.hero-card-subtitle {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.hero-card-balance {
    text-align: center;
    padding: 24px 0;
}

.balance-label {
    font-size: 0.875rem;
    color: var(--slate-500);
    margin-bottom: 8px;
}

.balance-value {
    font-family: var(--font-display);
    font-size: 3rem;
    color: var(--navy-900);
}

.balance-value span {
    font-size: 1.5rem;
    color: var(--slate-400);
}

.hero-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 24px;
}

.card-btn {
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition-base);
}

.card-btn-primary {
    background: var(--navy-900);
    color: var(--white);
}

.card-btn-secondary {
    background: var(--slate-100);
    color: var(--navy-700);
}

.card-btn svg {
    width: 18px;
    height: 18px;
}

/* Floating Elements */
.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.875rem;
    font-weight: 500;
    animation: float 3s ease-in-out infinite;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.floating-badge.bottom-left {
    bottom: 40px;
    left: -40px;
    animation-delay: 1.5s;
}

.floating-badge-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-badge-icon.success {
    background: rgba(5, 150, 105, 0.1);
    color: var(--success);
}

.floating-badge-icon.amber {
    background: var(--amber-100);
    color: var(--amber-600);
}

.floating-badge-icon svg {
    width: 20px;
    height: 20px;
}

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

/* ========================================
   Trusted By Section
======================================== */
.trusted-by {
    padding: 60px 0;
    background: var(--white);
    border-top: 1px solid var(--slate-200);
    border-bottom: 1px solid var(--slate-200);
}

.trusted-by-content {
    text-align: center;
}

.trusted-by-label {
    font-size: 0.875rem;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 24px;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trusted-logo {
    color: var(--slate-400);
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-base);
}

.trusted-logo:hover {
    color: var(--slate-500);
}

.trusted-logo svg {
    width: 24px;
    height: 24px;
}

/* ========================================
   Features Section
======================================== */
.features {
    padding: var(--section-padding);
    background: var(--white);
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 16px;
    padding: 32px;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--slate-300);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--slate-100);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--navy-900);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--navy-700);
    transition: var(--transition-base);
}

.feature-card:hover .feature-icon svg {
    color: var(--amber-500);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.feature-card p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* ========================================
   How It Works Section
======================================== */
.how-it-works {
    padding: var(--section-padding);
    background: var(--slate-50);
}

.steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}

.steps::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12.5%;
    right: 12.5%;
    height: 2px;
    background: var(--slate-200);
    z-index: 0;
}

.step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 88px;
    height: 88px;
    background: var(--white);
    border: 2px solid var(--slate-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy-900);
    transition: var(--transition-base);
}

.step:hover .step-number {
    background: var(--navy-900);
    border-color: var(--navy-900);
    color: var(--white);
    transform: scale(1.05);
}

.step h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.step p {
    color: var(--slate-500);
    font-size: 0.9375rem;
    line-height: 1.6;
    max-width: 200px;
    margin: 0 auto;
}

/* ========================================
   Pricing Section
======================================== */
.pricing {
    padding: var(--section-padding);
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    background: var(--white);
    border: 1px solid var(--slate-200);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-base);
}

.pricing-card:hover {
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured {
    border-color: var(--navy-900);
    border-width: 2px;
    transform: scale(1.02);
}

.pricing-card.featured:hover {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy-900);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 700;
}

.pricing-description {
    color: var(--slate-500);
    font-size: 0.9375rem;
    margin-bottom: 24px;
}

.price {
    margin-bottom: 32px;
}

.price span {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--navy-900);
    line-height: 1;
}

.price-period {
    color: var(--slate-500);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    color: var(--navy-700);
    font-size: 0.9375rem;
}

.pricing-features li:not(:last-child) {
    border-bottom: 1px solid var(--slate-100);
}

.pricing-features li svg {
    width: 20px;
    height: 20px;
    color: var(--success);
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-card .btn {
    width: 100%;
}

/* ========================================
   Contact Section
======================================== */
.contact {
    padding: var(--section-padding);
    background: var(--slate-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.company-reg {
    color: var(--slate-500);
    font-size: 0.875rem;
    margin-bottom: 32px;
}

.info-item {
    margin-bottom: 24px;
}

.info-item strong {
    display: block;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--slate-400);
    margin-bottom: 8px;
}

.info-item p {
    color: var(--navy-700);
    line-height: 1.7;
}

.info-item a {
    color: var(--navy-900);
    font-weight: 500;
    transition: var(--transition-fast);
}

.info-item a:hover {
    color: var(--amber-600);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-700);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--slate-200);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--navy-900);
    transition: var(--transition-base);
    background: var(--white);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--slate-400);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--navy-900);
    box-shadow: 0 0 0 3px rgba(15, 23, 42, 0.1);
}

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

.contact-form .btn {
    width: 100%;
}

/* ========================================
   Footer
======================================== */
.footer {
    background: var(--navy-900);
    color: var(--white);
    padding: 80px 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 64px;
}

.footer-brand {
    max-width: 300px;
}

.footer-brand h4 {
    font-family: var(--font-body);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand p {
    color: var(--slate-400);
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-brand .company-info {
    font-size: 0.875rem;
    color: var(--slate-500);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: var(--slate-400);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.footer-col a:hover {
    color: var(--amber-500);
}

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

.footer-bottom p {
    color: var(--slate-500);
    font-size: 0.875rem;
}

.footer-social {
    display: flex;
    gap: 16px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--navy-800);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-400);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--amber-600);
    color: var(--white);
}

.footer-social svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Responsive Design
======================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps::before {
        display: none;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px 0;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--slate-200);
        gap: 16px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu a:not(.btn-login)::after {
        display: none;
    }

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

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }

    .stat-item {
        text-align: center;
    }

    .floating-badge {
        display: none;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
}

/* ========================================
   Legal Pages
======================================== */
.legal-page {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 24px 80px;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: var(--slate-500);
    margin-bottom: 40px;
    font-size: 0.875rem;
}

.legal-page h2 {
    font-size: 1.5rem;
    margin: 48px 0 16px;
    font-family: var(--font-body);
    font-weight: 700;
}

.legal-page h3 {
    font-size: 1.125rem;
    margin: 32px 0 12px;
    font-family: var(--font-body);
    font-weight: 600;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--navy-700);
}

.legal-page ul,
.legal-page ol {
    margin: 16px 0 16px 24px;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.8;
    color: var(--navy-700);
}

.legal-page table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.legal-page table th,
.legal-page table td {
    border: 1px solid var(--slate-200);
    padding: 12px 16px;
    text-align: left;
}

.legal-page table th {
    background: var(--slate-50);
    font-weight: 600;
}

/* ========================================
   Animations
======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
