/* style.css - SAFE CLOUD + FADE-IN WIDEO 1s */
:root {
    --safecloud-dark: #0a0f1e;
    --safecloud-bg: #0f1419;
    --safecloud-card: rgba(15,20,30,0.9);
    --safecloud-green: #10b981;
    --safecloud-blue: #0ea5e9;
    --safecloud-cyan: #22d3ee;
    --text-main: #f9fafb;
    --text-sub: #d1d5db;
    --text-dim: #9ca3af;
    --border-glow: rgba(16,185,129,0.3);
    --glass: rgba(255,255,255,0.06);
}

/* PŁYNNE PRZEWIJANIE */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', -apple-system, sans-serif;
    background: var(--safecloud-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* NAPRAWIONA NAWIGACJA */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1.2rem 3%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(10,14,26,0.98);
    backdrop-filter: blur(30px);
    z-index: 9999;
    border-bottom: 1px solid var(--border-glow);
    box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-blue));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    white-space: nowrap;
}

/* HAMBURGER - ukryty na desktop */
.hamburger {
    display: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-sub);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--safecloud-green), var(--safecloud-cyan));
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

.nav-links a:hover::after {
    width: 100%;
}

/* HERO SECTION Z FADE-IN */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0 2rem;
}

.hero video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    
    /* FADE-IN Z OPÓŹNIENIEM + SCALE */
    opacity: 0;
    transform: scale(1.05);
    transition: all 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.hero video.fade-in {
    opacity: 1;
    transform: scale(1);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(10,14,26,0.88) 0%,
        rgba(15,23,42,0.7) 50%,
        rgba(10,14,26,0.88) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero h1 {
    font-size: clamp(2.8rem, 9vw, 6.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -2px;
}

.hero h1 span {
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-cyan));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--text-sub);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

/* PRZYCISKI CTA */
.btn-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-cyan));
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(34,197,94,0.5);
    border: none;
    transition: all 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 20px 45px rgba(34,197,94,0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--safecloud-green);
    color: var(--safecloud-green);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--safecloud-green);
    color: white;
    box-shadow: 0 20px 45px rgba(34,197,94,0.6);
}

/* SEKCJE */
.comparison {
    padding: 120px 4% 80px;
    background: linear-gradient(180deg, var(--safecloud-bg), var(--safecloud-dark));
}

.section-title {
    text-align: center;
    margin-bottom: 5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title h2 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--safecloud-blue), var(--safecloud-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-sub);
}

.grid-compare {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.card {
    background: var(--safecloud-card);
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.card.good {
    border-top: 5px solid var(--safecloud-green);
    box-shadow: 0 0 30px rgba(34,197,94,0.15);
}

.card.bad {
    border-top: 5px solid #ef4444;
}

.card h3 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 2rem;
}

.stat {
    display: flex;
    justify-content: space-between;
    margin: 1.3rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass);
}

.stat:last-child {
    border-bottom: none;
}

.stat span:first-child {
    color: var(--text-sub);
    font-weight: 500;
}

.val-good {
    color: var(--safecloud-green);
    font-weight: 800;
    font-size: 1.05rem;
}

.val-bad {
    color: #f87171;
    font-weight: 800;
    font-size: 1.05rem;
}

/* B2B SECTION */
.b2b {
    padding: 120px 4%;
    display: flex;
    gap: 5rem;
    background: var(--safecloud-bg);
    align-items: center;
}

.b2b-text {
    flex: 1;
    max-width: 600px;
}

.b2b-text h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--safecloud-blue), var(--safecloud-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.b2b-text p {
    font-size: 1.15rem;
    color: var(--text-sub);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.b2b ul {
    list-style: none;
    margin: 2.5rem 0;
}

.b2b li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    color: var(--text-sub);
    font-size: 1.05rem;
}

.b2b li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--safecloud-green);
    font-size: 1.4rem;
    font-weight: bold;
}

