:root {
    --bg: #F5F8F4;
    --card: #FFFFFF;
    --ink: #16241B;
    --ink-soft: #51604F;
    --green: #1E6B43;
    --green-deep: #103D27;
    --peach: #FF8552;
    --sky: #CDE6F5;
    --sun: #FFE8A3;
    --line: #E1E8DE;
    --r: 18px;
    --shadow: 0 2px 6px rgba(22, 36, 27, .05), 0 14px 30px rgba(22, 36, 27, .07);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Figtree', system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

h1,
h2,
h3 {
    font-family: 'Bricolage Grotesque', sans-serif;
    line-height: 1.1;
    letter-spacing: -.015em
}

a {
    color: inherit
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

section {
    padding: 80px 0
}

.kicker {
    display: inline-block;
    font-weight: 700;
    font-size: .78rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--green);
    background: #E4F0E7;
    border-radius: 999px;
    padding: 7px 15px;
    margin-bottom: 18px
}

:focus-visible {
    outline: 3px solid var(--green);
    outline-offset: 3px;
    border-radius: 6px
}

@media(prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }
}

/* ---------- NAV ---------- */
nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(245, 248, 244, .88);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px
}

.logo {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.18rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px
}

.logo img {
    display: block;
    width: 48px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 26px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-size: .93rem;
    font-weight: 500;
    color: var(--ink-soft);
    padding: 10px 2px;
    transition: color .2s
}

.nav-links a:hover {
    color: var(--green)
}

.nav-call {
    background: var(--green);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: .92rem;
    box-shadow: 0 4px 14px rgba(30, 107, 67, .28);
    transition: transform .2s
}

.nav-call:hover {
    transform: translateY(-2px)
}

@media(max-width:840px) {
    .nav-links {
        display: none
    }
}

/* ---------- HERO ---------- */
.hero {
    padding: 84px 0 64px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 52px;
    align-items: center
}

.hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px
}

.hero h1 .hl {
    color: var(--green);
    position: relative;
    white-space: nowrap
}

.hero h1 .hl::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 32%;
    background: var(--sun);
    z-index: -1;
    border-radius: 4px
}

.hero .lede {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 500px;
    margin-bottom: 32px
}

.cta-row {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 22px
}

.btn {
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    padding: 17px 30px;
    font-size: 1.02rem;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    transition: transform .2s, box-shadow .2s
}

.btn-primary {
    background: var(--green);
    color: #fff;
    box-shadow: 0 8px 22px rgba(30, 107, 67, .3)
}

.btn-primary:hover {
    transform: translateY(-3px)
}

.btn-soft {
    background: #fff;
    border: 1.5px solid var(--line);
    color: var(--ink)
}

.btn-soft:hover {
    border-color: var(--green)
}

.phone-big {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--peach);
    text-decoration: none
}

.micro {
    font-size: .86rem;
    color: var(--ink-soft);
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 10px
}

.micro b {
    color: var(--green)
}

/* hero bento preview */
.hero-bento img{
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 1.5rem;
}

.hb {
    border-radius: var(--r);
    background: var(--card);
    box-shadow: var(--shadow);
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden
}

.hb .v {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.7rem
}

.hb .k {
    font-size: .8rem;
    color: var(--ink-soft)
}

.hb.tall {
    grid-row: span 2;
    justify-content: space-between
}

.hb.green {
    background: var(--green-deep);
    color: #EAF5EC
}

.hb.green .k {
    color: #A9CDB4
}

.hb.peachy {
    background: var(--peach);
    color: #fff
}

.hb.peachy .k {
    color: #FFE3D4
}

.ph {
    border: 2px dashed #9FBCA8;
    border-radius: var(--r);
    background: repeating-linear-gradient(45deg, rgba(30, 107, 67, .05), rgba(30, 107, 67, .05) 12px, transparent 12px, transparent 24px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    padding: 18px;
    color: var(--green)
}

.ph .tag {
    font-size: .62rem;
    letter-spacing: .18em;
    border: 1px solid currentColor;
    padding: 3px 9px;
    border-radius: 4px;
    font-weight: 700
}

.ph p {
    font-size: .8rem;
    color: var(--ink-soft);
    max-width: 240px
}

.ph .dim {
    font-size: .68rem;
    opacity: .65;
    font-weight: 600
}

.pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #3DBE78;
    display: inline-block;
    margin-right: 7px;
    animation: pl 2s infinite
}

@keyframes pl {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(61, 190, 120, .5)
    }

    50% {
        box-shadow: 0 0 0 7px rgba(61, 190, 120, 0)
    }
}

@media(max-width:920px) {
    .hero-grid {
        grid-template-columns: 1fr
    }
}

/* ---------- GLANCE BENTO (unique) ---------- */
.sec-head {
    max-width: 620px;
    margin-bottom: 44px
}

.sec-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    font-weight: 800
}

.sec-head p {
    color: var(--ink-soft);
    margin-top: 12px
}

