/* ============================================================
   TOKENS
============================================================ */
:root {
    --fog: #F4F6F8;
    --fog-deep: #E8ECF0;
    --fog-deeper: #D8DDE4;
    --navy: #1C2B3A;
    --navy-mid: #243548;
    --navy-light: #2E4260;
    --violet: #6B4EFF;
    --violet-mid: #7B61FF;
    --violet-pale: #EDEAFF;
    --violet-tint: #F5F3FF;
    --periwinkle: #E8EAFF;
    --white: #FFFFFF;
    --ink: #111827;
    --slate: #4B5563;
    --slate-lt: #9CA3AF;

    --sh-xs: 0 1px 4px rgba(17, 24, 39, 0.06);
    --sh-sm: 0 3px 14px rgba(17, 24, 39, 0.08);
    --sh-md: 0 8px 32px rgba(17, 24, 39, 0.10);
    --sh-lg: 0 18px 56px rgba(17, 24, 39, 0.12);

    --r: 14px;
    --r-lg: 24px;
    --r-pill: 100px;
    --mw: 1080px;
    --ease: 0.22s cubic-bezier(.4, 0, .2, 1);
}

/* ============================================================
   RESET
============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    background: var(--fog);
    color: var(--ink);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* ============================================================
   TYPE
============================================================ */
h1,
h2,
h3 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.1;
    color: var(--navy);
}

h1 {
    font-size: clamp(2.2rem, 5.2vw, 3.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(1.7rem, 3.6vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.025em;
}

h3 {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    letter-spacing: -0.01em;
}

p {
    color: var(--slate);
    line-height: 1.78;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 16px;
}

.tag::before {
    content: '';
    width: 22px;
    height: 2px;
    background: var(--violet);
    border-radius: 2px;
    flex-shrink: 0;
}

.tag-center {
    justify-content: center;
}

/* ============================================================
   LAYOUT
============================================================ */
.wrap {
    width: 100%;
    max-width: var(--mw);
    margin: 0 auto;
    padding: 0 30px;
}

.tc {
    text-align: center;
}

/* ============================================================
   BUTTONS
============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: -0.01em;
    padding: 14px 28px;
    border-radius: var(--r-pill);
    border: none;
    cursor: pointer;
    transition: var(--ease);
    white-space: nowrap;
    text-decoration: none;
}

.btn-violet {
    background: var(--violet);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(107, 78, 255, 0.30);
}

.btn-violet:hover {
    background: var(--violet-mid);
    box-shadow: 0 8px 32px rgba(107, 78, 255, 0.42);
    transform: translateY(-2px);
}

.btn-ghost {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--fog-deeper);
}

.btn-ghost:hover {
    border-color: var(--violet);
    color: var(--violet);
    background: var(--violet-tint);
}

.btn-navy {
    background: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(28, 43, 58, 0.25);
}

.btn-navy:hover {
    background: var(--navy-mid);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(28, 43, 58, 0.32);
}

/* Phone pill */
.phone-pill {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    background: var(--white);
    border: 1.5px solid var(--fog-deeper);
    border-radius: var(--r-pill);
    padding: 12px 26px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.02em;
    box-shadow: var(--sh-sm);
    transition: var(--ease);
    cursor: pointer;
}

.phone-pill:hover {
    border-color: var(--violet);
    box-shadow: var(--sh-md);
    transform: translateY(-2px);
    color: var(--violet);
}

.phone-pill svg {
    width: 17px;
    height: 17px;
    fill: none;
    stroke: var(--violet);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.disc {
    font-size: 0.77rem;
    color: var(--slate-lt);
    margin-top: 12px;
}

/* ============================================================
   NAVBAR
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(244, 246, 248, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--fog-deep);
}

.nav-inner {
    max-width: var(--mw);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    padding: 0 30px;
}

.brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--navy);
    letter-spacing: -0.03em;
    display: flex;
    align-items: center;
    gap: 2px;
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}
.nav-r {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--slate);
    transition: color var(--ease);
}

.nav-a:hover {
    color: var(--navy);
}

.nav-btn {
    padding: 9px 20px;
    font-size: 0.86rem;
}

/* ============================================================
   HERO
============================================================ */
.hero {
    padding: 120px 0 0;
    background: var(--fog);
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 64px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1.5px solid var(--fog-deeper);
    border-radius: var(--r-pill);
    padding: 5px 14px 5px 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--slate);
    margin-bottom: 22px;
    box-shadow: var(--sh-xs);
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    flex-shrink: 0;
    animation: blink 2s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .35
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 56px;
    align-items: start;
}

.hero-h1 {
    margin-bottom: 18px;
}

.hero-h1 em {
    font-style: normal;
    color: var(--violet);
}

.hero-p {
    font-size: 1.06rem;
    color: var(--slate);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.78;
}

.hero-acts {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
    align-items: center;
    margin-bottom: 12px;
}

/* Hero info card */
.info-card {
    background: var(--white);
    border: 1.5px solid var(--fog-deeper);
    border-radius: var(--r-lg);
    padding: 36px 32px;
    box-shadow: var(--sh-md);
    position: sticky;
    top: 84px;
}

.info-card-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--violet);
    margin-bottom: 18px;
}

