:root {
    --teal: #1FA496;
    --teal-d: #178577;
    --teal-deep: #137165;
    --teal-soft: #E2F3F0;
    --teal-tint: #F1F9F8;
    --pink: #E84D8A;
    --pink-d: #D63B79;
    --pink-soft: #FCE3EF;
    --ink: #22343C;
    --body: #5C6970;
    --faint: #9AA6AC;
    --green: #7CC47F;
    --bg: #fff;
    --line: #E9EFF0;
    --ease: cubic-bezier(.22, .61, .36, 1);
    --maxw: 1160px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Nunito Sans", sans-serif;
    font-size: 16.5px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden
}

img,
svg {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font-family: inherit
}

::selection {
    background: var(--pink);
    color: #fff
}

.wrap {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 28px
}

h1,
h2,
h3,
h4 {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    line-height: 1.18;
    color: var(--ink)
}

.ek {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Fredoka", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--pink)
}

/* buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Fredoka", sans-serif;
    font-weight: 500;
    font-size: 16px;
    padding: 14px 34px;
    border-radius: 100px;
    border: none;
    cursor: pointer;
    transition: .3s var(--ease)
}

.btn-pink {
    background: var(--pink);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(232, 77, 138, .5)
}

.btn-pink:hover {
    transform: translateY(-2px);
    background: var(--pink-d)
}

.btn-teal {
    background: var(--teal);
    color: #fff;
    box-shadow: 0 14px 30px -10px rgba(31, 164, 150, .45)
}

.btn-teal:hover {
    transform: translateY(-2px);
    background: var(--teal-d)
}

.btn-white {
    background: #fff;
    color: var(--teal);
    box-shadow: 0 14px 30px -12px rgba(0, 0, 0, .2)
}

.btn-white:hover {
    transform: translateY(-2px)
}

.btn-out {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, .6)
}

.btn-out:hover {
    background: #fff;
    color: var(--teal)
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .8s var(--ease), transform .8s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

[data-d="1"] {
    transition-delay: .08s
}

[data-d="2"] {
    transition-delay: .16s
}

[data-d="3"] {
    transition-delay: .24s
}

/* ===== HERO BLOCK (teal, holds nav) ===== */
.herowrap {
    padding: 14px 14px 0
}

.hero {
    position: relative;
    background: var(--teal);
    border-radius: 34px;
    overflow: hidden;
    color: #fff
}

.hero .cloud {
    position: absolute;
    background: rgba(255, 255, 255, .16);
    border-radius: 100px
}

.hero .blob {
    position: absolute;
    right: 4%;
    top: 8%;
    width: 58%;
    height: 84%;
    background: var(--teal-d);
    border-radius: 46% 54% 50% 50%/52% 48% 52% 48%;
    opacity: .5
}

nav {
    position: relative;
    z-index: 5
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 40px
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Fredoka";
    font-weight: 600;
    font-size: 22px;
    color: #fff
}

.brand,
.logo{
    display: flex;
    align-items: center;
    gap: .25rem;
}
.brand img,
.logo img{
    display: block;
    width: 54px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 28px;
    font-family: "Fredoka";
    font-size: 15.5px;
    font-weight: 400;
    color: rgba(255, 255, 255, .92)
}

.nav-links a:hover {
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 5px
}

.nav-call {
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 14.5px;
    padding: 10px 22px;
    border-radius: 100px;
    background: var(--pink);
    color: #fff;
    transition: .3s
}

.nav-call:hover {
    background: var(--pink-d)
}

.hero-in {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    padding: 30px 40px 70px
}

.hero-l h1 {
    color: #fff;
    font-size: clamp(38px, 5.6vw, 62px);
    font-weight: 600
}

.hero-l .sub {
    color: rgba(255, 255, 255, .92);
    font-size: 17px;
    max-width: 440px;
    margin-top: 18px
}

.hero-l .cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 28px
}

.hero-l .num {
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 20px;
    color: #fff
}

.hero-l .num:hover {
    color: var(--pink-soft)
}

.hero-l .socials {
    display: flex;
    gap: 14px;
    margin-top: 30px
}

.hero-l .socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    display: grid;
    place-items: center;
    transition: .25s
}

.hero-l .socials a:hover {
    background: #fff;
    color: var(--teal)
}

.hero-l .socials svg {
    width: 17px;
    height: 17px
}

/* hero phones */
.hphones {
    position: relative;
    height: 430px
}

