﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --navy: #0d1b2a;
    --navy-mid: #112240;
    --navy-light: #1a2f4e;
    --orange: #f5861f;
    --orange-light: #ff9d45;
    --white: #ffffff;
    --grey: #8892a4;
    --grey-light: #cdd5e0;
    --card-bg: #152035;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--navy);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    backdrop-filter: blur(16px);
    background: rgba(13,27,42,0.85);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-logo {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--white);
    text-decoration: none;
}

    .nav-logo span {
        color: var(--orange);
    }

.nav-links {
    display: flex;
    gap: 36px;
    list-style: none;
}

    .nav-links a {
        color: var(--grey-light);
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--white);
        }

.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: background 0.2s !important;
}

    .nav-cta:hover {
        background: var(--orange-light) !important;
        color: var(--white) !important;
    }

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 60px 80px;
    position: relative;
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -200px;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(245,134,31,0.12) 0%, transparent 70%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -100px;
        left: -100px;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(20,80,160,0.18) 0%, transparent 70%);
        pointer-events: none;
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245,134,31,0.12);
    border: 1px solid rgba(245,134,31,0.3);
    color: var(--orange-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

    .hero-badge::before {
        content: '';
        width: 7px;
        height: 7px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

.hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

    .hero h1 span {
        background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero-sub {
    font-size: 1.1rem;
    color: var(--grey-light);
    margin-bottom: 40px;
    max-width: 460px;
    line-height: 1.7;
}

.hero-bullets {
    list-style: none;
    margin-bottom: 44px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

    .hero-bullets li {
        display: flex;
        align-items: center;
        gap: 10px;
        font-size: 0.95rem;
        color: var(--grey-light);
    }

        .hero-bullets li::before {
            content: '✓';
            width: 20px;
            height: 20px;
            background: rgba(245,134,31,0.15);
            border: 1px solid rgba(245,134,31,0.4);
            border-radius: 50%;
            color: var(--orange);
            font-size: 0.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        background: var(--orange-light);
        transform: translateY(-1px);
        box-shadow: 0 8px 24px rgba(245,134,31,0.35);
    }

.btn-ghost {
    background: transparent;
    color: var(--white);
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.2s;
}

    .btn-ghost:hover {
        border-color: rgba(255,255,255,0.5);
        background: rgba(255,255,255,0.05);
    }

/* ── DASHBOARD MOCKUP ── */
.hero-visual {
    position: relative;
}

.dashboard-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

    .dashboard-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--orange), transparent);
    }

.dash-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dash-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--grey-light);
}

.dash-date {
    font-size: 0.75rem;
    color: var(--grey);
}

.dash-greeting {
    font-size: 0.8rem;
    color: var(--grey);
    margin-bottom: 14px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 14px;
}

.metric {
    background: var(--navy-light);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

.metric-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 0.67rem;
    color: var(--grey);
    margin-top: 2px;
}

.metric.highlight {
    border-color: rgba(245,134,31,0.25);
}

    .metric.highlight .metric-value {
        color: var(--orange-light);
    }

.metric.negative .metric-value {
    color: #ff6b6b;
}

.dash-bottom-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.best-seller {
    background: var(--navy-light);
    border-radius: 10px;
    padding: 12px 14px;
    border: 1px solid rgba(255,255,255,0.05);
}

    .best-seller .bs-label {
        font-size: 0.67rem;
        color: var(--grey);
        margin-bottom: 4px;
    }

    .best-seller .bs-value {
        font-size: 0.82rem;
        font-weight: 700;
        color: var(--white);
    }

.floating-badge {
    position: absolute;
    bottom: -16px;
    right: -16px;
    background: var(--orange);
    color: var(--white);
    border-radius: 12px;
    padding: 12px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(245,134,31,0.4);
}

    .floating-badge .num {
        font-size: 1.4rem;
        font-weight: 900;
        display: block;
        line-height: 1;
    }

/* ── LOGOS / SOCIAL PROOF ── */
.trust-bar {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 28px 60px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    white-space: nowrap;
}

.trust-items {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-item {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.5px;
}

/* ── SECTION COMMON ── */
section {
    padding: 100px 60px;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--orange);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--grey-light);
    max-width: 520px;
    line-height: 1.7;
}

/* ── FEATURES ── */
#features {
    background: var(--navy);
}

.features-header {
    text-align: center;
    margin-bottom: 70px;
}

    .features-header .section-sub {
        margin: 0 auto;
    }

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 16px;
    padding: 32px;
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

    .feature-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--orange), transparent);
        opacity: 0;
        transition: opacity 0.25s;
    }

    .feature-card:hover {
        border-color: rgba(245,134,31,0.2);
        transform: translateY(-4px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    }

        .feature-card:hover::after {
            opacity: 1;
        }

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(245,134,31,0.12);
    border: 1px solid rgba(245,134,31,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--grey-light);
    line-height: 1.7;
}

/* ── HOW IT WORKS ── */
#how {
    background: var(--navy-mid);
}

.how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.step-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.step-content p {
    font-size: 0.875rem;
    color: var(--grey-light);
    line-height: 1.7;
}

