:root {
    --brand: #0f4c5c;
    --brand-dark: #0b3440;
    --accent: #2e8b57;
    --soft: #f4f8f7;
    --ink: #1d2939;
    --muted: #667085;
    --line: #d9e5e2;
}

html { scroll-behavior: smooth; }

body {
    color: var(--ink);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #fff;
}

.navbar {
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(255,255,255,.92);
    border-bottom: 1px solid rgba(15,76,92,.08);
}

.navbar-brand {
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -.02em;
}

.btn-brand {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.btn-brand:hover,
.btn-brand:focus {
    background: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #fff;
}

.btn-outline-brand {
    border-color: var(--brand);
    color: var(--brand);
    background: rgba(255,255,255,.72);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff;
}

.hero {
    position: relative;
    overflow: hidden;
    min-height: 760px;
    padding: 8rem 0 5rem;
    background:
            linear-gradient(
                    90deg,
                    rgba(255, 255, 255, 0.98) 0%,
                    rgba(255, 255, 255, 0.95) 38%,
                    rgba(255, 255, 255, 0.72) 52%,
                    rgba(255, 255, 255, 0.12) 72%,
                    rgba(255, 255, 255, 0) 100%
            ),
            url("../img/a_wide_interior_well_lit_modern_grocery_store_or.png");
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .85rem;
    border-radius: 999px;
    background: rgba(46,139,87,.1);
    color: var(--accent);
    font-size: .9rem;
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.08;
    letter-spacing: -.04em;
    font-weight: 800;
    margin-top: 1rem;
}

.lead-custom {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 42rem;
}

.hero-visual {
    display: none;
}

.hero-card,
.offer-card,
.impact-card,
.audience-card,
.contact-card {
    border: 1px solid var(--line);
    border-radius: 1.25rem;
    background: #fff;
    box-shadow: 0 18px 50px rgba(16, 24, 40, .06);
}

.stat-badge {
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(217,229,226,.9);
    border-radius: 1rem;
    padding: 1rem;
    height: 100%;
    box-shadow: 0 12px 30px rgba(16, 24, 40, .06);
}

.section {
    padding: 5rem 0;
}

.section-alt {
    background: var(--soft);
}

.section-title {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    margin-bottom: .85rem;
}

.section-copy {
    color: var(--muted);
    max-width: 46rem;
}

.offer-card img,
.contact-illustration {
    margin: auto;
    width: 72px;
    height: 72px;
    object-fit: contain;
}

.offer-card h3,
.impact-card h3,
.audience-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -.02em;
}

.offer-card ul,
.impact-card ul,
.audience-card ul {
    margin: 0;
    padding-left: 1.2rem;
    color: var(--muted);
}

.highlight {
    color: var(--brand);
}

.number-pill {
    width: 3rem;
    height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(15,76,92,.1);
    color: var(--brand);
    font-weight: 800;
}

.contact-block {
    background: linear-gradient(135deg, #0f4c5c 0%, #155e72 100%);
    color: #fff;
    border-radius: 1.5rem;
    padding: 2rem;
    height: 100%;
}

.contact-block a {
    color: #fff;
    text-decoration: none;
}

.contact-block a:hover {
    text-decoration: underline;
}

.form-control,
.form-select {
    border-radius: .9rem;
    border-color: var(--line);
    padding: .85rem 1rem;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(15,76,92,.45);
    box-shadow: 0 0 0 .25rem rgba(15,76,92,.12);
}

footer {
    border-top: 1px solid var(--line);
    color: var(--muted);
    background: #fff;
}

.small-note {
    color: var(--muted);
    font-size: .95rem;
}

@media (max-width: 991.98px) {
    .hero {
        min-height: auto;
        padding: 7rem 0 4.5rem;
        background:
                linear-gradient(
                        180deg,
                        rgba(255, 255, 255, 0.96) 0%,
                        rgba(255, 255, 255, 0.92) 55%,
                        rgba(255, 255, 255, 0.86) 100%
                ),
                url("../img/a_wide_interior_well_lit_modern_grocery_store_or.png");
        background-size: cover;
        background-position: center;
    }
}

@media (max-width: 575.98px) {
    .hero {
        padding: 6.5rem 0 4rem;
    }

    .hero h1 {
        font-size: clamp(2rem, 10vw, 2.6rem);
    }

    .lead-custom {
        font-size: 1rem;
    }
}

.brand-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-logo__icon {
    width: 42px;
    height: 42px;
    display: block;
}

.brand-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.05;
}

.brand-logo__name {
    font-size: 1.05rem;
    font-weight: 800;
    color: var(--brand);
    letter-spacing: -0.02em;
}

.brand-logo__subtitle {
    margin-top: 3px;
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--muted);
    letter-spacing: 0.02em;
}

@media (max-width: 575.98px) {
    .brand-logo__icon {
        width: 36px;
        height: 36px;
    }

    .brand-logo__name {
        font-size: 0.95rem;
    }

    .brand-logo__subtitle {
        font-size: 0.62rem;
    }
}