.phone {
    position: absolute;
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 40px 80px -34px rgba(8, 40, 36, .55);
    padding: 11px
}

.phone .scr {
    background: var(--teal-tint);
    border-radius: 22px;
    padding: 14px;
    overflow: hidden
}

.phone.p1 {
    width: 212px;
    left: 4%;
    top: 36px;
    transform: rotate(-5deg);
    z-index: 2
}

.phone.p2 {
    width: 198px;
    right: 2%;
    top: 90px;
    transform: rotate(5deg);
    z-index: 3
}

.vav {
    height: 128px;
    border-radius: 16px;
    background: linear-gradient(150deg, #7FD9CE, #1FA496);
    display: grid;
    place-items: center;
    position: relative
}

.phone.p2 .vav {
    background: linear-gradient(150deg, #F7A8CB, #E84D8A)
}

.vav .live {
    position: absolute;
    top: 9px;
    left: 9px;
    background: rgba(0, 0, 0, .32);
    color: #fff;
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 9.5px;
    padding: 3px 8px;
    border-radius: 100px;
    display: inline-flex;
    gap: 5px;
    align-items: center
}

.vav .live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #9BF0C8
}

.vav .wv {
    display: flex;
    gap: 3px;
    align-items: center;
    height: 40px
}

.vav .wv i {
    width: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, .92);
    animation: wv 1.4s ease-in-out infinite
}

@keyframes wv {

    0%,
    100% {
        height: 8px
    }

    50% {
        height: var(--h, 26px)
    }
}

.vname {
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 14px;
    margin-top: 11px;
    color: var(--ink)
}

.vmeta {
    font-size: 11px;
    color: var(--faint)
}

.vbtns {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 11px
}

.vbtns b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.vbtns .x {
    background: #EEF3F3;
    color: var(--faint)
}

.vbtns .h {
    background: var(--pink);
    color: #fff
}

.vbtns b svg {
    width: 17px;
    height: 17px
}

.fheart {
    position: absolute;
    z-index: 4
}

/* ===== section scaffold ===== */
.sec {
    padding: 92px 0
}

.sec-head {
    max-width: 660px;
    margin: 0 auto 30px;
    text-align: center
}

.sec-head .ek {
    justify-content: center
}

.sec-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-top: 12px
}

.sec-head p {
    color: var(--body);
    margin-top: 14px
}

/* ===== ALT (illustration + copy rows) ===== */
.alt {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.alt.flip .alt-art {
    order: 2
}

.alt-art {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 330px
}

.alt-c h2 {
    font-size: clamp(26px, 3.6vw, 38px)
}

.alt-c h2.pink {
    color: var(--pink)
}

.alt-c .lead {
    color: var(--body);
    margin-top: 14px;
    font-size: 16px
}

.alt-c .btn {
    margin-top: 24px
}

.minilist {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 12px
}

.minilist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--body)
}

.minilist li .ck {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px
}

.minilist li .ck svg {
    width: 13px;
    height: 13px
}

/* illustration helpers */
.illus {
    width: 100%;
    max-width: 380px
}

.bigphone {
    width: 400px;
    height: 400px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: 0 36px 70px -40px rgba(8, 40, 36, .5);
    padding: 12px;
    position: relative
}
.bigphone img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 1.25rem;
}

.bigphone .s {
    background: var(--teal-tint);
    border-radius: 20px;
    padding: 18px;
    text-align: center
}

.badge-float {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 18px 36px -20px rgba(8, 40, 36, .5);
    padding: 10px 14px;
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.badge-float .bd {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center
}

.badge-float .bd svg {
    width: 14px;
    height: 14px;
    color: #fff
}

/* ===== HOW ===== */

.how-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px
}

.hstep {
    background: #fff;
    border-radius: 22px;
    padding: 30px 26px;
    border: 1px solid var(--line)
}

.hstep .n {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--teal);
    color: #fff;
    display: grid;
    place-items: center;
    font-family: "Fredoka";
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 18px
}

.hstep:nth-child(2) .n {
    background: var(--pink)
}

.hstep:nth-child(3) .n {
    background: var(--green)
}

.hstep:nth-child(4) .n {
    background: var(--teal-deep)
}

.hstep h4 {
    font-size: 18px
}

.hstep p {
    color: var(--body);
    font-size: 14px;
    margin-top: 8px
}

