/* Home-specific */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 0 80px
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center
}

.hero h1 {
    font-size: clamp(40px, 5.4vw, 78px);
    color: var(--navy-ink);
    margin: 22px 0 22px;
    text-wrap: balance
}

.hero h1 .wiggle {
    display: inline-block;
    color: var(--orange);
    position: relative;
    white-space: nowrap
}

.hero h1 .wiggle::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 12px;
    background: var(--yellow);
    z-index: -1;
    border-radius: 8px;
    transform: skew(-6deg)
}

.hero p.lead {
    font-size: 19px;
    color: var(--muted);
    max-width: 520px;
    margin-bottom: 32px
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap
}

.hero-trust {
    display: flex;
    gap: 24px;
    margin-top: 40px;
    flex-wrap: wrap
}

.trust-item {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 14px;
    color: var(--muted);
    font-weight: 600
}

.hero-visual {
    position: relative;
    aspect-ratio: 1/1.1;
    width: 100%;
    max-width: 600px;
    margin-left: auto
}

.blob-yellow {
    position: absolute;
    background: var(--yellow);
    z-index: 0
}

.hero-visual .b1 {
    top: 10%;
    left: 18%;
    width: 280px;
    height: 310px;
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%
}

.hero-visual .b2 {
    bottom: 5%;
    right: 5%;
    width: 220px;
    height: 240px;
    border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%
}

.hero-visual img {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    width: 78%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(26, 74, 143, .18))
}

.floating-card {
    position: absolute;
    z-index: 5;
    background: #fff;
    border-radius: 20px;
    padding: 14px 18px;
    box-shadow: 0 20px 40px -12px rgba(11, 33, 71, .25);
    display: flex;
    gap: 12px;
    align-items: center;
    animation: float 5s ease-in-out infinite
}

.floating-card .emo {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    font-weight: 900;
    font-family: 'Nunito', sans-serif
}

.floating-card.fc1 {
    top: 18%;
    left: -6%
}

.floating-card.fc1 .emo {
    background: var(--yellow);
    color: var(--navy-ink);
    font-size: 20px
}

.floating-card.fc2 {
    bottom: 14%;
    left: 8%;
    animation-delay: -2.5s
}

.floating-card.fc2 .emo {
    background: #E8F0FF;
    color: var(--navy);
    font-size: 14px
}

.floating-card .label {
    font-size: 12px;
    color: var(--muted);
    font-weight: 600
}

.floating-card .value {
    font-weight: 900;
    font-family: 'Nunito', sans-serif;
    color: var(--navy-ink);
    font-size: 17px
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-10px)
    }
}

.stats {
    padding: 24px 0;
    background: var(--navy-ink);
    color: #fff;
    overflow: hidden
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px
}

.stat {
    text-align: center;
    padding: 12px;
    border-right: 1px solid rgba(255, 255, 255, .1)
}

.stat:last-child {
    border-right: none
}

.stat .num {
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: clamp(32px, 4vw, 46px);
    color: var(--yellow);
    line-height: 1
}

.stat .lab {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
    margin-top: 6px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.how {
    padding: 110px 0
}

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px
}

.section-head h2 {
    font-size: clamp(36px, 4.5vw, 58px);
    color: var(--navy-ink);
    margin-bottom: 16px;
    margin-top: 18px
}

.section-head p {
    font-size: 18px;
    color: var(--muted)
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px
}

.step {
    background: #fff;
    border-radius: 28px;
    padding: 36px 32px;
    position: relative;
    border: 1px solid var(--line);
    transition: transform .25s, box-shadow .25s
}

.step:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px -20px rgba(11, 33, 71, .18)
}

.step .num {
    position: absolute;
    top: -22px;
    left: 32px;
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    font-family: 'Nunito', sans-serif;
    font-weight: 900;
    font-size: 22px;
    color: #fff
}

.step:nth-child(1) .num {
    background: var(--orange)
}

.step:nth-child(2) .num {
    background: var(--navy)
}

.step:nth-child(3) .num {
    background: var(--yellow);
    color: var(--navy-ink)
}

.step .ico {
    width: 60px;
    height: 60px;
    border-radius: 20px;
    display: grid;
    place-items: center;
    background: var(--yellow-soft);
    margin: 18px 0 22px
}

.step h3 {
    font-size: 24px;
    color: var(--navy-ink);
    margin-bottom: 12px
}

.step p {
    color: var(--muted);
    font-size: 15px
}

.benefits {
    padding: 120px 0;
    background: var(--navy-ink);
    color: #fff;
    position: relative;
    overflow: hidden
}

.benefits::before {
    content: "";
    position: absolute;
    top: -150px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: var(--yellow);
    border-radius: 50% 50% 60% 40% / 50% 50% 40% 60%;
    opacity: .08
}

.benefits .section-head h2 {
    color: #fff
}

.benefits .section-head p {
    color: rgba(255, 255, 255, .75)
}

