/* ══ TOKENS ══ */
:root {
    --navy: #1A2B8C;
    --navy2: #1530A8;
    --navy-dk: #0B1F6B;
    --teal: #0E9E6E;
    --teal2: #11C487;
    --teal-dk: #0A7A55;
    --purple: #5C2D91;
    --purple2: #7340B0;
    --gold: #E8A020;
    --white: #fff;
    --off: #F7F9FC;
    --sky: #EBF4FF;
    --mint: #E6F7F3;
    --lav: #F0E8FF;
    --border: #D4DDEB;
    --dark: #0E1B3A;
    --slate: #3A4E6B;
    --muted: #6E82A0;
    --fh: 'Poppins',sans-serif;
    --fb: 'Inter',sans-serif;
    --r: 12px;
    --rl: 18px;
    --rxl: 24px;
    --sh: 0 2px 16px rgba(26,43,140,.08);
    --shmd: 0 6px 32px rgba(26,43,140,.13);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--fb);
    color: var(--slate);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6
}

h1, h2, h3, h4 {
    font-family: var(--fh);
    color: var(--navy);
    line-height: 1.12
}

p {
    line-height: 1.75
}

a {
    text-decoration: none;
    color: inherit
}

button {
    cursor: pointer;
    font-family: var(--fb)
}

img {
    max-width: 100%
}

/* ══ HEADER ══ */
header {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 300;
    box-shadow: 0 1px 10px rgba(26,43,140,.07)
}

.nav {
    display: flex;
    align-items: center;
    height: 68px;
    max-width: 1380px;
    margin: 0 auto;
    padding: 0 24px;
    gap: 12px
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none
}

.logo-mark {
    width: 38px;
    height: 38px;
    background: var(--navy);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

    .logo-mark svg {
        width: 22px;
        height: 22px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round
    }

.logo-text strong {
    font-family: var(--fh);
    font-size: 15px;
    font-weight: 800;
    color: var(--navy);
    display: block;
    line-height: 1.1
}

    .logo-text strong span {
        color: var(--teal2)
    }

.logo-text em {
    font-size: 11px;
    color: var(--muted);
    font-style: normal;
    display: block
}
/* Desktop nav */
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center
}

.nav-link {
    padding: 7px 12px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
    background: transparent;
    border: none;
    font-family: var(--fb);
    transition: all .15s;
    white-space: nowrap;
    cursor: pointer
}

    .nav-link:hover {
        background: var(--off);
        color: var(--navy)
    }

.nav-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0
}

.insp-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-dk);
    background: var(--mint);
    border: 1.5px solid rgba(14,158,110,.25);
    border-radius: 99px;
    padding: 7px 13px;
    cursor: pointer;
    white-space: nowrap;
    transition: all .15s;
    font-family: var(--fb);
    border: none
}

    .insp-badge:hover {
        background: #d0f0e6
    }

    .insp-badge svg {
        width: 14px;
        height: 14px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2.5px;
        flex-shrink: 0
    }

.wa-btn {
    width: 34px;
    height: 34px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .15s
}

    .wa-btn:hover {
        transform: scale(1.08)
    }

    .wa-btn svg {
        width: 18px;
        height: 18px;
        fill: #fff
    }

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--navy);
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: var(--r);
    font-size: 13px;
    font-weight: 600;
    transition: background .15s;
    white-space: nowrap
}

    .contact-btn:hover {
        background: var(--navy2)
    }

    .contact-btn svg {
        width: 14px;
        height: 14px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.2px;
    }
/* Hamburger (mobile) */
.nav-hamburger {
    display: none;
    width: 38px;
    height: 38px;
    background: var(--off);
    border: none;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin-left: auto;
    flex-shrink: 0
}

    .nav-hamburger svg {
        width: 20px;
        height: 20px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2.2px;
    }
/* Mobile nav drawer */
.nav-drawer {
    display: none;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    z-index: 290;
    padding: 12px 16px 20px;
    box-shadow: 0 8px 24px rgba(26,43,140,.12);
    flex-direction: column;
    gap: 4px
}

    .nav-drawer.open {
        display: flex
    }

    .nav-drawer .nav-link {
        text-align: left;
        padding: 10px 14px;
        font-size: 14px;
        border-radius: 8px
    }

.nav-drawer-divider {
    height: 1px;
    background: var(--border);
    margin: 8px 0
}

.nav-drawer-cta {
    display: flex;
    gap: 8px;
    padding-top: 8px;
    flex-wrap: wrap
}

/* ══ HERO ══ */
.hero {
    background: linear-gradient(155deg,var(--navy-dk) 0%,var(--navy) 45%,#1E3CB8 80%,#2244CC 100%);
    padding: 64px 0 52px;
    overflow: hidden;
    position: relative;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(255,255,255,.065) 1px,transparent 1px);
        background-size: 28px 28px;
        pointer-events: none
    }

.hero-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.hero-center {
    text-align: center;
    margin-bottom: 34px
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,.13);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 99px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 18px;
    backdrop-filter: blur(4px)
}

h1.hero-title {
    font-size: clamp(30px,5.5vw,66px);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    margin-bottom: 14px
}

    h1.hero-title .eco {
        color: var(--teal2)
    }