/* ===== DC LOCAL ===== */
.dc {
    background: var(--teal);
    border-radius: 34px;
    margin: 0 16px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.dc .cloud {
    position: absolute;
    background: rgba(255, 255, 255, .13);
    border-radius: 100px
}

.dc-in {
    position: relative;
    z-index: 2;
    padding: 74px 56px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center
}

.dc-in h2 {
    color: #fff;
    font-size: clamp(28px, 3.6vw, 40px)
}

.dc-in p {
    color: rgba(255, 255, 255, .9);
    margin-top: 14px;
    max-width: 420px
}

.dc .numbox {
    display: inline-block;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 18px;
    padding: 16px 26px;
    margin-top: 24px
}

.dc .numbox span {
    font-size: 12px;
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
    display: block;
    font-family: "Nunito Sans"
}

.dc .numbox b {
    font-family: "Fredoka";
    font-size: 24px;
    font-weight: 600
}

.dc .numbox b:hover {
    color: var(--pink-soft)
}

.dc .toll {
    margin-top: 16px;
    font-size: 14px;
    color: rgba(255, 255, 255, .9)
}

.dc .toll a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 3px
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px
}

.chips span {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .26);
    border-radius: 100px;
    font-family: "Fredoka";
    font-weight: 400;
    font-size: 13.5px;
    padding: 8px 16px;
    transition: .25s
}

.chips span:hover {
    background: #fff;
    color: var(--teal)
}

/* ===== ETIQUETTE ===== */
.etq-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px
}

.eq {
    text-align: center;
    padding: 26px 18px;
    border-radius: 20px;
    background: var(--teal-tint)
}

.eq .ei {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    box-shadow: 0 12px 24px -16px rgba(8, 40, 36, .5)
}

.eq .ei svg {
    width: 23px;
    height: 23px;
    color: var(--teal)
}

.eq h4 {
    font-size: 15px
}

.eq p {
    font-size: 12px;
    color: var(--body);
    margin-top: 5px
}

/* ===== FAQ ===== */
.fwrap {
    max-width: 780px;
    margin: 0 auto
}

.fi {
    border: 1px solid var(--line);
    border-radius: 18px;
    margin-bottom: 14px;
    overflow: hidden;
    background: #fff;
    transition: .3s
}

.fi.open {
    border-color: var(--teal);
    box-shadow: 0 24px 50px -38px rgba(31, 164, 150, .5)
}

.fq {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 22px 26px;
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 17px;
    color: var(--ink)
}

.fq .pm {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--teal-soft);
    color: var(--teal);
    display: grid;
    place-items: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: .3s
}

.fi.open .pm {
    background: var(--teal);
    color: #fff;
    transform: rotate(45deg)
}

.fa {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fa p {
    padding: 0 26px 24px;
    font-size: 14.5px;
    color: var(--body)
}

/* ===== CLOSE (teal wave band) ===== */
.closewrap {
    position: relative;
    margin-top: 80px
}

.wave {
    display: block;
    width: 100%;
    height: 80px;
    margin-bottom: -2px
}

.close {
    background: var(--teal);
    color: #fff;
    text-align: center;
    padding: 30px 28px 96px
}

.close h2 {
    color: #fff;
    font-size: clamp(30px, 4.6vw, 52px)
}

.close p {
    color: rgba(255, 255, 255, .9);
    font-size: 17.5px;
    max-width: 500px;
    margin: 14px auto 0
}

.close .num {
    display: block;
    font-family: "Fredoka";
    font-weight: 600;
    font-size: clamp(26px, 3.4vw, 38px);
    margin: 24px 0 22px
}

.close .num:hover {
    color: var(--pink-soft)
}

/* ===== FOOTER ===== */
footer {
    background: var(--teal-deep);
    color: rgba(255, 255, 255, .72);
    padding: 30px 0;
}

.f-bot {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    text-align: center;
}

.f-bot .age {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: "Fredoka";
    font-weight: 500;
    color: #fff
}

.f-bot .age span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--pink);
    display: grid;
    place-items: center;
    font-size: 10.5px;
    font-weight: 600;
    color: #fff
}

/* ===== TIPS ===== */
.tips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    max-width: 920px;
    margin: 46px auto 0
}

.tcol {
    border-radius: 24px;
    padding: 34px 32px
}

.tcol.do {
    background: var(--teal-tint);
    border: 1px solid var(--teal-soft)
}

.tcol.skip {
    background: #FFF5F9;
    border: 1px solid var(--pink-soft)
}

