:root {
    --navy: #2b3077;
    --navy-dark: #1f2459;
    --green: #86c440;
    --green-dark: #6da832;
    --bg: #fafbfd;
    --surface: #ffffff;
    --ink: #1a1d2e;
    --muted: #5b6172;
    --line: #e6e8f0;
    --shadow: 0 10px 30px -12px rgba(43,48,119,0.18);
    --shadow-lg: 0 20px 50px -20px rgba(43,48,119,0.28);
    --radius: 14px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.7;
    font-size: 1.05rem;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.2;
    color: var(--navy);
    font-weight: 700
}

h1 {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em
}

h2 {
    font-size: clamp(1.9rem, 3.8vw, 2.75rem);
    letter-spacing: -0.01em
}

h3 {
    font-size: 1.4rem;
    font-weight: 700
}

p {
    color: var(--muted);
    font-size: 1.15rem
}

a {
    color: var(--navy);
    text-decoration: none
}

img {
    max-width: 100%;
    display: block
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

/* Icon base */
.icon {
    width: 1em;
    height: 1em;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0
}

/* Header */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0
}

.logo img {
    height: 38px;
    display: block
}

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center
}

    .nav-links a {
        font-weight: 500;
        color: var(--ink);
        font-size: 1rem;
        transition: color .2s
    }

        .nav-links a:hover {
            color: var(--green-dark)
        }

.nav-cta {
    background: var(--navy);
    color: #fff;
    padding: 10px 20px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .9rem;
    transition: transform .2s, background .2s
}

    .nav-cta:hover {
        background: var(--green);
        transform: translateY(-1px)
    }

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--navy)
}

@media (max-width:820px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--line);
        gap: 18px
    }

        .nav-links.open {
            display: flex
        }

    .menu-toggle {
        display: block
    }
}

/* Hero */
.hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 90px;
    background: radial-gradient(circle at 85% 15%, rgba(134,196,64,0.18), transparent 50%),radial-gradient(circle at 10% 90%, rgba(43,48,119,0.12), transparent 55%),linear-gradient(180deg, #fff 0%, var(--bg) 100%)
}

.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center
}

@media (max-width:900px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 40px
    }
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(134,196,64,0.15);
    color: var(--green-dark);
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .85rem;
    margin-bottom: 20px
}

    .pill .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: var(--green);
        animation: pulse 2s infinite
    }

@keyframes pulse {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

.hero h1 span {
    color: var(--green)
}

.hero p.lead {
    font-size: 1.15rem;
    margin: 20px 0 30px;
    max-width: 560px
}

.btn-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 600;
    transition: transform .2s, box-shadow .2s, background .2s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    font-family: inherit
}

.btn-primary {
    background: var(--navy);
    color: #fff
}

    .btn-primary:hover {
        background: var(--navy-dark);
        transform: translateY(-2px);
        box-shadow: var(--shadow)
    }

.btn-ghost {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--line)
}

    .btn-ghost:hover {
        border-color: var(--navy)
    }

.hero-visual {
    position: relative;
    max-width: 520px;
    margin: 0 auto;
    width: 100%
}

.hero-photo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    box-shadow: var(--shadow-lg);
}

    .hero-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

    .hero-photo::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 50%, rgba(43,48,119,0.35));
        pointer-events: none
    }

.hero-card {
    position: absolute;
    background: #fff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: float 6s ease-in-out infinite;
    z-index: 2
}

    .hero-card .ic {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.3rem;
        background: rgba(43,48,119,0.08);
        color: var(--navy)
    }

        .hero-card .ic.green {
            background: rgba(134,196,64,0.18);
            color: var(--green-dark)
        }

    .hero-card .t {
        font-weight: 700;
        color: var(--navy);
        font-size: 1rem;
        line-height: 1.2
    }

    .hero-card .s {
        font-size: .1rem;
        color: var(--muted)
    }

.card-1 {
    top: 8%;
    left: -30px;
    animation-delay: 0s
}

.card-2 {
    bottom: 14%;
    right: -30px;
    animation-delay: 2s
}

@media (max-width:540px) {
    .card-1 {
        left: 0
    }

    .card-2 {
        right: 0
    }
}

@keyframes float {
    0%,100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

/* Section base */
section {
    padding: 80px 0
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 50px
}

    .section-head .eyebrow {
        color: var(--green-dark);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: .12em;
        font-size: .85rem;
        margin-bottom: 12px
    }

    .section-head p {
        margin-top: 14px;
        font-size: 1.15rem
    }

/* Mission/Vision */
.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

@media (max-width:760px) {
    .mv-grid {
        grid-template-columns: 1fr
    }
}

.mv-card {
    background: var(--surface);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s
}

    .mv-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow-lg)
    }

    .mv-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%
    }

    .mv-card.mission::before {
        background: var(--navy)
    }

    .mv-card.vision::before {
        background: var(--green)
    }

    .mv-card h3 {
        font-size: 1.5rem;
        margin-bottom: 12px
    }