.hero-sub {
    font-size: clamp(14px,1.5vw,17px);
    color: rgba(255,255,255,.72);
    max-width: 560px;
    margin: 0 auto 10px;
    line-height: 1.75
}

.hero-divider {
    width: 48px;
    height: 3px;
    background: var(--teal2);
    border-radius: 99px;
    margin: 14px auto 16px
}

.hero-q {
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,.85)
}

/* 3 Login Cards */
.login-cards {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px;
    max-width: 1040px;
    margin: 0 auto 28px
}

.lcard {
    background: rgba(255,255,255,.97);
    border-radius: var(--rl);
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    transition: transform .18s,box-shadow .18s
}

    .lcard:hover {
        transform: translateY(-4px);
        box-shadow: 0 18px 52px rgba(0,0,0,.24)
    }

.lcard-ico {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 13px;
    flex-shrink: 0
}

    .lcard-ico svg {
        width: 32px;
        height: 32px
    }

.lc-blue {
    background: var(--sky)
}

.lc-purple {
    background: var(--lav)
}

.lc-teal {
    background: var(--mint)
}

.lcard h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--navy);
    text-align: center;
    margin-bottom: 8px
}

.lcard > p {
    font-size: 12.5px;
    color: var(--muted);
    text-align: center;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1
}

.lcbtn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 15px;
    border-radius: var(--r);
    font-family: var(--fb);
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .16s;
    margin-bottom: 9px;
    gap: 8px
}

    .lcbtn:last-child {
        margin-bottom: 0
    }

    .lcbtn .lbl {
        display: flex;
        align-items: center;
        gap: 7px;
        flex: 1
    }

        .lcbtn .lbl svg {
            width: 14px;
            height: 14px;
            flex-shrink: 0;
            fill: none;
            stroke-width: 2.5px;
            stroke-linecap: round
        }

    .lcbtn .arr {
        width: 15px;
        height: 15px;
        flex-shrink: 0;
        fill: none;
        stroke-width: 2.5px;
    }

.lb-n {
    background: var(--navy);
    color: #fff
}

    .lb-n:hover {
        background: var(--navy2)
    }

    .lb-n svg {
        stroke: #fff
    }

.lb-no {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border)
}

    .lb-no:hover {
        background: var(--sky);
        border-color: var(--navy)
    }

    .lb-no .lbl svg, .lb-no .arr {
        stroke: var(--navy)
    }

.lb-p {
    background: var(--purple);
    color: #fff
}

    .lb-p:hover {
        background: var(--purple2)
    }

    .lb-p svg {
        stroke: #fff
    }

.lb-po {
    background: transparent;
    color: var(--purple);
    border: 1.5px solid var(--border)
}

    .lb-po:hover {
        background: var(--lav);
        border-color: var(--purple)
    }

    .lb-po .lbl svg, .lb-po .arr {
        stroke: var(--purple)
    }

.lb-t {
    background: var(--teal);
    color: #fff
}

    .lb-t:hover {
        background: var(--teal-dk)
    }

    .lb-t svg {
        stroke: #fff
    }

.lb-to {
    background: transparent;
    color: var(--teal-dk);
    border: 1.5px solid var(--border)
}

    .lb-to:hover {
        background: var(--mint);
        border-color: var(--teal)
    }

    .lb-to .lbl svg, .lb-to .arr {
        stroke: var(--teal-dk)
    }

/* Feature strip */
.feat-strip {
    background: rgba(255,255,255,.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.16);
    border-radius: var(--rl);
    padding: 18px 24px;
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 0
}

.fs-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 0 10px;
    text-align: center;
    position: relative
}

    .fs-item + .fs-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 36px;
        width: 1px;
        background: rgba(255,255,255,.14)
    }

.fs-ico {
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: rgba(255,255,255,.11);
    display: flex;
    align-items: center;
    justify-content: center
}

    .fs-ico svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round
    }

.fs-item span {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255,255,255,.82);
    line-height: 1.35
}

/* ══ TRUST BAR ══ */
.trust-bar {
    background: var(--off);
    border-bottom: 1px solid var(--border);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0
}

.tb-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 500;
    color: var(--slate);
    padding: 6px 22px;
    position: relative
}

    .tb-item + .tb-item::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 16px;
        width: 1px;
        background: var(--border)
    }

    .tb-item svg {
        width: 15px;
        height: 15px;
        stroke: var(--navy);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0
    }

/* ══ POLICY SEARCH ══ */
.ps-sec {
    background: var(--white);
    padding: 52px 0;
    border-bottom: 1px solid var(--border)
}

.ps-inner {
    max-width: 820px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center
}

.chip {
    display: inline-block;
    padding: 5px 13px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: 12px
}

.chip-teal {
    background: var(--mint);
    color: #085041
}

.chip-navy {
    background: var(--sky);
    color: #0B2B6A
}

.ps-sec h2 {
    font-size: clamp(20px,3vw,28px);
    margin-bottom: 10px
}

.ps-sec > div > p {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 22px
}

