﻿:root {
    --navy: #1E4380;
    --navy-deep: #152F5C;
    --navy-dark: #0F2040;
    --orange: #E8922A;
    --orange-light: #F0A84D;
    --orange-glow: rgba(232, 146, 42, 0.15);
    --white: #FFFFFF;
    --off-white: #F4F6FA;
    --gray-100: #E8ECF2;
    --gray-300: #A0AEBF;
    --gray-500: #6B7A8D;
    --text-dark: #1A1A2E;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: .5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(30, 67, 128, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: background 0.3s;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    height: 100px;
}

    .nav-logo span {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-weight: 800;
        font-size: 1.5rem;
        color: var(--white);
        letter-spacing: -0.5px;
    }

    .nav-logo .dot {
        color: var(--orange);
    }

    .nav-logo small {
        font-size: 0.7rem;
        color: var(--gray-300);
        font-weight: 500;
        letter-spacing: 1.5px;
        text-transform: uppercase;
    }

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
}

    .nav-links a {
        color: rgba(255,255,255,0.75);
        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) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    font-weight: 600 !important;
    transition: transform 0.2s, box-shadow 0.2s !important;
}

    .nav-cta:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 20px rgba(232, 146, 42, 0.4);
    }

/* ── HERO ── */
.hero {

    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: flex-start;
    background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #2A5298 100%);
    overflow: hidden;
    padding: 9rem 2rem 4rem;
}


    .hero::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 60px;
        background: linear-gradient(to top, var(--white), transparent);
        pointer-events: none;
        z-index: 2;
    }
/* Gear pattern decorations */
.gear-deco {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(232, 146, 42, 0.1);
    pointer-events: none;
}

    .gear-deco.g1 {
        width: 300px;
        height: 300px;
        top: 10%;
        left: -5%;
    }

    .gear-deco.g2 {
        width: 180px;
        height: 180px;
        bottom: 20%;
        right: 5%;
        border-color: rgba(255,255,255,0.04);
    }

    .gear-deco.g3 {
        width: 80px;
        height: 80px;
        top: 30%;
        right: 35%;
        background: rgba(232, 146, 42, 0.06);
    }

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 146, 42, 0.15);
    border: 1px solid rgba(232, 146, 42, 0.3);
    color: var(--orange-light);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease both;
}

    .hero-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: var(--orange);
        border-radius: 50%;
        animation: pulse 2s infinite;
    }

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.08;
    letter-spacing: -1.5px;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s 0.1s ease both;
}

    .hero h1 .accent {
        color: var(--orange);
    }

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 0.6s 0.3s ease both;
}

.btn-primary {
    background: var(--orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.2rem;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

    .btn-primary:hover {
        background: #D4820F;
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(232, 146, 42, 0.35);
    }

.btn-secondary {
    background: rgba(255,255,255,0.08);
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    padding: 1rem 2rem;
    border-radius: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
}

    .btn-secondary:hover {
        background: rgba(255,255,255,0.14);
        border-color: rgba(255,255,255,0.3);
    }

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s 0.3s ease both;
}

    .hero-visual img {
        width: 100%;
        max-width: 480px;
        border-radius: 16px;
        box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    }

    .hero-visual::before {
        content: '';
        position: absolute;
        inset: -3px;
        max-width: 486px;
        margin: 0 auto;
        border-radius: 18px;
        background: linear-gradient(135deg, var(--orange), transparent, var(--orange));
        opacity: 0.25;
        z-index: -1;
    }

.hero-stat-strip {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    animation: fadeInUp 0.6s 0.4s ease both;
}

    .hero-stat-strip .stat {
        text-align: left;
    }

    .hero-stat-strip .stat-num {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.6rem;
        font-weight: 800;
        color: var(--orange);
    }

    .hero-stat-strip .stat-label {
        font-size: 0.78rem;
        color: rgba(255,255,255,0.5);
        font-weight: 500;
    }

/* ── HOW IT WORKS ── */
.section {
    padding: 6rem 2rem;
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gray-500);
    max-width: 540px;
    line-height: 1.7;
}

.how-it-works {
    background: var(--off-white);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    position: relative;
    border: 1px solid var(--gray-100);
    transition: transform 0.3s, box-shadow 0.3s;
}

    .step-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 48px rgba(30, 67, 128, 0.08);
    }

.step-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: 1.2rem;
    right: 1.5rem;
    line-height: 1;
}