.benefit-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px
}

.benefit-main {
    background: linear-gradient(135deg, var(--yellow) 0%, #ffd500 100%);
    color: var(--navy-ink);
    border-radius: 32px;
    padding: 48px;
    position: relative;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: space-between
}

.benefit-main::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: var(--orange);
    border-radius: 50%;
    opacity: .15
}

.benefit-main h3 {
    font-size: 40px;
    max-width: 420px;
    position: relative;
    z-index: 2
}

.benefit-main .arrow {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--navy-ink);
    color: var(--yellow);
    display: grid;
    place-items: center;
    align-self: flex-end;
    position: relative;
    z-index: 2
}

.benefit-col {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 24px
}

.benefit-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    padding: 32px;
    transition: background .25s
}

.benefit-card:hover {
    background: rgba(255, 255, 255, .1)
}

.benefit-card .bi {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--orange);
    display: grid;
    place-items: center;
    margin-bottom: 16px
}

.benefit-card h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #fff
}

.benefit-card p {
    color: rgba(255, 255, 255, .7);
    font-size: 14.5px
}

.app-section {
    padding: 120px 0;
    background: var(--cream);
    position: relative;
    overflow: hidden
}

.app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.app-visual {
    position: relative;
    aspect-ratio: 1/1.05;
    width: 100%
}

.app-visual .blob {
    position: absolute;
    inset: 10% 5% 5% 10%;
    background: var(--yellow);
    border-radius: 55% 45% 60% 40% / 50% 60% 40% 50%
}

.app-visual img {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 85%;
    height: auto;
    filter: drop-shadow(0 30px 40px rgba(26, 74, 143, .2))
}

.app-copy h2 {
    font-size: clamp(36px, 4.5vw, 56px);
    color: var(--navy-ink);
    margin: 18px 0 20px
}

.app-copy>p {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px
}

.app-features {
    display: grid;
    gap: 18px;
    margin-bottom: 36px
}

.app-feat {
    display: flex;
    gap: 14px;
    align-items: flex-start
}

.app-feat .check {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    margin-top: 2px
}

.app-feat h4 {
    font-size: 17px;
    color: var(--navy-ink);
    margin-bottom: 2px
}

.app-feat p {
    color: var(--muted);
    font-size: 14.5px
}

.stores {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.store {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--navy-ink);
    color: #fff;
    border-radius: 14px
}

.store:hover {
    background: var(--navy)
}

.store .sm {
    font-size: 11px;
    opacity: .8;
    display: block
}

.store .lg {
    font-size: 16px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
    line-height: 1.1
}

.cta {
    padding: 100px 0
}

.cta-box {
    background: var(--navy-ink);
    border-radius: 40px;
    padding: 72px 60px;
    position: relative;
    overflow: hidden;
    color: #fff;
    text-align: center
}

.cta-box::before {
    content: "";
    position: absolute;
    top: -50px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--yellow);
    border-radius: 50% 50% 60% 40%;
    opacity: .14
}

.cta-box::after {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 280px;
    height: 280px;
    background: var(--orange);
    border-radius: 55% 45% 50% 50%;
    opacity: .2
}

.cta-box .inner {
    position: relative;
    z-index: 2
}

.cta-box h2 {
    font-size: clamp(38px, 5vw, 60px);
    margin: 18px 0
}

.cta-box p {
    font-size: 19px;
    color: rgba(255, 255, 255, .8);
    max-width: 560px;
    margin: 0 auto 36px
}

.cta-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    padding: 8px;
    border-radius: 999px
}

.cta-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 20px;
    font-family: inherit;
    font-size: 15px;
    color: var(--navy-ink);
    background: transparent;
    min-width: 0
}

.cta-note {
    margin-top: 16px;
    font-size: 13px;
    color: rgba(255, 255, 255, .55)
}

@media (max-width:1040px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .hero-visual {
        margin: 0 auto
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat:nth-child(2) {
        border-right: none
    }

    .steps {
        grid-template-columns: 1fr
    }

    .benefit-grid {
        grid-template-columns: 1fr
    }

    .app-grid {
        grid-template-columns: 1fr;
        gap: 40px
    }

    .cta-box {
        padding: 52px 28px;
        border-radius: 28px
    }

    .cta-form {
        flex-direction: column;
        border-radius: 24px
    }

    .how {
        padding: 70px 0
    }
}

@media (max-width:620px) {
    .hero {
        padding: 40px 0 60px
    }

    .stats-row {
        grid-template-columns: 1fr 1fr
    }

    .stat {
        border-right: none
    }

    .how {
        padding: 50px 0
    }

    .benefits {
        padding: 70px 0
    }

    .app-section {
        padding: 70px 0
    }

    .benefit-main {
        padding: 32px;
        min-height: 280px
    }

    .benefit-main h3 {
        font-size: 28px
    }

    .hero-visual {
        max-width: 340px
    }
}