.ps-bar {
    display: flex;
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    box-shadow: var(--sh);
    max-width: 620px;
    margin: 0 auto 18px;
    transition: border .15s
}

    .ps-bar:focus-within {
        border-color: var(--navy)
    }

    .ps-bar input {
        flex: 1;
        padding: 13px 18px;
        border: none;
        outline: none;
        font-size: 14px;
        font-family: var(--fb);
        color: var(--dark);
        min-width: 0
    }

        .ps-bar input::placeholder {
            color: var(--muted)
        }

    .ps-bar button {
        background: var(--navy);
        color: #fff;
        border: none;
        padding: 13px 20px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        font-family: var(--fb);
        display: flex;
        align-items: center;
        gap: 7px;
        transition: background .15s;
        flex-shrink: 0
    }

        .ps-bar button:hover {
            background: var(--navy2)
        }

        .ps-bar button svg {
            width: 15px;
            height: 15px;
            stroke: #fff;
            fill: none;
            stroke-width: 2.5px;
        }

.ps-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 6px
}

.ps-tag {
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    border: 1.5px solid var(--border);
    background: var(--white);
    color: var(--slate);
    cursor: pointer;
    transition: all .15s
}

    .ps-tag:hover {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy)
    }

.ps-results {
    max-width: 620px;
    margin: 14px auto 0;
    background: var(--white);
    border: 1.5px solid var(--border);
    border-radius: var(--rl);
    box-shadow: var(--shmd);
    display: none;
    overflow: hidden;
    text-align: left
}

.ps-item {
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: background .12s;
    display: flex;
    align-items: flex-start;
    gap: 11px
}

    .ps-item:last-child {
        border-bottom: none
    }

    .ps-item:hover {
        background: var(--off)
    }

    .ps-item svg {
        width: 16px;
        height: 16px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        margin-top: 2px
    }

    .ps-item strong {
        display: block;
        font-size: 13px;
        color: var(--dark);
        margin-bottom: 2px
    }

    .ps-item span {
        font-size: 12px;
        color: var(--muted)
    }

.ps-empty {
    padding: 20px 18px;
    font-size: 13px;
    color: var(--muted);
    text-align: center
}

/* ══ HOW IT WORKS ══ */
.how-sec {
    background: var(--navy);
    padding: 68px 0
}

.how-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 24px
}

.how-hdr {
    text-align: center;
    margin-bottom: 44px
}

    .how-hdr h2 {
        color: #fff;
        font-size: clamp(22px,3vw,36px);
        margin-bottom: 10px
    }

    .how-hdr p {
        color: rgba(255,255,255,.6);
        font-size: 14.5px
    }

.steps {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    position: relative
}

    .steps::before {
        content: '';
        position: absolute;
        top: 27px;
        left: 12%;
        right: 12%;
        height: 2px;
        background: rgba(255,255,255,.1);
        z-index: 0
    }

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 14px;
    position: relative;
    z-index: 1
}

.step-num {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: linear-gradient(135deg,var(--teal),var(--teal2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: 20px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 4px 18px rgba(14,158,110,.4)
}

.step h4 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 7px
}

.step p {
    font-size: 12px;
    color: rgba(255,255,255,.52);
    line-height: 1.65
}

/* ══ STATS ══ */
.stats-sec {
    background: linear-gradient(155deg,var(--navy-dk),var(--navy));
    padding: 52px 0
}

.stats-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4,1fr)
}

.stat {
    text-align: center;
    padding: 14px;
    position: relative
}

    .stat + .stat::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        height: 48px;
        width: 1px;
        background: rgba(255,255,255,.12)
    }

.stat-n {
    font-family: var(--fh);
    font-size: clamp(32px,5vw,46px);
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px
}

    .stat-n span {
        color: var(--teal2)
    }

.stat-l {
    font-size: 12px;
    color: rgba(255,255,255,.52);
    font-weight: 500
}

/* ══ CTA ══ */
.cta-sec {
    background: linear-gradient(135deg,var(--navy-dk),var(--navy));
    padding: 72px 24px;
    text-align: center
}

    .cta-sec h2 {
        color: #fff;
        font-size: clamp(22px,3vw,38px);
        margin-bottom: 12px
    }

    .cta-sec p {
        color: rgba(255,255,255,.68);
        font-size: 15px;
        max-width: 480px;
        margin: 0 auto 26px
    }

.cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}

.btn-lg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--fb);
    transition: all .15s
}

.btn-teal-lg {
    background: var(--teal);
    color: #fff
}

    .btn-teal-lg:hover {
        background: var(--teal-dk)
    }

    .btn-teal-lg svg {
        stroke: #fff;
        fill: none;
        stroke-width: 2
    }

.btn-ghost-lg {
    background: rgba(255,255,255,.12);
    color: #fff;
    border: 1.5px solid rgba(255,255,255,.24)
}

    .btn-ghost-lg:hover {
        background: rgba(255,255,255,.2)
    }

    .btn-ghost-lg svg {
        stroke: #fff;
        fill: none;
        stroke-width: 2
    }

/* ══ FOOTER ══ */
footer {
    background: #060F2A;
    padding: 50px 24px 22px
}

.foot-inner {
    max-width: 1200px;
    margin: 0 auto
}

.foot-top {
    display: grid;
    grid-template-columns: 1.8fr repeat(6,1fr);
    gap: 26px;
    margin-bottom: 38px;
    align-items: start
}