.tcol .th {
    display: flex;
    align-items: center;
    gap: 11px;
    font-family: "Fredoka";
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 20px
}

.tcol .th .ic {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff
}

.tcol.do .th .ic {
    background: var(--teal)
}

.tcol.skip .th .ic {
    background: var(--pink)
}

.tcol .th .ic svg {
    width: 18px;
    height: 18px
}

.tcol ul {
    list-style: none;
    display: grid;
    gap: 14px
}

.tcol li {
    display: flex;
    gap: 11px;
    font-size: 14.5px;
    color: var(--body);
    align-items: flex-start
}

.tcol li .d {
    flex-shrink: 0;
    margin-top: 3px;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #fff
}

.tcol.do li .d {
    background: var(--teal)
}

.tcol.skip li .d {
    background: var(--pink)
}

.tcol li .d svg {
    width: 11px;
    height: 11px
}

/* ===== PRIVACY ===== */
.priv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 940px;
    margin: 46px auto 0
}

.pcard {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 30px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: .35s var(--ease)
}

.pcard:hover {
    box-shadow: 0 30px 60px -42px rgba(8, 40, 36, .4);
    transform: translateY(-4px)
}

.pcard .pi {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: var(--teal-soft);
    display: grid;
    place-items: center;
    flex-shrink: 0
}

.pcard .pi svg {
    width: 24px;
    height: 24px;
    color: var(--teal)
}

.pcard:nth-child(even) .pi {
    background: var(--pink-soft)
}

.pcard:nth-child(even) .pi svg {
    color: var(--pink)
}

.pcard h4 {
    font-size: 18px
}

.pcard p {
    color: var(--body);
    font-size: 14px;
    margin-top: 6px
}

/* ===== DMV CALLOUT (compact) ===== */
.dmv {
    background: var(--teal);
    border-radius: 28px;
    margin: 0 16px;
    color: #fff;
    text-align: center;
    padding: 58px 40px;
    position: relative;
    overflow: hidden
}

.dmv .cloud {
    position: absolute;
    background: rgba(255, 255, 255, .13);
    border-radius: 100px
}

.dmv h2 {
    color: #fff;
    font-size: clamp(24px, 3.2vw, 34px);
    position: relative;
    z-index: 2
}

.dmv p {
    color: rgba(255, 255, 255, .9);
    max-width: 580px;
    margin: 12px auto 0;
    position: relative;
    z-index: 2
}

.dmv .nums {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 28px;
    position: relative;
    z-index: 2
}

.dmv .nb {
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 16px;
    padding: 14px 26px;
    text-align: left
}

.dmv .nb span {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .82);
    font-weight: 600;
    display: block
}

.dmv .nb b {
    font-family: "Fredoka";
    font-size: 21px;
    font-weight: 600
}

.dmv .nb b:hover {
    color: var(--pink-soft)
}

/* mobile callbar */
.callbar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 1500;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 100px;
    padding: 9px 9px 9px 22px;
    box-shadow: 0 18px 40px -16px rgba(8, 40, 36, .4)
}

.callbar .t {
    font-family: "Fredoka";
    font-weight: 500;
    font-size: 13px;
    line-height: 1.2
}

.callbar .t small {
    display: block;
    font-weight: 400;
    font-size: 11px;
    color: var(--body);
    font-family: "Nunito Sans"
}

@media(max-width:960px) {
    .nav-links {
        display: none
    }

    .hero-in,
    .alt,
    .dc-in {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .alt.flip .alt-art {
        order: 0
    }

    .hphones {
        height: 380px;
        max-width: 430px;
        margin: 0 auto
    }

    .how-grid {
        grid-template-columns: 1fr 1fr
    }

    .tips-grid,
    .priv-grid {
        grid-template-columns: 1fr
    }

    .etq-grid {
        grid-template-columns: 1fr 1fr
    }

    .f-top {
        grid-template-columns: 1fr 1fr
    }

    .callbar {
        display: flex
    }
}

@media(max-width:560px) {
    .wrap {
        padding: 0 22px
    }

    .sec {
        padding: 62px 0
    }

    .nav-in {
        padding: 20px 24px
    }

    .hero-in {
        padding: 20px 26px 54px
    }

    .how-grid,
    .etq-grid,
    .f-top {
        grid-template-columns: 1fr
    }

    .dc-in {
        padding: 48px 28px
    }
}

@media(prefers-reduced-motion:reduce) {
    * {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}