.info-rows {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

.info-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--r);
    background: var(--fog);
    border: 1px solid var(--fog-deep);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--navy);
}

.info-row svg {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    fill: none;
    stroke: var(--violet);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-card-divider {
    height: 1px;
    background: var(--fog-deep);
    margin-bottom: 22px;
}

.info-card .btn {
    width: 100%;
    justify-content: center;
}

/* ============================================================
   SKYLINE - signature CSS illustration
============================================================ */
.skyline-wrap {
    width: 100%;
    height: 140px;
    position: relative;
    overflow: hidden;
    margin-top: -2px;
}

.skyline-svg {
    width: 100%;
    height: 100%;
    display: block;
}

/* ============================================================
   STAT BAR
============================================================ */

.stat-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sc {
    padding: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    position: relative;
    transition: background var(--ease);
}

.sc-fig {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: 6px;
}

.sc-fig .sc-plus {
    color: var(--violet);
    font-size: 1.6rem;
}

.sc-desc {
    font-size:1rem;
    line-height: 1.45;
}

/* ============================================================
   ABOUT
============================================================ */
.about-sec {
    background: var(--white);
    padding: 96px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: end;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-image{
    aspect-ratio: 3/4;
    border-radius: 1.5rem;
    overflow: hidden;
}
.about-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 960px) {
    .about-image {
       aspect-ratio: 3/2;
    }
}
/* Visual: abstract city grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.city-block {
    border-radius: 10px;
    background: var(--fog);
    border: 1px solid var(--fog-deep);
    transition: var(--ease);
}

.city-block:hover {
    background: var(--violet-pale);
    border-color: rgba(107, 78, 255, 0.15);
}

.cb-1 {
    aspect-ratio: 1;
}

.cb-2 {
    aspect-ratio: 1/1.6;
}

.cb-3 {
    aspect-ratio: 1/0.7;
}

.cb-4 {
    aspect-ratio: 1/1.3;
}

.cb-5 {
    aspect-ratio: 1;
}

.cb-6 {
    aspect-ratio: 1/1.8;
}

.cb-7 {
    aspect-ratio: 1/0.8;
    grid-column: span 2;
}

.cb-8 {
    aspect-ratio: 1;
}

/* ============================================================
   HOW IT WORKS
============================================================ */
.hiw-sec {
    background: var(--fog);
    padding: 96px 0;
}

.hiw-head {
    max-width: 560px;
    margin: 0 auto 60px;
    text-align: center;
}

.hiw-head h2 {
    margin-bottom: 12px;
}

.steps-wrap {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    position: relative;
}

.step-c {
    background: var(--white);
    border: 1.5px solid var(--fog-deep);
    border-radius: var(--r);
    padding: 32px 22px 28px;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.step-c:hover {
    border-color: rgba(107, 78, 255, 0.3);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
}

.step-bubble {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--violet-pale);
    border: 2px solid rgba(107, 78, 255, 0.2);
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--violet);
    transition: var(--ease);
}