.bento {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.b {
    background: var(--card);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    padding: 24px;
    position: relative;
    overflow: hidden;
    transition: transform .22s
}

.b:hover {
    transform: translateY(-4px)
}

.b h3 {
    font-size: 1.05rem;
    margin-bottom: 6px
}

.b p {
    font-size: .88rem;
    color: var(--ink-soft)
}

.b .big {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 2.1rem;
    color: var(--green)
}

.b-span3 {
    grid-column: span 3
}

.b-span2 {
    grid-column: span 2
}

.b-row2 {
    grid-row: span 2
}

.b.invert {
    background: var(--green-deep);
    color: #EAF5EC
}

.b.invert p {
    color: #A9CDB4
}

.b.invert .big {
    color: var(--sun)
}

.b.sunny {
    background: var(--sun)
}

.b.skyc {
    background: var(--sky)
}

.steps-inline {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 12px
}

.stp {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: .9rem
}

.stp i {
    font-style: normal;
    min-width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: .74rem;
    font-weight: 700
}
.bento-stats{
    font-size: 2rem;
    font-weight: bold;
}
.bento-action{
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}
@media(max-width:980px) {
    .bento {
        grid-template-columns: repeat(2, 1fr)
    }

    .b-span3,
    .b-span2 {
        grid-column: span 2
    }
}

@media(max-width:560px) {
    .bento {
        grid-template-columns: 1fr
    }

    .b-span3,
    .b-span2 {
        grid-column: span 1
    }
}

/* ---------- NEIGHBORHOOD EXPLORER (unique) ---------- */
.hoods {
    background: var(--card);
    border-radius: 28px;
    box-shadow: var(--shadow);
    padding: 54px 6%
}

.hood-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px
}

.chip {
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 12px 20px;
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    background: #fff;
    transition: all .2s;
    min-height: 44px
}

.chip:hover {
    border-color: var(--green);
    color: var(--green)
}

.chip.on {
    background: var(--green);
    border-color: var(--green);
    color: #fff
}

.hood-detail {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
    border-top: 1px solid var(--line);
    padding-top: 28px
}

.hood-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 10px
}

.hood-detail p {
    color: var(--ink-soft);
    font-size: .96rem
}

.hood-ph {
    aspect-ratio: 16/9
}

@media(max-width:820px) {
    .hood-detail {
        grid-template-columns: 1fr
    }
}

/* ---------- SWIPE VS SPEAK (unique) ---------- */
.versus {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch
}

.v-col {
    border-radius: 22px;
    padding: 1.5rem;
    background-color: #fff;
}

.v-col.apps {
    background: #ECEFEA;
    color: var(--ink-soft)
}

.v-col.voice {
    background: var(--green-deep);
    color: #EAF5EC;
    position: relative;
    overflow: hidden
}

.v-col h2 {
    margin-bottom: 12px
}

.v-col.voice h3 {
    color: #fff
}

.v-col .btn{
    margin-top: 1.5rem;
}

.v-li {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 11px 0;
    font-size: .95rem;
    border-bottom: 1px dashed rgba(0, 0, 0, .1)
}

.v-col.voice .v-li {
    border-bottom: 1px dashed rgba(255, 255, 255, .16)
}

.v-li:last-child {
    border: none
}

.v-li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px
}

.v-col.apps svg {
    stroke: #A33C3C
}

.v-col.voice svg {
    stroke: #7CDFA8
}

.badge-win {
    position: absolute;
    top: 22px;
    right: 22px;
    background: var(--peach);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    letter-spacing: .1em;
    padding: 7px 13px;
    border-radius: 999px
}

@media(max-width:820px) {
    .versus {
        grid-template-columns: 1fr
    }
}

/* ---------- SAFETY ---------- */
.safe-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px
}

.s-card {
    background: var(--card);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    padding: 26px 24px
}

.s-card .ic {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #E4F0E7;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.s-card .ic svg {
    width: 22px;
    height: 22px;
    stroke: var(--green)
}

.s-card h3 {
    font-size: 1rem;
    margin-bottom: 6px
}

.s-card p {
    font-size: .86rem;
    color: var(--ink-soft)
}

.eeat-bar {
    margin-top: 24px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 18px 24px;
    font-size: .88rem;
    color: var(--ink-soft)
}

.eeat-bar b {
    color: var(--green)
}

@media(max-width:980px) {
    .safe-strip {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:560px) {
    .safe-strip {
        grid-template-columns: 1fr
    }
}

/* ---------- FAQ ---------- */
.faq {
    max-width: 800px;
    margin: 0 auto
}

details {
    background: var(--card);
    border-radius: var(--r);
    box-shadow: var(--shadow);
    margin-bottom: 14px;
    overflow: hidden
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 26px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 700;
    font-size: 1.02rem;
    min-height: 48px
}

summary::-webkit-details-marker {
    display: none
}

summary::after {
    content: "+";
    color: var(--peach);
    font-size: 1.5rem;
    transition: transform .25s
}

details[open] summary::after {
    transform: rotate(45deg)
}

details .ans {
    padding: 0 26px 24px;
    color: var(--ink-soft);
    font-size: .95rem;
    max-width: 660px
}

.updated {
    text-align: center;
    margin-top: 24px;
    font-size: .78rem;
    color: var(--ink-soft);
    letter-spacing: .08em;
    font-weight: 600
}

/* ---------- FINAL CTA ---------- */
.final {
    background: var(--green-deep);
    border-radius: 32px;
    color: #fff;
    text-align: center;
    padding: 84px 8%;
    position: relative;
    overflow: hidden
}

.final::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: rgba(255, 133, 82, .18);
    top: -200px;
    right: -120px
}

.final h2 {
    font-size: clamp(2rem, 4.4vw, 3.2rem);
    font-weight: 800;
    position: relative
}

.final p {
    color: #A9CDB4;
    margin: 14px 0 30px;
    position: relative
}

.final .phone-big {
    color: var(--sun);
    display: block;
    font-size: clamp(1.9rem, 4vw, 2.7rem);
    margin-bottom: 26px;
    position: relative
}

footer {
    padding: 46px 0 40px;
    font-size: .85rem;
    color: var(--ink-soft)
}

.foot {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap
}

.foot a {
    margin-left: 18px;
    text-decoration: none
}

.foot a:hover {
    color: var(--green)
}

.legal {
    margin-top: 14px;
    font-size: .76rem;
    opacity: .7
}