.foot-brand p {
    font-size: 12px;
    color: rgba(255,255,255,.42);
    line-height: 1.7;
    margin-top: 12px
}

.contact-block {
    margin-top: 14px
}

    .contact-block p {
        font-size: 12px;
        color: rgba(255,255,255,.42);
        margin-bottom: 3px
    }

    .contact-block a {
        color: var(--teal2);
        font-size: 12px;
        font-weight: 500
    }

.fcol h5 {
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .09em;
    margin-bottom: 11px
}

.fcol ul {
    list-style: none
}

.fcol li {
    margin-bottom: 6px
}

.fcol a, .fcol button {
    color: rgba(255,255,255,.45);
    font-size: 12px;
    font-family: var(--fb);
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    text-align: left;
    transition: color .15s;
    line-height: 1.5;
    display: block
}

    .fcol a:hover, .fcol button:hover {
        color: #fff
    }

.foot-div {
    height: 1px;
    background: rgba(255,255,255,.08);
    margin-bottom: 18px
}

.foot-bot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px
}

    .foot-bot p {
        font-size: 11px;
        color: rgba(255,255,255,.28)
    }

.fbadges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap
}

.fbadge {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    color: rgba(255,255,255,.35)
}

    .fbadge svg {
        width: 12px;
        height: 12px;
        stroke: rgba(255,255,255,.35);
        fill: none;
        stroke-width: 2
    }

.foot-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 4px
}

.foot-logo-mark {
    width: 32px;
    height: 32px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center
}

    .foot-logo-mark svg {
        width: 16px;
        height: 16px;
        stroke: #fff;
        fill: none;
        stroke-width: 2;
        stroke-linecap: round
    }

.foot-logo strong {
    color: #fff;
    font-family: var(--fh);
    font-size: 13px;
    font-weight: 800
}

.foot-logo span {
    color: var(--teal2);
    font-size: 10px;
    display: block;
    line-height: 1.2
}

/* ══ MODALS & LOGIN PAGES (shared) ══ */
.overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(6,15,42,.68);
    align-items: flex-start;
    justify-content: center;
    padding: 52px 16px 20px;
    overflow-y: auto
}

    .overlay.open {
        display: flex
    }

.modal {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 860px;
    overflow: hidden;
    position: relative;
    animation: slideUp .2s ease
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(18px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.modal-header {
    padding: 28px 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    overflow: hidden
}

.mh-navy {
    background: linear-gradient(155deg,var(--navy-dk),#1E3AB8)
}

.mh-purple {
    background: linear-gradient(155deg,#3A1870,var(--purple))
}

.mh-teal {
    background: linear-gradient(155deg,var(--teal-dk),var(--teal))
}

.modal-header::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 280px;
    height: 280px;
    background: radial-gradient(circle,rgba(17,196,135,.12),transparent)
}

.modal-title h2 {
    color: #fff;
    font-size: clamp(18px,2.5vw,22px);
    margin-bottom: 5px
}

.modal-title p {
    color: rgba(255,255,255,.68);
    font-size: 13px;
    max-width: 480px
}

.modal-close {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.14);
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background .15s;
    margin-left: 14px
}

    .modal-close:hover {
        background: rgba(255,255,255,.24)
    }

    .modal-close svg {
        width: 16px;
        height: 16px;
        stroke: #fff;
        fill: none;
        stroke-width: 2.5px;
    }

.modal-body {
    padding: 28px 32px;
    max-height: 75vh;
    overflow-y: auto
}

.modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
    margin-top: 12px
}

.modal-card {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 16px
}

    .modal-card h4 {
        font-size: 13px;
        margin-bottom: 5px
    }

    .modal-card p {
        font-size: 13px;
        color: var(--muted)
    }

.flist {
    list-style: none;
    margin-top: 8px
}

    .flist li {
        display: flex;
        align-items: flex-start;
        gap: 8px;
        padding: 7px 0;
        border-bottom: 1px solid var(--border);
        font-size: 13px;
        color: var(--slate)
    }

        .flist li:last-child {
            border-bottom: none
        }

.fcheck {
    width: 17px;
    height: 17px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px
}

    .fcheck svg {
        width: 9px;
        height: 9px;
        stroke: #fff;
        stroke-width: 2.5px;
        fill: none
    }

.insp-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 11px;
    margin-top: 12px
}

.insp-card {
    background: var(--off);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 13px;
    border-top: 3px solid var(--teal)
}

    .insp-card h4 {
        font-size: 13px;
        margin-bottom: 5px
    }

    .insp-card p {
        font-size: 12px;
        color: var(--muted)
    }

.faq-item {
    border-bottom: 1px solid var(--border)
}

.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    gap: 10px
}

    .faq-q svg {
        width: 16px;
        height: 16px;
        stroke: var(--muted);
        fill: none;
        stroke-width: 2;
        flex-shrink: 0;
        transition: transform .2s
    }

    .faq-q.open svg {
        transform: rotate(180deg)
    }

.faq-a {
    font-size: 13px;
    color: var(--muted);
    padding: 0 0 13px;
    line-height: 1.7;
    display: none
}

    .faq-a.open {
        display: block
    }