.mv-icon {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 1.6rem
}

.mission .mv-icon {
    background: rgba(43,48,119,0.1);
    color: var(--navy)
}

.vision .mv-icon {
    background: rgba(134,196,64,0.18);
    color: var(--green-dark)
}

/* Helps list */
.helps {
    background: var(--surface)
}

.helps-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 16px
}

@media (max-width:820px) {
    .helps-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:520px) {
    .helps-grid {
        grid-template-columns: 1fr
    }
}

.help-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 18px;
    background: var(--bg);
    border-radius: 12px;
    border: 1px solid var(--line);
    transition: transform .25s, border-color .25s
}

    .help-item:hover {
        transform: translateY(-3px);
        border-color: var(--green)
    }

    .help-item .check {
        flex-shrink: 0;
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: var(--green);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .1rem
    }

        .help-item .check .icon {
            width: 14px;
            height: 14px;
            stroke-width: 2.5
        }

    .help-item span {
        font-weight: 500;
        color: var(--ink);
        font-size: 1.0rem
    }

/* Why exist */
.why {
    position: relative;
    background: linear-gradient(135deg, #1f2459 0%, #2b3077 100%);
    color: #fff;
    border-radius: 24px;
    padding: 56px;
    margin: 0 24px;
    overflow: hidden
}

.why-wrap {
    max-width: 1200px;
    margin: 0 auto
}

.why-grid {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 48px;
    align-items: center
}

.why-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    aspect-ratio: 4/5
}

    .why-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block
    }

    .why-media::after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 60%, rgba(31,36,89,0.5) 100%)
    }

.why-content .section-head {
    margin-bottom: 24px;
    text-align: left
}

@media (max-width:880px) {
    .why-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .why-media {
        aspect-ratio: 16/10;
        max-height: 320px
    }
}

@media (max-width:760px) {
    .why {
        padding: 36px 24px;
        margin: 0 12px
    }
}

.why h2 {
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 2.5rem)
}

.why .section-head p {
    color: rgba(255,255,255,0.92);
    font-size: 1.15rem
}

.why .section-head .eyebrow {
    color: #b8e986;
    font-size: .95rem
}

.pressure-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px;
    margin-top: 24px
}

@media (max-width:760px) {
    .pressure-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:460px) {
    .pressure-grid {
        grid-template-columns: 1fr
    }
}

.pressure {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    padding: 18px 16px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    font-weight: 600;
    font-size: 1.02rem;
    text-align: center;
    color: #fff;
    transition: background .2s, transform .2s
}

    .pressure:hover {
        background: rgba(134,196,64,0.28);
        transform: translateY(-3px)
    }

.why-callout {
    margin-top: 32px;
    text-align: center;
    padding: 24px;
    background: rgba(134,196,64,0.22);
    border: 1px solid var(--green);
    border-radius: 16px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    font-family: 'Plus Jakarta Sans',sans-serif
}

.pressure-list {
    list-style: none;
    padding: 0;
    margin: 24px 0 0;
    display: flex;
    flex-direction: column;
    gap: 10px
}

    .pressure-list li {
        position: relative;
        padding: 6px 0 6px 28px;
        color: #fff;
        font-size: 1.08rem;
        font-weight: 500;
        line-height: 1.5
    }

        .pressure-list li::before {
            content: "";
            position: absolute;
            left: 6px;
            top: 14px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--green);
            box-shadow: 0 0 0 4px rgba(134,196,64,0.18)
        }

/* Different */
.diff-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px
}

@media (max-width:920px) {
    .diff-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:480px) {
    .diff-grid {
        grid-template-columns: 1fr
    }
}

.diff-card {
    background: var(--surface);
    padding: 28px 22px;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    text-align: left;
    transition: all .3s;
    position: relative;
    overflow: hidden
}

    .diff-card::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: var(--green);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s
    }

    .diff-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow)
    }

        .diff-card:hover::after {
            transform: scaleX(1)
        }

    .diff-card .num {
        font-family: 'Plus Jakarta Sans',sans-serif;
        font-size: 1.5rem;
        color: var(--green-dark);
        font-weight: 800;
        margin-bottom: 10px
    }

    .diff-card h4 {
        font-family: 'Plus Jakarta Sans',sans-serif;
        color: var(--navy);
        font-size: 1.05rem;
        font-weight: 700
    }

/* Who we serve */
.serve {
    background: var(--surface)
}

.serve-grid {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 22px
}