.b2b-image {
    flex: 1;
    max-width: 450px;
    height: 280px;
    background: url('inwestycja.png') center/cover;  
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    font-size: 1.1rem;
    border: 1px solid var(--glass);
}

/* FOOTER */
footer {
    padding: 4rem 4% 2.5rem;
    border-top: 1px solid var(--border-glow);
    background: var(--safecloud-dark);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-content > div:first-child {
    font-weight: 600;
    color: var(--text-main);
}

.system-status {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    background: rgba(34,197,94,0.15);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--safecloud-green);
    color: var(--safecloud-green);
    font-weight: 700;
    font-size: 0.9rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--safecloud-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.8); }
    50% { box-shadow: 0 0 0 10px rgba(34,197,94,0); }
}

.footer-credits {
    color: var(--text-sub);
    font-size: 0.9rem;
    text-align: center;
    opacity: 0.9;
}

/* ============================================
   PRZEDSPRZEDAŻ - PRESALE PAGE STYLES
   ============================================ */

.presale-hero {
    background: linear-gradient(135deg, rgba(10,15,30,0.95), rgba(15,20,30,0.92)), 
                url('inwestycja.jpg') center/cover;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 4% 80px;
}

.presale-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-cyan));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(16,185,129,0.5); }
    50% { box-shadow: 0 0 40px rgba(16,185,129,0.8); }
}

.presale-hero h1 {
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.presale-hero h1 span {
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.countdown-container {
    margin: 3rem auto;
    max-width: 700px;
}

.countdown-title {
    font-size: 1.3rem;
    color: var(--safecloud-cyan);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.countdown-item {
    background: var(--safecloud-card);
    border: 2px solid var(--border-glow);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 120px;
    backdrop-filter: blur(20px);
}

.countdown-value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--safecloud-green);
    display: block;
    line-height: 1;
}

.countdown-label {
    font-size: 0.9rem;
    color: var(--text-sub);
    text-transform: uppercase;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
}

.price-container {
    background: var(--safecloud-card);
    border: 2px solid var(--safecloud-green);
    border-radius: 24px;
    padding: 2rem 3rem;
    margin: 2rem auto 3rem;
    max-width: 600px;
    backdrop-filter: blur(20px);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.regular-price {
    font-size: 1.2rem;
    color: var(--text-dim);
    text-decoration: line-through;
}

.presale-price {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--safecloud-green);
}

.savings {
    background: rgba(16,185,129,0.15);
    color: var(--safecloud-green);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 1rem;
    display: inline-block;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 4%;
}

.benefit-card {
    background: var(--safecloud-card);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--safecloud-cyan);
}

.limited-slots {
    background: var(--safecloud-card);
    border: 2px solid var(--safecloud-cyan);
    border-radius: 20px;
    padding: 2.5rem;
    margin: 3rem auto;
    max-width: 700px;
    text-align: center;
}

.slots-remaining {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--safecloud-cyan);
    margin: 1rem 0;
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 1.5rem 0;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--safecloud-green), var(--safecloud-cyan));
    width: 68%;
    transition: width 0.5s ease;
    animation: progress-pulse 2s infinite;
}

@keyframes progress-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 4%;
}

.faq-item {
    background: var(--safecloud-card);
    border: 1px solid var(--border-glow);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--safecloud-green);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    color: var(--text-sub);
    margin-top: 1rem;
    line-height: 1.7;
    font-size: 1.05rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* RESPONSYWNOŚĆ */