.form-group {
    margin-bottom: 13px
}

label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 4px
}

input, select, textarea {
    width: 100%;
    padding: 10px 13px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-size: 13px;
    font-family: var(--fb);
    color: var(--slate);
    background: #fff;
    outline: none;
    transition: border .15s
}

    input:focus, select:focus, textarea:focus {
        border-color: var(--teal)
    }

textarea {
    resize: vertical;
    min-height: 80px
}

.mfg {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 11px
}

.alert-ok {
    background: var(--mint);
    border: 1px solid var(--teal);
    border-radius: 9px;
    padding: 11px 14px;
    font-size: 13px;
    color: #085041;
    display: none;
    margin-bottom: 12px;
    font-weight: 500
}

.pricing-row {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 13px;
    margin-top: 14px
}

.p-card {
    border: 1.5px solid var(--border);
    border-radius: var(--r);
    padding: 18px;
    position: relative
}

    .p-card.feat-p {
        background: var(--navy);
        border-color: var(--navy)
    }

        .p-card.feat-p h4, .p-card.feat-p .pp, .p-card.feat-p .pf {
            color: rgba(255,255,255,.8) !important
        }

        .p-card.feat-p .pn {
            color: #fff
        }

.pop-b {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: #5A3000;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 11px;
    border-radius: 99px;
    white-space: nowrap
}

.pn {
    font-family: var(--fh);
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 2px
}

.pp {
    font-size: 11px;
    color: var(--muted);
    margin-bottom: 10px
}

.pf {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6
}
/* Login pages */
.login-page {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    overflow-y: auto
}

    .login-page.open {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100vh;
        padding: 40px 16px
    }

.lp-navy {
    background: linear-gradient(155deg,var(--navy-dk),var(--navy))
}

.lp-purple {
    background: linear-gradient(155deg,#3A1870,var(--purple))
}

.lp-teal {
    background: linear-gradient(155deg,var(--teal-dk),var(--teal))
}

.login-box {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 480px;
    overflow: hidden;
    animation: slideUp .22s ease
}

.login-top {
    padding: 28px 28px 22px;
    position: relative;
    overflow: hidden
}

.lt-navy {
    background: linear-gradient(155deg,var(--navy-dk),#1E3CB8)
}

.lt-purple {
    background: linear-gradient(155deg,#3A1870,var(--purple))
}

.lt-teal {
    background: linear-gradient(155deg,var(--teal-dk),var(--teal))
}

.login-top::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle,rgba(255,255,255,.08),transparent)
}

.lt-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px
}

    .lt-logo div {
        width: 28px;
        height: 28px;
        background: rgba(255,255,255,.2);
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center
    }

        .lt-logo div svg {
            width: 15px;
            height: 15px;
            stroke: #fff;
            fill: none;
            stroke-width: 2;
            stroke-linecap: round
        }

    .lt-logo span {
        color: #fff;
        font-family: var(--fh);
        font-size: 13px;
        font-weight: 700
    }

.login-top h2 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 4px
}

.login-top p {
    color: rgba(255,255,255,.65);
    font-size: 13px
}

.login-body {
    padding: 24px 28px 28px
}

.lf .form-group {
    margin-bottom: 13px
}

.lbk {
    display: flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--fb);
    font-size: 13px;
    color: rgba(255,255,255,.6);
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 10;
    padding: 5px 9px;
    border-radius: 6px;
    transition: all .15s
}

    .lbk:hover {
        background: rgba(255,255,255,.1);
        color: #fff
    }

    .lbk svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2
    }

.login-div {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 14px 0
}

    .login-div span {
        font-size: 12px;
        color: var(--muted);
        white-space: nowrap
    }

    .login-div::before, .login-div::after {
        content: '';
        flex: 1;
        height: 1px;
        background: var(--border)
    }

.forgot {
    font-size: 12px;
    color: var(--teal);
    display: block;
    text-align: right;
    margin-top: -8px;
    margin-bottom: 13px;
    cursor: pointer
}

.login-reg {
    text-align: center;
    margin-top: 13px;
    padding-top: 13px;
    border-top: 1px solid var(--border)
}

    .login-reg p {
        font-size: 13px;
        color: var(--muted)
    }

    .login-reg button {
        color: var(--teal);
        font-weight: 600;
        background: none;
        border: none;
        cursor: pointer;
        font-family: var(--fb);
        font-size: 13px
    }

.btn-lg-login {
    width: 100%;
    padding: 12px;
    border-radius: var(--r);
    font-size: 14px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    font-family: var(--fb);
    transition: all .15s
}

.bll-n {
    background: var(--navy);
    color: #fff
}

    .bll-n:hover {
        background: var(--navy2)
    }

.bll-p {
    background: var(--purple);
    color: #fff
}

    .bll-p:hover {
        background: var(--purple2)
    }

.bll-t {
    background: var(--teal);
    color: #fff
}

    .bll-t:hover {
        background: var(--teal-dk)
    }

.role-select {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    margin-bottom: 14px
}