.serve-card:nth-child(1), .serve-card:nth-child(2) {
    grid-column: span 3
}

.serve-card:nth-child(3), .serve-card:nth-child(4), .serve-card:nth-child(5) {
    grid-column: span 2
}

@media (max-width:820px) {
    .serve-grid {
        grid-template-columns: repeat(2,1fr)
    }

    .serve-card:nth-child(n) {
        grid-column: span 1
    }
}

@media (max-width:520px) {
    .serve-grid {
        grid-template-columns: 1fr
    }
}

.serve-card {
    background: var(--bg);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    transition: all .3s;
    display: flex;
    flex-direction: column
}

    .serve-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow);
        border-color: transparent
    }

.serve-thumb {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden
}

    .serve-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .5s
    }

.serve-card:hover .serve-thumb img {
    transform: scale(1.06)
}

.serve-body {
    padding: 24px
}

.serve-head-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px
}

.serve-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43,48,119,0.08);
    color: var(--navy);
    font-size: 1.2rem;
    flex-shrink: 0
}

.serve-card h3 {
    margin: 0;
    font-size: 1.1rem
}

/* Future */
.future-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 14px
}

@media (max-width:820px) {
    .future-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:480px) {
    .future-grid {
        grid-template-columns: 1fr
    }
}

.future-item {
    background: var(--surface);
    padding: 22px;
    border-radius: 12px;
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all .3s
}

    .future-item:hover {
        border-color: var(--green);
        transform: translateX(5px)
    }

    .future-item .badge {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        flex-shrink: 0;
        background: rgba(134,196,64,0.18);
        color: var(--green-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.1rem
    }

    .future-item span {
        font-weight: 500;
        color: var(--ink);
        font-size: 1.1rem
    }

/* CTAs */
.cta-section {
    background: var(--surface)
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch; /* IMPORTANT */
}

.cta-card {
    background: linear-gradient(135deg,#fff,#f5f7fc);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 32px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    height: 100%; /* IMPORTANT */
    min-height: 420px; /* IMPORTANT */
}

    .cta-card p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-top: 12px;
        flex-grow: 1; /* PUSH BUTTON DOWN */
    }

    .cta-card .btn {
        margin-top: auto; /* IMPORTANT */
        align-self: flex-start;
    }

.cta-role {
    margin-bottom: 18px;
}

    .cta-role .ic {
        width: 52px;
        height: 52px;
        border-radius: 14px;
    }

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green);
}


@media (max-width: 992px) {
    .cta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .cta-grid {
        grid-template-columns: 1fr;
    }

    .cta-card {
        min-height: auto;
    }
}
.btn-primary {
    background: #86c440;
    color: #fff;
    transition: all .25s ease;
    box-shadow: 0 8px 20px -8px rgba(134,196,64,.6);
}

    .btn-primary:hover {
        background: #6fa934;
        transform: translateY(-2px);
        box-shadow: 0 14px 28px -10px rgba(134,196,64,.7);
    }
    .btn-outline-white {
    border: 2px solid rgba(255,255,255,.6);
    color: #fff;
    transition: all .25s ease;
}

    .btn-outline-white:hover {
        background: #fff;
        color: #2b3077;
    }

.card-lift {
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}

    .card-lift:hover {
        transform: translateY(-6px);
        box-shadow: 0 25px 50px -20px rgba(43,48,119,.25);
    }
.icon-pill {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-navy {
    background: #2b3077;
    color: #fff;
    transition: all .25s ease;
    box-shadow: 0 8px 20px -8px rgba(43,48,119,.5);
}

    .btn-navy:hover {
        background: #232862;
        transform: translateY(-2px);
    }

@media (max-width:520px) {
    .cta-grid {
        grid-template-columns: 1fr
    }
}

.cta-card {
    background: linear-gradient(135deg,#fff,#f5f7fc);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s;
    display: flex;
    flex-direction: column;
    gap: 14px
}

    .cta-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-lg);
        border-color: var(--green)
    }

.cta-role {
    display: flex;
    align-items: center;
    gap: 12px
}

    .cta-role .ic {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(43,48,119,0.08);
        color: var(--navy);
        font-size: 1.2rem
    }

.cta-card .role {
    font-family: 'Plus Jakarta Sans',sans-serif;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.05rem
}

.cta-card p {
    font-size: 1.1rem;
    flex-grow: 1
}

.cta-card .btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 1.1rem
}

.cta-card .btn {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 1.1rem
}

/* ZIP */
.zip-section {
    position: relative;
    padding: 70px 0;
    color: #fff;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%)
}

.zip-bg {
    position: absolute;
    inset: 0;
    opacity: .2;
    z-index: 0
}

    .zip-bg img {
        width: 100%;
        height: 100%;
        object-fit: cover
    }