.step-c:hover .step-bubble {
    background: var(--violet);
    color: var(--white);
    border-color: var(--violet);
}

.step-c h3 {
    margin-bottom: 8px;
}

.step-c p {
    font-size: 0.87rem;
}

.hiw-ctas {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 52px;
}

/* ============================================================
   COMMUNITY
============================================================ */
.comm-sec {
    background: var(--navy);
    padding: 96px 0;
}

.comm-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.comm-image{
    aspect-ratio: 5/2;
    overflow: hidden;
    border-radius: 2rem;
    margin-bottom: 1.25rem;
}
.comm-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.comm-text .tag {
    color: rgba(255, 255, 255, 0.4);
}

.comm-text .tag::before {
    background: rgba(255, 255, 255, 0.3);
}

.comm-text h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.comm-text p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 14px;
    font-size: 1.02rem;
}

.comm-text p:last-child {
    margin-bottom: 0;
}

/* Community visual: three caller type cards */
.caller-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.caller-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--r);
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--ease);
}

.caller-card:hover {
    background: rgba(255, 255, 255, 0.09);
    border-color: rgba(107, 78, 255, 0.4);
}

.caller-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    flex-shrink: 0;
    background: rgba(107, 78, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.caller-icon svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: var(--violet-mid);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.caller-name {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--white);
    margin-bottom: 3px;
}

.caller-desc {
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testi-sec {
    background: var(--white);
    padding: 96px 0;
}

.testi-head {
    max-width: 500px;
    margin: 0 auto 52px;
    text-align: center;
}

.testi-head h2 {
    margin-bottom: 10px;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tc-card {
    background: var(--fog);
    border: 1.5px solid var(--fog-deep);
    border-radius: var(--r-lg);
    padding: 36px 28px;
    position: relative;
    overflow: hidden;
    transition: var(--ease);
}

.tc-card:hover {
    border-color: rgba(107, 78, 255, 0.25);
    box-shadow: var(--sh-md);
    transform: translateY(-4px);
    background: var(--white);
}

/* Signature: violet corner accent */
.tc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 60px;
    background: var(--violet);
    border-radius: 0 0 4px 0;
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 16px;
}

.star {
    width: 13px;
    height: 13px;
    fill: #FBBF24;
}

.tc-hl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.tc-body {
    font-size: 0.88rem;
    color: var(--slate);
    line-height: 1.75;
    margin-bottom: 22px;
}

.tc-foot {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 16px;
    border-top: 1px solid var(--fog-deep);
}

.tc-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--violet-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--violet);
}

.tc-name {
    font-weight: 700;
    font-size: 0.86rem;
    color: var(--navy);
    display: block;
    line-height: 1.2;
}

.tc-loc {
    font-size: 0.76rem;
    color: var(--slate-lt);
    display: block;
}

/* ============================================================
   WHY CHOOSE
============================================================ */
.why-sec {
    background: var(--fog);
    padding: 96px 0;
}

.why-head {
    max-width: 560px;
    margin: 0 auto 52px;
    text-align: center;
}