.step-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--orange-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

    .step-icon svg {
        width: 24px;
        height: 24px;
        color: var(--orange);
    }

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.step-card p {
    font-size: 0.95rem;
    color: var(--gray-500);
    line-height: 1.65;
}
/* Connector line between steps */
.steps-grid .step-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: linear-gradient(to right, var(--orange), transparent);
    opacity: 0.3;
}

/* ── FEATURES ── */
.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.features-image {
    position: relative;
}

    .features-image img {
        width: 100%;
        border-radius: 16px;
        box-shadow: 0 20px 60px rgba(30, 67, 128, 0.12);
    }

    .features-image::after {
        content: '';
        position: absolute;
        inset: 0;
        border-radius: 16px;
        box-shadow: inset 0 0 0 1px rgba(30, 67, 128, 0.06);
        pointer-events: none;
    }

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 12px;
    transition: background 0.2s;
}

    .feature-item:hover {
        background: var(--off-white);
    }

.feature-check {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--navy), var(--navy-deep));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

    .feature-check svg {
        width: 18px;
        height: 18px;
        color: var(--orange);
    }

.feature-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-500);
    line-height: 1.55;
}

/* ── STATS BAR ── */
.stats-bar {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 4rem 2rem;
}

.stats-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-block .stat-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-block .stat-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.55);
    font-weight: 500;
}

/* ── CTA / SIGNUP ── */
.cta-section {
    background: var(--off-white);
    padding: 6rem 2rem;
}
.cta-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    box-shadow: 0 20px 60px rgba(30, 67, 128, 0.08);
    border: 1px solid var(--gray-100);
    text-align: center;
}
    .cta-card h2 {
        font-size: 2rem;
        font-weight: 800;
        color: var(--navy);
        margin-bottom: 0.75rem;
    }
    .cta-card > p {
        color: var(--gray-500);
        margin-bottom: 2.5rem;
        font-size: 1.05rem;
    }
    .cta-card .form-group-restockr input,
    .cta-card .form-group-restockr select,
    .cta-card .form-group-restockr textarea {
        width: 100%;
        padding: 0.75rem 1rem;
        border: 1px solid var(--gray-100);
        border-radius: 10px;
        font-size: 1rem;
        color: var(--navy);
        background: var(--off-white);
        outline: none;
        transition: border-color 0.2s;
    }
    .cta-card .form-group-restockr input:focus,
    .cta-card .form-group-restockr select:focus,
    .cta-card .form-group-restockr textarea:focus {
        border-color: var(--blue);
    }
    .cta-card .form-group-restockr label {
        display: block;
        text-align: left;
        font-size: 0.875rem;
        font-weight: 600;
        color: var(--navy);
        margin-bottom: 0.4rem;
    }

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    text-align: left;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

    .form-group label {
        font-size: 0.82rem;
        font-weight: 600;
        color: var(--navy);
    }

    .form-group input {
        padding: 0.8rem 1rem;
        border: 1.5px solid var(--gray-100);
        border-radius: 10px;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        transition: border-color 0.2s, box-shadow 0.2s;
        outline: none;
    }

        .form-group input:focus {
            border-color: var(--orange);
            box-shadow: 0 0 0 3px var(--orange-glow);
        }

.form-submit {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

    .form-submit button {
        width: 100%;
        padding: 1rem;
        background: var(--orange);
        color: var(--white);
        border: none;
        border-radius: 10px;
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 1.05rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.25s;
    }

        .form-submit button:hover {
            background: #D4820F;
            transform: translateY(-1px);
            box-shadow: 0 6px 24px rgba(232, 146, 42, 0.3);
        }

/* ── FOOTER ── */
footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.45);
    padding: 3rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-brand {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
}

    .footer-brand .dot {
        color: var(--orange);
    }

.footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

    .footer-links a {
        color: rgba(255,255,255,0.45);
        text-decoration: none;
        font-size: 0.85rem;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--white);
        }