.role-btn {
    padding: 9px 11px;
    border: 1.5px solid var(--border);
    border-radius: 9px;
    font-family: var(--fb);
    font-size: 12px;
    font-weight: 600;
    color: var(--slate);
    background: #fff;
    cursor: pointer;
    text-align: center;
    transition: all .15s
}

    .role-btn:hover, .role-btn.selected {
        background: var(--sky);
        border-color: var(--navy);
        color: var(--navy)
    }

.prog-bar {
    height: 3px;
    background: var(--border);
    border-radius: 99px;
    margin-bottom: 18px;
    overflow: hidden
}

.prog-fill {
    height: 100%;
    border-radius: 99px;
    background: var(--teal);
    transition: width .3s
}

.reg-step {
    display: none
}

    .reg-step.active {
        display: block
    }

.sdots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px
}

.sdot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border);
    transition: background .3s
}

    .sdot.active {
        background: var(--teal)
    }

    .sdot.done {
        background: var(--teal2)
    }
/* Org register plan card */
.plan-card {
    border: 2px solid var(--border);
    border-radius: var(--r);
    padding: 16px;
    cursor: pointer;
    transition: all .15s
}

    .plan-card:hover {
        border-color: var(--teal)
    }

/* ══════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   1200px  Large desktop (already handled above)
   1024px  Small desktop / large tablet landscape
   768px   Tablet portrait
   640px   Large phone / small tablet
   480px   Phone
   360px   Small phone
══════════════════════════════════════════════ */

/* ── 1024px — Small desktop ── */
@media (max-width:1024px) {
    .nav-links {
        display: none
    }

    .insp-badge {
        display: none
    }

    .nav-hamburger {
        display: flex
    }

    .login-cards {
        grid-template-columns: repeat(3,1fr);
        gap: 14px
    }

    .feat-strip {
        grid-template-columns: repeat(5,1fr)
    }

    .steps {
        grid-template-columns: repeat(4,1fr)
    }

    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 24px
    }

    .fcol:nth-child(n+3) {
        margin-top: 8px
    }
}

/* ── 768px — Tablet ── */
@media (max-width:768px) {
    /* Header */
    .nav {
        height: 60px;
        padding: 0 16px
    }

    .logo-mark {
        width: 34px;
        height: 34px
    }

    .logo-text strong {
        font-size: 14px
    }

    .logo-text em {
        display: none
    }

    .contact-btn {
        display: none
    }

    .wa-btn {
        display: none
    }
    /* Hero */
    .hero {
        padding: 48px 0 36px
    }

    h1.hero-title {
        font-size: 36px
    }

    .hero-sub {
        font-size: 14px
    }

    .hero-q {
        font-size: 14px
    }
    /* 3 login cards → 1 column */
    .login-cards {
        grid-template-columns: 1fr;
        gap: 14px;
        max-width: 480px
    }
    /* Feature strip → 2 columns */
    .feat-strip {
        grid-template-columns: repeat(2,1fr);
        gap: 10px;
        padding: 14px 16px
    }

    .fs-item + .fs-item::before {
        display: none
    }

    .fs-item:nth-child(1), .fs-item:nth-child(2), .fs-item:nth-child(3), .fs-item:nth-child(4) {
        border-bottom: 1px solid rgba(255,255,255,.1);
        padding-bottom: 12px
    }
    /* Trust bar */
    .trust-bar {
        gap: 0;
        padding: 10px 16px;
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none
    }

        .trust-bar::-webkit-scrollbar {
            display: none
        }

    .tb-item {
        font-size: 12px;
        padding: 5px 16px;
        white-space: nowrap
    }
    /* Policy search */
    .ps-sec {
        padding: 36px 0
    }

    .ps-bar {
        border-radius: var(--r)
    }

        .ps-bar input {
            font-size: 13px
        }

    .ps-tags {
        gap: 6px
    }

    .ps-tag {
        font-size: 11px;
        padding: 5px 10px
    }
    /* How it works → 2 col */
    .steps {
        grid-template-columns: repeat(2,1fr);
        gap: 24px
    }

        .steps::before {
            display: none
        }
    /* Stats → 2 col */
    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .stat + .stat::before {
        display: none
    }

    .stat {
        border-bottom: 1px solid rgba(255,255,255,.08);
        padding: 16px 0
    }
    /* CTA */
    .cta-sec {
        padding: 52px 16px
    }

    .cta-btns {
        gap: 10px
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: 13px
    }
    /* Footer */
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 20px
    }

    .foot-bot {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px
    }

    .fbadges {
        display: none
    }
    /* Modal */
    .modal {
        border-radius: 16px
    }

    .modal-header {
        padding: 22px 20px 18px
    }

    .modal-body {
        padding: 20px;
        max-height: 80vh
    }

    .modal-grid {
        grid-template-columns: 1fr
    }

    .mfg {
        grid-template-columns: 1fr
    }

    .insp-grid {
        grid-template-columns: 1fr 1fr
    }

    .pricing-row {
        grid-template-columns: 1fr
    }
    /* Login boxes */
    .login-top {
        padding: 24px 22px 18px
    }

    .login-body {
        padding: 20px 22px 24px
    }

    .role-select {
        grid-template-columns: 1fr 1fr
    }
}