.why-head h2 {
    margin-bottom: 10px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.wc {
    background: var(--white);
    border: 1.5px solid var(--fog-deep);
    border-radius: var(--r);
    padding: 38px 32px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.wc:hover {
    border-color: rgba(107, 78, 255, 0.25);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.wc-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--violet-pale);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wc-icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: var(--violet);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.wc-body h3 {
    margin-bottom: 8px;
}

.wc-body p {
    font-size: 0.88rem;
}

/* ============================================================
   SAFETY
============================================================ */
.safety-sec {
    background: var(--violet-tint);
    padding: 96px 0;
}

.safety-head {
    max-width: 520px;
    margin: 0 auto 52px;
    text-align: center;
}

.safety-head h2 {
    margin-bottom: 10px;
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.sfc {
    background: var(--white);
    border: 1.5px solid rgba(107, 78, 255, 0.1);
    border-radius: var(--r);
    padding: 38px 28px;
    box-shadow: var(--sh-xs);
    transition: var(--ease);
}

.sfc:hover {
    border-color: rgba(107, 78, 255, 0.3);
    box-shadow: var(--sh-md);
    transform: translateY(-3px);
}

.sfc-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: var(--violet-pale);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.sfc-icon svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--violet);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sfc h3 {
    margin-bottom: 8px;
}

.sfc p {
    font-size: 0.88rem;
}

/* ============================================================
   FAQ
============================================================ */
.faq-sec {
    background: var(--white);
    padding: 96px 0;
}

.faq-head {
    max-width: 500px;
    margin: 0 auto 44px;
    text-align: center;
}

.faq-head h2 {
    margin-bottom: 10px;
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.fi {
    background: var(--fog);
    border: 1.5px solid var(--fog-deep);
    border-radius: var(--r);
    overflow: hidden;
    transition: border-color var(--ease);
}

.fi.open {
    border-color: rgba(107, 78, 255, 0.3);
    background: var(--white);
}

.fq {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.94rem;
    font-weight: 600;
    color: var(--navy);
    transition: color var(--ease);
}

.fq:hover {
    color: var(--violet);
}

.fi-tog {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--white);
    border: 1.5px solid var(--fog-deeper);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--navy);
    line-height: 1;
    transition: transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
}

.fi.open .fi-tog {
    transform: rotate(45deg);
    background: var(--violet);
    color: var(--white);
    border-color: var(--violet);
}

.fa {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    transition: max-height 0.36s ease, padding 0.24s;
}

.fi.open .fa {
    max-height: 200px;
    padding: 0 24px 20px;
}

.fa p {
    font-size: 0.9rem;
}

/* ============================================================
   CTA
============================================================ */
.cta-sec {
    background: var(--fog);
    padding: 96px 0;
    position: relative;
    overflow: hidden;
}

.cta-sec::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, var(--violet-pale) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-inner h2 {
    margin-bottom: 14px;
}

.cta-sub {
    font-size: 1.02rem;
    color: var(--slate);
    max-width: 720px;
    margin: 0 auto 36px;
    line-height: 1.78;
}

.cta-acts {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
    margin-bottom: 14px;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: var(--navy);
    padding: 26px 30px;
}

.foot-in {
    max-width: var(--mw);
    margin: 0 auto;
}

.foot-brand {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
    letter-spacing: -0.02em;
}

.foot-brand .after {
    color: var(--violet-mid);
}

.foot-copy {
    font-size: 0.77rem;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.65;
    text-align: center;
}

/* ============================================================
   SCROLL REVEAL
============================================================ */
.rv {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.rv.in {
    opacity: 1;
    transform: none;
}

.d1 {
    transition-delay: .08s
}

.d2 {
    transition-delay: .16s
}

.d3 {
    transition-delay: .24s
}

.d4 {
    transition-delay: .32s
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media(max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr
    }

    .info-card {
        max-width: 420px;
        position: static
    }

    .about-grid {
        grid-template-columns: 1fr
    }

    .city-grid {
        display: none
    }

    .comm-inner {
        grid-template-columns: 1fr
    }

    .steps-wrap {
        grid-template-columns: 1fr 1fr
    }

    .testi-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto
    }

    .why-grid {
        grid-template-columns: 1fr
    }

    .safety-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto
    }

    .stat-bar-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .sc:nth-child(2) {
        border-right: none
    }

    .sc:nth-child(3) {
        border-top: 1px solid rgba(255, 255, 255, 0.07)
    }
}

@media(max-width:600px) {
    .wrap {
        padding: 0 20px
    }

    .nav-r .nav-a {
        display: none
    }

    .hero {
        padding: 100px 0 0
    }

    section {
        padding: 72px 0 !important
    }

    .steps-wrap {
        grid-template-columns: 1fr
    }

    .foot-in {
        flex-direction: column;
        align-items: flex-start
    }

    .foot-copy {
        text-align: left
    }
}

@media(prefers-reduced-motion:reduce) {
    .rv {
        opacity: 1;
        transform: none;
        transition: none
    }

    *,
    .live-dot {
        animation: none !important;
        transition: none !important
    }
}