/* Order Hub Mockup */
.order-mockup {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.om-header {
    background: var(--navy-light);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.om-title {
    font-size: 0.85rem;
    font-weight: 700;
}

.om-date {
    font-size: 0.72rem;
    color: var(--grey);
}

.om-filters {
    padding: 14px 20px;
    display: flex;
    gap: 10px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.om-filter {
    background: var(--navy-light);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 0.72rem;
    color: var(--grey-light);
    flex: 1;
    text-align: center;
}

.om-apply {
    background: var(--orange);
    border-radius: 6px;
    padding: 6px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    color: white;
}

.om-table-head {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 8px 20px;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--grey);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: rgba(255,255,255,0.02);
}

.om-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 10px 20px;
    font-size: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.03);
    align-items: center;
    transition: background 0.15s;
}

    .om-row:hover {
        background: rgba(255,255,255,0.02);
    }

    .om-row .name {
        font-weight: 600;
        color: var(--grey-light);
    }

    .om-row .dept {
        color: var(--grey);
        font-size: 0.7rem;
    }

    .om-row .price {
        color: var(--white);
        font-weight: 600;
    }

    .om-row .sold {
        color: #ff7b7b;
    }

    .om-row .qty {
        background: var(--orange);
        color: white;
        font-size: 0.65rem;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 4px;
        display: inline-block;
    }

/* ── STATS ── */
#stats {
    background: var(--orange);
    padding: 70px 60px;
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.8);
    font-weight: 500;
}

/* ── BENEFITS ── */
#benefits {
    background: var(--navy);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.benefit-card {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.25s;
}

    .benefit-card:hover {
        border-color: rgba(245,134,31,0.15);
        transform: translateY(-2px);
    }

.benefit-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
}

.benefit-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.benefit-card p {
    font-size: 0.875rem;
    color: var(--grey-light);
    line-height: 1.7;
}

/* ── PRICING ── */
#pricing {
    background: var(--navy-mid);
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

    .pricing-header .section-sub {
        margin: 0 auto;
    }

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-box {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
}

    .pricing-box:hover {
        transform: translateY(-4px);
        box-shadow: 0 24px 48px rgba(0,0,0,0.3);
    }

    .pricing-box.featured {
        border-color: rgba(245,134,31,0.35);
        background: #1b2c42;
    }

    .pricing-box::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: rgba(255,255,255,0.06);
    }

    .pricing-box.featured::before {
        background: linear-gradient(90deg, var(--orange), var(--orange-light));
    }

.pricing-tag {
    display: inline-block;
    background: rgba(245,134,31,0.12);
    color: var(--orange-light);
    border: 1px solid rgba(245,134,31,0.3);
    border-radius: 100px;
    padding: 4px 14px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

    .pricing-tag.invisible {
        visibility: hidden;
    }

.pricing-box h3 {
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-price {
    margin-bottom: 6px;
}

    .pricing-price .amount {
        font-size: 2.8rem;
        font-weight: 900;
        letter-spacing: -1.5px;
        color: var(--white);
        line-height: 1;
    }

    .pricing-price .period {
        font-size: 0.85rem;
        color: var(--grey);
        font-weight: 500;
    }

.pricing-box .price-note {
    color: var(--grey);
    font-size: 0.8rem;
    margin-bottom: 28px;
    min-height: 36px;
}

.pricing-divider {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
    text-align: left;
}

    .pricing-features li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 9px 0;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(255,255,255,0.04);
        color: var(--grey-light);
        line-height: 1.4;
    }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-features li::before {
            content: '✓';
            color: var(--orange);
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 1px;
        }

        .pricing-features li.dim {
            color: var(--grey);
        }

            .pricing-features li.dim::before {
                color: var(--grey);
                content: '–';
            }

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }
}

/* ── CONTACT ── */
#contact {
    background: var(--navy);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-top: 60px;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.contact-info p {
    font-size: 0.9rem;
    color: var(--grey-light);
    line-height: 1.7;
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.contact-item-icon {
    width: 38px;
    height: 38px;
    background: rgba(245,134,31,0.1);
    border: 1px solid rgba(245,134,31,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item-text .label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--grey);
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item-text .value {
    font-size: 0.9rem;
    color: var(--grey-light);
}

/* Form */
.contact-form {
    background: var(--card-bg);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-size: 0.8rem;
        font-weight: 600;
        color: var(--grey-light);
        margin-bottom: 8px;
        text-transform: uppercase;
        letter-spacing: 0.06em;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        background: var(--navy-light);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 10px;
        color: var(--white);
        font-size: 0.9rem;
        font-family: 'Inter', sans-serif;
        padding: 13px 16px;
        outline: none;
        transition: border-color 0.2s;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--orange);
        }

    .form-group select {
        appearance: none;
        cursor: pointer;
    }

    .form-group textarea {
        resize: vertical;
        min-height: 120px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-submit {
    width: 100%;
    background: var(--orange);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 15px;
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 8px;
}

    .form-submit:hover {
        background: var(--orange-light);
        box-shadow: 0 8px 24px rgba(245,134,31,0.35);
    }

/* ── FOOTER ── */
footer {
    background: var(--navy-mid);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 50px 60px 30px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--grey);
    line-height: 1.7;
    margin-top: 12px;
    max-width: 260px;
}

.footer-col h4 {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--grey-light);
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 10px;
}

.footer-col a {
    font-size: 0.875rem;
    color: var(--grey);
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-col a:hover {
        color: var(--white);
    }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .footer-bottom p {
        font-size: 0.8rem;
        color: var(--grey);
    }

.footer-reg {
    font-size: 0.75rem;
    color: var(--grey);
    margin-top: 4px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

    .nav-links {
        display: none;
    }

    .hero {
        padding: 100px 24px 60px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero-visual {
        display: none;
    }

    section {
        padding: 70px 24px;
    }

    .trust-bar {
        padding: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .order-mockup {
        display: none;
    }

    .stats-inner {
        grid-template-columns: repeat(2,1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    #stats {
        padding: 50px 24px;
    }

    footer {
        padding: 40px 24px 24px;
    }
}

@media (max-width: 600px) {
    .stats-inner {
        grid-template-columns: 1fr 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
    }
}