/* ── 640px — Large phone ── */
@media (max-width:640px) {
    /* Hero */
    .hero {
        padding: 40px 0 28px
    }

    h1.hero-title {
        font-size: 30px
    }

    .hero-pill {
        font-size: 12px;
        padding: 6px 13px
    }

    .hero-divider {
        margin: 10px auto 14px
    }
    /* Feature strip → 2 col tighter */
    .feat-strip {
        grid-template-columns: repeat(2,1fr);
        gap: 8px;
        padding: 12px
    }
    /* Policy search */
    .ps-bar button span {
        display: none
    }
    /* How it works → single col */
    .steps {
        grid-template-columns: 1fr;
        gap: 20px
    }

    .step {
        flex-direction: row;
        text-align: left;
        gap: 14px;
        align-items: flex-start
    }

    .step-num {
        flex-shrink: 0;
        margin-bottom: 0
    }

    .step h4, .step p {
        text-align: left
    }
    /* Stats → 2x2 */
    .stats-inner {
        grid-template-columns: repeat(2,1fr)
    }

    .stat-n {
        font-size: 36px
    }
    /* Footer 2 col */
    .foot-top {
        grid-template-columns: 1fr 1fr;
        gap: 18px
    }

    .foot-brand {
        grid-column: 1/-1
    }
    /* Trust bar items reduce */
    .tb-item {
        padding: 5px 12px
    }

        .tb-item svg {
            display: none
        }
}

/* ── 480px — Phone ── */
@media (max-width:480px) {
    .nav {
        height: 56px;
        padding: 0 14px
    }

    .logo-mark {
        width: 30px;
        height: 30px
    }

        .logo-mark svg {
            width: 16px;
            height: 16px
        }

    .logo-text strong {
        font-size: 13px
    }
    /* Hero */
    .hero {
        padding: 32px 0 24px
    }

    .hero-inner {
        padding: 0 16px
    }

    h1.hero-title {
        font-size: 26px
    }

    .hero-sub {
        font-size: 13px
    }

    .hero-center {
        margin-bottom: 24px
    }

    .hero-q {
        font-size: 13px
    }
    /* Login cards full width */
    .login-cards {
        gap: 12px;
        max-width: 100%
    }

    .lcard {
        padding: 20px 16px 18px
    }

    .lcard-ico {
        width: 52px;
        height: 52px;
        border-radius: 13px
    }

        .lcard-ico svg {
            width: 26px;
            height: 26px
        }

    .lcard h3 {
        font-size: 15px
    }

    .lcard > p {
        font-size: 12px
    }

    .lcbtn {
        padding: 11px 13px;
        font-size: 12px
    }
    /* Feature strip 2 col small */
    .feat-strip {
        gap: 6px;
        padding: 10px 12px;
        border-radius: var(--r)
    }

    .fs-ico {
        width: 36px;
        height: 36px
    }

        .fs-ico svg {
            width: 18px;
            height: 18px
        }

    .fs-item span {
        font-size: 10.5px
    }
    /* Trust bar */
    .trust-bar {
        padding: 8px 14px
    }

    .tb-item {
        font-size: 11px;
        padding: 4px 10px
    }
    /* Policy section */
    .ps-sec {
        padding: 28px 0
    }

    .ps-inner {
        padding: 0 16px
    }

    .ps-sec h2 {
        font-size: 20px
    }

    .ps-sec > div > p {
        font-size: 13px
    }

    .ps-bar input {
        padding: 11px 14px;
        font-size: 13px
    }

    .ps-bar button {
        padding: 11px 16px;
        font-size: 12px
    }

    .ps-tags {
        gap: 5px
    }

    .ps-tag {
        font-size: 11px;
        padding: 4px 9px
    }
    /* How it works */
    .how-inner {
        padding: 0 16px
    }

    .how-hdr {
        margin-bottom: 28px
    }
    /* Stats */
    .stats-inner {
        padding: 0 16px
    }
    /* CTA */
    .cta-sec {
        padding: 40px 16px
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 8px
    }

    .btn-lg {
        width: 100%;
        max-width: 300px;
        justify-content: center
    }
    /* Footer */
    footer {
        padding: 36px 16px 18px
    }

    .foot-top {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .foot-bot {
        font-size: 10px
    }
    /* Modal */
    .overlay {
        padding: 0;
        align-items: flex-end
    }

    .modal {
        border-radius: 20px 20px 0 0;
        max-width: 100%;
        animation: slideUpFull .22s ease
    }

    @keyframes slideUpFull {
        from {
            transform: translateY(100%)
        }

        to {
            transform: translateY(0)
        }
    }

    .modal-header {
        padding: 18px 18px 14px
    }

    .modal-body {
        padding: 16px 18px;
        max-height: 70vh
    }
    /* Login pages */
    .login-page {
        align-items: flex-end;
        padding: 0
    }

    .login-box {
        border-radius: 20px 20px 0 0;
        max-width: 100%
    }

    .login-top {
        padding: 20px 18px 16px
    }

    .login-body {
        padding: 16px 18px 24px
    }
}

/* ── 360px — Small phone ── */
@media (max-width:360px) {
    h1.hero-title {
        font-size: 22px
    }

    .lcard {
        padding: 16px 14px 14px
    }

    .login-cards {
        gap: 10px
    }

    .feat-strip {
        display: none
    }

    .stat-n {
        font-size: 30px
    }
}


/* ══ DASHBOARD ADVERT ══ */
.dash-advert {
    background: linear-gradient(180deg,#F0F4FF 0%,#E8F0FE 40%,#EBF4FF 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden
}

    .dash-advert::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: radial-gradient(rgba(26,43,140,.045) 1px,transparent 1px);
        background-size: 26px 26px;
        pointer-events: none
    }

.da-inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1
}