.zip-wrap {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px
}

    .zip-wrap h2 {
        color: #fff;
        margin-bottom: 12px
    }

    .zip-wrap p {
        color: rgba(255,255,255,0.95);
        margin-bottom: 28px;
        font-size: 1.05rem
    }

.zip-form {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow: var(--shadow-lg);
    max-width: 480px;
    margin: 0 auto
}

    .zip-form input {
        flex: 1;
        border: none;
        outline: none;
        padding: 14px 22px;
        font-size: 1rem;
        border-radius: 999px;
        background: transparent;
        font-family: inherit;
        color: var(--ink)
    }

    .zip-form button {
        background: var(--navy);
        color: #fff;
        border: none;
        padding: 14px 28px;
        border-radius: 999px;
        font-weight: 600;
        cursor: pointer;
        font-family: inherit;
        transition: background .2s;
        font-size: .1rem
    }

        .zip-form button:hover {
            background: var(--navy-dark)
        }

.zip-msg {
    margin-top: 18px;
    font-weight: 600;
    min-height: 24px;
    font-size: 1rem
}

    .zip-msg.error {
        color: #ffe0e0
    }

    .zip-msg.success {
        color: #eaffd6
    }

@media (max-width:520px) {
    .zip-form {
        flex-direction: column;
        border-radius: 18px;
        padding: 12px
    }

        .zip-form input, .zip-form button {
            width: 100%;
            border-radius: 12px
        }
}

/* Footer */
footer {
    background: #0f1230;
    color: rgba(255,255,255,0.75);
    padding: 50px 0 30px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px
}

@media (max-width:720px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }
}

.footer-brand img {
    height: 36px;
    background: #fff;
    padding: 8px 14px;
    border-radius: 8px;
    margin-bottom: 14px
}

.footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    max-width: 340px
}

footer h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 16px;
    font-family: 'Plus Jakarta Sans',sans-serif
}

footer ul {
    list-style: none
}

    footer ul li {
        margin-bottom: 10px
    }

    footer ul a {
        color: rgba(255,255,255,0.65);
        font-size: 1rem;
        transition: color .2s
    }

        footer ul a:hover {
            color: var(--green)
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    font-size: 1rem;
    color: rgba(255,255,255,0.5)
}

/* Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0)
    }

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity .5s ease, transform .5s ease
}

.reveal-stagger.in > * {
    opacity: 1;
    transform: translateY(0)
}

    .reveal-stagger.in > *:nth-child(1) {
        transition-delay: 0s
    }

    .reveal-stagger.in > *:nth-child(2) {
        transition-delay: .07s
    }

    .reveal-stagger.in > *:nth-child(3) {
        transition-delay: .14s
    }

    .reveal-stagger.in > *:nth-child(4) {
        transition-delay: .21s
    }

    .reveal-stagger.in > *:nth-child(5) {
        transition-delay: .28s
    }

    .reveal-stagger.in > *:nth-child(6) {
        transition-delay: .35s
    }

    .reveal-stagger.in > *:nth-child(7) {
        transition-delay: .42s
    }

    .reveal-stagger.in > *:nth-child(8) {
        transition-delay: .49s
    }

    .reveal-stagger.in > *:nth-child(9) {
        transition-delay: .56s
    }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation: none !important;
        transition: none !important
    }

    .reveal, .reveal-stagger > * {
        opacity: 1;
        transform: none
    }
}
/* For Consumers */
.consumer-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: center
}

.consumer-media {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg)
}

    .consumer-media img {
        width: 100%;
        height: 100%;
        min-height: 420px;
        object-fit: cover;
        display: block;
        transition: transform .6s
    }

    .consumer-media:hover img {
        transform: scale(1.04)
    }

.consumer-badge {
    position: absolute;
    left: 20px;
    bottom: 20px;
    background: #fff;
    border-radius: 999px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: var(--shadow-lg)
}

.consumer-content h2 {
    margin: 10px 0 16px
}

.consumer-content p {
    color: var(--text-soft);
    font-size: 1.15rem;
    margin-bottom: 24px
}

.consumer-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px
}

.consumer-feat {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font-weight: 500;
    transition: transform .25s, border-color .25s
}

    .consumer-feat:hover {
        transform: translateY(-3px);
        border-color: var(--green)
    }

.cf-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(134,196,64,0.12);
    color: var(--green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .cf-icon .icon {
        font-size: 1.1rem
    }

@media (max-width:900px) {
    .consumer-grid {
        grid-template-columns: 1fr;
        gap: 32px
    }

    .consumer-media img {
        min-height: 300px
    }
}

@media (max-width:520px) {
    .consumer-features {
        grid-template-columns: 1fr
    }
}