@media (max-width: 1024px) {
    .grid-compare {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .b2b {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    .b2b-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 4%;
    }
    
    .logo {
        font-size: 1.5rem;
    }
    
    /* HAMBURGER BUTTON - widoczny tylko na mobile */
    .hamburger {
        display: block;
        font-size: 1.8rem;
        background: none;
        border: none;
        color: var(--text-main);
        cursor: pointer;
        z-index: 10000;
        padding: 0.5rem;
        transition: transform 0.3s ease;
    }

    .hamburger:active {
        transform: scale(0.9);
    }
    
    /* MOBILE MENU */
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10,14,26,0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--border-glow);
        box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    }

    .nav-links.active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .nav-links a {
        font-size: 1.1rem;
        text-align: center;
        padding: 0.8rem;
    }

    .nav-links a::after {
        display: none;
    }
    
    .hero {
        padding: 0 1.5rem;
    }
    
    .comparison, .b2b {
        padding: 80px 5%;
    }
    
    .grid-compare {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    /* Responsywność dla przedsprzedaży */
    .countdown {
        gap: 1rem;
    }

    .countdown-item {
        padding: 1rem 1.5rem;
        min-width: 90px;
    }

    .countdown-value {
        font-size: 2rem;
    }

    .presale-price {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn-cta {
        width: 100%;
    }
}
/* ============================================
   NEWSLETTER PAGE STYLES
   ============================================ */

.newsletter-hero {
    background: linear-gradient(135deg, rgba(10,15,30,0.95), rgba(15,20,30,0.92)),
                url('inwestycja.jpg') center/cover;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 4% 60px;
}

.newsletter-content {
    max-width: 800px;
}

.newsletter-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.newsletter-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.newsletter-hero h1 span {
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.newsletter-hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--text-sub);
    line-height: 1.6;
}

.newsletter-form-section {
    padding: 80px 4%;
    background: var(--safecloud-bg);
}

.newsletter-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.benefits-preview h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--safecloud-blue), var(--safecloud-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background: var(--safecloud-card);
    border-radius: 16px;
    border: 1px solid var(--border-glow);
    transition: all 0.3s ease;
}

.benefits-list li:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.benefit-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.benefits-list strong {
    display: block;
    font-size: 1.3rem;
    color: var(--safecloud-green);
    margin-bottom: 0.5rem;
}

.benefits-list p {
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.5;
}

.form-card {
    background: var(--safecloud-card);
    border: 2px solid var(--border-glow);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.form-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-subtitle {
    color: var(--text-sub);
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
}

.newsletter-form .form-group {
    margin-bottom: 1.8rem;
}

.newsletter-form label {
    display: block;
    margin-bottom: 0.6rem;
    font-weight: 600;
    color: var(--text-main);
    font-size: 1rem;
}

.newsletter-form input[type="text"],
.newsletter-form input[type="email"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 2px solid var(--glass);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-form input[type="text"]:focus,
.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--safecloud-green);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 0 4px rgba(16,185,129,0.1);
}

.newsletter-form input.invalid {
    border-color: #ef4444;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-weight: 400;
    color: var(--text-sub);
    line-height: 1.6;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--safecloud-green);
}

.btn-submit {
    width: 100%;
    margin-top: 1.5rem;
    position: relative;
    min-height: 56px;
}

.btn-loader {
    font-size: 1.5rem;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    100% { transform: rotate(360deg); }
}

.form-message {
    margin-top: 1.5rem;
    padding: 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(16,185,129,0.15);
    color: var(--safecloud-green);
    border: 1px solid var(--safecloud-green);
}

.form-message.error {
    background: rgba(239,68,68,0.15);
    color: #ef4444;
    border: 1px solid #ef4444;
}

.form-message.info {
    background: rgba(14,165,233,0.15);
    color: var(--safecloud-blue);
    border: 1px solid var(--safecloud-blue);
}

.privacy-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.95rem;
}

.newsletter-stats {
    padding: 80px 4%;
    background: var(--safecloud-dark);
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--safecloud-card);
    border-radius: 16px;
    border: 1px solid var(--border-glow);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--safecloud-green), var(--safecloud-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-sub);
    font-size: 1.1rem;
}

/* Responsywność */
@media (max-width: 768px) {
    .newsletter-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-preview {
        order: 2;
    }

    .form-container {
        order: 1;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-card {
        padding: 2rem;
    }
}