.da-hdr {
    text-align: center;
    margin-bottom: 44px
}

.da-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--mint);
    color: #085041;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 99px;
    margin-bottom: 16px
}

    .da-chip::before {
        content: '';
        width: 7px;
        height: 7px;
        background: #0D9488;
        border-radius: 50%;
        animation: chipblink 2s infinite
    }

@keyframes chipblink {
    0%,100% {
        opacity: 1
    }

    50% {
        opacity: .4
    }
}

.da-hdr h2 {
    font-family: var(--fh);
    font-size: clamp(24px,3.2vw,40px);
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2
}

.da-hdr p {
    font-size: 15px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7
}
/* Browser frame */
.da-browser {
    max-width: 1040px;
    margin: 0 auto;
    filter: drop-shadow(0 28px 70px rgba(26,43,140,.20)) drop-shadow(0 8px 20px rgba(0,0,0,.12));
    border-radius: 14px;
    overflow: hidden
}

.da-chrome {
    background: #EBEDF2;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1.5px solid #D1D5DB
}

.da-dots {
    display: flex;
    gap: 6px
}

.da-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%
}

.da-dot-r {
    background: #FF5F57
}

.da-dot-y {
    background: #FFBD2E
}

.da-dot-g {
    background: #28C840
}

.da-bar {
    flex: 1;
    max-width: 400px;
    margin: 0 auto;
    background: #fff;
    border-radius: 5px;
    padding: 4px 11px;
    font-size: 12px;
    font-family: var(--fb);
    color: #6B7280;
    display: flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #E5E7EB
}

    .da-bar svg {
        width: 11px;
        height: 11px;
        stroke: #9CA3AF;
        fill: none;
        stroke-width: 2;
        flex-shrink: 0
    }

.da-spacer {
    display: flex;
    gap: 8px
}

.da-act {
    width: 16px;
    height: 10px;
    background: #D1D5DB;
    border-radius: 3px
}

.da-screenshot {
    display: block;
    width: 100%;
    height: auto;
    vertical-align: bottom
}
/* Pills row */
.da-pills {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 38px
}

.da-pill {
    display: flex;
    align-items: center;
    gap: 9px;
    background: #fff;
    border: 1.5px solid #D1D8F0;
    border-radius: 99px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    box-shadow: 0 2px 12px rgba(26,43,140,.07);
    transition: all .2s
}

    .da-pill:hover {
        border-color: var(--navy);
        transform: translateY(-1px);
        box-shadow: 0 4px 18px rgba(26,43,140,.13)
    }

    .da-pill svg {
        width: 15px;
        height: 15px;
        stroke: var(--teal);
        fill: none;
        stroke-width: 2.5px;
        flex-shrink: 0
    }
/* CTA below advert */
.da-cta {
    text-align: center;
    margin-top: 38px
}

    .da-cta p {
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 14px
    }

.da-cta-btns {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap
}
/* Responsive */
@media(max-width:768px) {
    .dash-advert {
        padding: 52px 0 44px
    }

    .da-hdr h2 {
        font-size: 22px
    }

    .da-hdr p {
        font-size: 13.5px
    }

    .da-chrome {
        padding: 8px 10px
    }

    .da-bar {
        max-width: 220px;
        font-size: 10.5px
    }

    .da-dots {
        gap: 5px
    }

    .da-dot {
        width: 10px;
        height: 10px
    }

    .da-pills {
        gap: 9px
    }

    .da-pill {
        font-size: 12px;
        padding: 8px 14px
    }
}

@media(max-width:480px) {
    .dash-advert {
        padding: 40px 0 34px
    }

    .da-hdr {
        margin-bottom: 28px
    }

        .da-hdr h2 {
            font-size: 20px
        }

    .da-dots {
        display: none
    }

    .da-bar {
        max-width: 180px;
        font-size: 10px
    }

    .da-pill {
        font-size: 11.5px;
        padding: 7px 12px
    }
}

@media(max-width:768px) {
    .preview-sec {
        padding: 44px 0
    }

    .browser-chrome {
        padding: 8px 10px
    }

    .bc-bar {
        max-width: 200px
    }

    .preview-pills {
        gap: 8px
    }

    .ppill {
        font-size: 12px;
        padding: 7px 13px
    }
}

@media(max-width:480px) {
    .preview-sec {
        padding: 32px 0
    }

    .preview-hdr h2 {
        font-size: 20px
    }

    .preview-hdr p {
        font-size: 13px
    }

    .preview-pills {
        gap: 6px
    }

    .ppill {
        font-size: 11px;
        padding: 6px 11px
    }

    .bc-dots {
        display: none
    }
}