/* ── ANIMATIONS ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }

    50% {
        opacity: 0.4;
    }
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 2.6rem;
    }

    .hero-desc {
        margin: 0 auto 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stat-strip {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 2rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    .step-card::after {
        display: none !important;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-image {
        order: -1;
    }

    .stats-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav-links {
        display: none;
    }

    .hero {
        position: relative;
        padding-top: 0;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        position: relative;
        z-index: 1;
    }
    .gear-deco.g1 {
        position: absolute;
        z-index: 0;
    }
    /* ── HERO ── */
    .hero {
        position: relative;
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: linear-gradient(160deg, var(--navy-dark) 0%, var(--navy) 50%, #2A5298 100%);
        overflow: hidden;
        padding: 6rem 2rem 4rem;
    }

        .hero::before {
            content: '';
            position: absolute;
            top: -30%;
            right: -10%;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(232, 146, 42, 0.12) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(to top, var(--white), transparent);
            pointer-events: none;
            z-index: 2;
        }

    .gear-deco {
        position: absolute;
        border-radius: 50%;
        border: 2px solid rgba(232, 146, 42, 0.1);
        pointer-events: none;
    }

        .gear-deco.g1 {
            width: 300px;
            height: 300px;
            top: 10%;
            left: -5%;
        }

        .gear-deco.g2 {
            width: 180px;
            height: 180px;
            bottom: 20%;
            right: 5%;
            border-color: rgba(255,255,255,0.04);
        }

        .gear-deco.g3 {
            width: 80px;
            height: 80px;
            top: 30%;
            right: 35%;
            background: rgba(232, 146, 42, 0.06);
        }

    .hero-inner {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        position: relative;
        z-index: 3;
    }

    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: rgba(232, 146, 42, 0.15);
        border: 1px solid rgba(232, 146, 42, 0.3);
        color: var(--orange-light);
        padding: 0.4rem 1rem;
        border-radius: 50px;
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.5px;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.6s ease both;
    }

        .hero-badge::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--orange);
            border-radius: 50%;
            animation: pulse 2s infinite;
        }

    .hero h1 {
        font-size: 3.8rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1.08;
        letter-spacing: -1.5px;
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.6s 0.1s ease both;
    }

        .hero h1 .accent {
            color: var(--orange);
        }

    .hero-desc {
        font-size: 1.15rem;
        color: rgba(255,255,255,0.7);
        line-height: 1.7;
        max-width: 520px;
        margin-bottom: 2.5rem;
        animation: fadeInUp 0.6s 0.2s ease both;
    }

    .hero-actions {
        display: flex;
        gap: 1rem;
        animation: fadeInUp 0.6s 0.3s ease both;
    }

    .hero-visual {
        position: relative;
        display: flex;
        justify-content: center;
        animation: fadeInUp 0.8s 0.3s ease both;
    }

        .hero-visual img {
            width: 100%;
            max-width: 480px;
            border-radius: 16px;
            box-shadow: 0 30px 80px rgba(0,0,0,0.35);
        }

        .hero-visual::before {
            content: '';
            position: absolute;
            inset: -3px;
            max-width: 486px;
            margin: 0 auto;
            border-radius: 18px;
            background: linear-gradient(135deg, var(--orange), transparent, var(--orange));
            opacity: 0.25;
            z-index: -1;
        }

    .hero-stat-strip {
        display: flex;
        gap: 3rem;
        margin-top: 2rem;
        animation: fadeInUp 0.6s 0.4s ease both;
    }

        .hero-stat-strip .stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            color: var(--orange);
        }

        .hero-stat-strip .stat-label {
            font-size: 0.78rem;
            color: rgba(255,255,255,0.5);
            font-weight: 500;
        }

    /* ── HOW IT WORKS ── */
    .how-it-works {
        background: var(--off-white);
    }

    .steps-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        margin-top: 4rem;
    }

    .step-card {
        background: var(--white);
        border-radius: 16px;
        padding: 2.5rem 2rem;
        position: relative;
        border: 1px solid var(--gray-100);
        transition: transform 0.3s, box-shadow 0.3s;
    }

        .step-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 16px 48px rgba(30, 67, 128, 0.08);
        }

    .step-num {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 3rem;
        font-weight: 800;
        color: var(--orange);
        opacity: 0.2;
        position: absolute;
        top: 1.2rem;
        right: 1.5rem;
        line-height: 1;
    }

    .step-icon {
        width: 52px;
        height: 52px;
        border-radius: 12px;
        background: var(--orange-glow);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

        .step-icon svg {
            width: 24px;
            height: 24px;
            color: var(--orange);
        }

    .step-card h4 {
        font-size: 1.15rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        color: var(--navy);
    }

    .step-card p {
        font-size: 0.95rem;
        color: var(--gray-500);
        line-height: 1.65;
    }

    .steps-grid .step-card:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -1rem;
        width: 2rem;
        height: 2px;
        background: linear-gradient(to right, var(--orange), transparent);
        opacity: 0.3;
    }

    /* ── FEATURES ── */
    .features-section {
        background: var(--white);
    }

    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
        margin-top: 3rem;
    }

    .features-image {
        position: relative;
    }

        .features-image img {
            width: 100%;
            border-radius: 16px;
            box-shadow: 0 20px 60px rgba(30, 67, 128, 0.12);
        }

        .features-image::after {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 16px;
            box-shadow: inset 0 0 0 1px rgba(30, 67, 128, 0.06);
            pointer-events: none;
        }

    .feature-list {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 1.2rem;
        padding: 0;
        margin: 0;
    }

    .feature-item {
        display: flex;
        gap: 1rem;
        padding: 1.2rem;
        border-radius: 12px;
        transition: background 0.2s;
    }

        .feature-item:hover {
            background: var(--off-white);
        }

    .feature-check {
        flex-shrink: 0;
        width: 36px;
        height: 36px;
        border-radius: 10px;
        background: linear-gradient(135deg, var(--navy), var(--navy-deep));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 2px;
    }

        .feature-check svg {
            width: 18px;
            height: 18px;
            color: var(--orange);
        }

    .feature-item h5 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--navy);
        margin-bottom: 0.3rem;
    }

    .feature-item p {
        font-size: 0.9rem;
        color: var(--gray-500);
        line-height: 1.55;
        margin: 0;
    }

    /* ── STATS BAR ── */
    .stats-bar {
        background: linear-gradient(135deg, var(--navy-dark), var(--navy));
        padding: 4rem 2rem;
    }

    .stats-inner {
        max-width: 1000px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
        text-align: center;
    }

    .stat-block .stat-value {
        font-family: 'Plus Jakarta Sans', sans-serif;
        font-size: 2.8rem;
        font-weight: 800;
        color: var(--orange);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .stat-block .stat-desc {
        font-size: 0.9rem;
        color: rgba(255,255,255,0.55);
        font-weight: 500;
    }

    /* ── CTA / SIGNUP ── */
    .cta-section {
        background: var(--off-white);
        padding: 6rem 2rem;
    }

    .cta-card {
        max-width: 680px;
        margin: 0 auto;
        background: var(--white);
        border-radius: 20px;
        padding: 3.5rem 3rem;
        box-shadow: 0 20px 60px rgba(30, 67, 128, 0.08);
        border: 1px solid var(--gray-100);
        text-align: center;
    }

        .cta-card h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--navy);
            margin-bottom: 0.75rem;
        }

        .cta-card > p {
            color: var(--gray-500);
            margin-bottom: 2.5rem;
            font-size: 1.05rem;
        }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        text-align: left;
    }

    .form-group-restockr {
        display: flex;
        flex-direction: column;
        gap: 0.4rem;
    }

        .form-group-restockr label {
            font-size: 0.82rem;
            font-weight: 600;
            color: var(--navy);
        }

        .form-group-restockr input {
            padding: 0.8rem 1rem;
            border: 1.5px solid var(--gray-100);
            border-radius: 10px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.2s, box-shadow 0.2s;
            outline: none;
        }

            .form-group-restockr input:focus {
                border-color: var(--orange);
                box-shadow: 0 0 0 3px var(--orange-glow);
            }

    .form-submit {
        grid-column: 1 / -1;
        margin-top: 0.5rem;
    }

        .form-submit button {
            width: 100%;
            padding: 1rem;
            background: var(--orange);
            color: var(--white);
            border: none;
            border-radius: 10px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.05rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s;
        }

            .form-submit button:hover {
                background: #D4820F;
                transform: translateY(-1px);
                box-shadow: 0 6px 24px rgba(232, 146, 42, 0.3);
            }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
        .hero-inner {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .hero h1 {
            font-size: 2.6rem;
        }

        .hero-desc {
            margin: 0 auto 2rem;
        }

        .hero-actions {
            justify-content: center;
        }

        .hero-stat-strip {
            justify-content: center;
        }

        .hero-visual {
            margin-top: 2rem;
        }

        .steps-grid {
            grid-template-columns: 1fr;
            max-width: 440px;
            margin-left: auto;
            margin-right: auto;
        }

        .step-card::after {
            display: none !important;
        }

        .features-grid {
            grid-template-columns: 1fr;
        }

        .features-image {
            order: -1;
        }

        .stats-inner {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }
    }



}
