/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: 'DM Sans', system-ui, sans-serif;
    background: #FAFAF7;
    color: #1A1A2E;
    overflow-x: hidden
}

/* ── Tokens ────────────────────────────────────────── */
:root {
    --blue: #1A6FE8;
    --blue-d: #0F4DB5;
    --blue-l: #EBF2FF;
    --red: #D93025;
    --dark: #1A1A2E;
    --warm: #FAFAF7;
    --cream: #F5F0E8;
    --gray: #6B7280;
    --line: #E5E7EB;
    --lgray: #E8E4DC;
    --white: #fff;
    --sh-sm: 0 2px 14px rgba(26, 26, 46, .07);
    --sh-md: 0 8px 32px rgba(26, 26, 46, .12);
    --sh-lg: 0 24px 64px rgba(26, 26, 46, .18);
    --r: 18px;
    --rs: 10px;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px
}

::-webkit-scrollbar-thumb {
    background: var(--lgray);
    border-radius: 3px
}

/* ── NAV ───────────────────────────────────────────── */
nav {
    position: fixed;
    inset: 0 0 auto;
    z-index: 999;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: rgba(250, 250, 247, .93);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(26, 26, 46, .07);
}

.nav-logo {
    height: 33px;
    display: block
}

.nav-r {
    display: flex;
    align-items: center;
    gap: 20px
}

.nav-r a {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--gray);
    text-decoration: none;
    transition: color .18s
}

.nav-r a:hover {
    color: var(--dark)
}

.nav-login {
    color: var(--blue) !important;
    font-weight: 600 !important;
    padding: 7px 18px;
    border-radius: 8px;
    border: 1.5px solid var(--blue);
    transition: all .18s !important;
}

.nav-login:hover {
    background: var(--blue) !important;
    color: #fff !important
}

@media (max-width: 560px) {
    .nav-r a:not(.nav-login) {
        display: none
    }
}

/* ── HERO ──────────────────────────────────────────── */
.hero-outer {
    background: var(--warm);
    background-image: radial-gradient(ellipse 60% 70% at 90% 25%, rgba(26, 111, 232, .08) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 5% 80%, rgba(217, 48, 37, .06) 0%, transparent 55%);
    overflow: hidden;
    position: relative;
}

.hero {
    min-height: 100svh;
    padding: 72px 5vw 56px;
    display: grid;
    grid-template-columns:minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(24px, 4vw, 52px);
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* animated rings */
.hero-rings {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    width: min(52vw, 540px);
    height: min(52vw, 540px);
    pointer-events: none;
    z-index: 0;
}

.hero-rings circle {
    fill: none;
    stroke: rgba(26, 111, 232, .07);
    transform-origin: center;
    animation: ringPulse 4s ease-in-out infinite
}

.hero-rings circle:nth-child(2) {
    animation-delay: -.8s;
    stroke-opacity: .5
}

.hero-rings circle:nth-child(3) {
    animation-delay: -1.6s;
    stroke-opacity: .3
}

@keyframes ringPulse {
    0%, 100% {
        transform: scale(1);
        opacity: .8
    }
    50% {
        transform: scale(1.04);
        opacity: 1
    }
}

/* staggered entrance for left content */
.hero-left {
    position: relative;
    z-index: 2
}

.hero-left > * {
    opacity: 0;
    transform: translateY(18px);
    animation: heroIn .55s ease forwards
}

.hero-left > :nth-child(1) {
    animation-delay: .05s
}

.hero-left > :nth-child(2) {
    animation-delay: .13s
}

.hero-left > :nth-child(3) {
    animation-delay: .20s
}

.hero-left > :nth-child(4) {
    animation-delay: .27s
}

.hero-left > :nth-child(5) {
    animation-delay: .34s
}

.hero-left > :nth-child(6) {
    animation-delay: .41s
}

@keyframes heroIn {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-l);
    color: var(--blue);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.hero-tag::before {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0;
    animation: blink 2.2s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% {
        opacity: 1;
        transform: scale(1)
    }
    50% {
        opacity: .3;
        transform: scale(.6)
    }
}

h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 18px;
}

h1 em {
    font-style: italic;
    color: var(--blue)
}

h1 .r {
    color: var(--red)
}

.hero-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px
}

.hero-divider::before {
    content: '';
    flex: 1;
    max-width: 36px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), var(--red))
}

.hero-divider-text {
    font-size: 11.5px;
    color: var(--gray);
    font-weight: 500
}

.hero-sub {
    font-size: 1.03rem;
    color: var(--gray);
    line-height: 1.8;
    max-width: 420px;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 0
}

.btn-main {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--blue);
    color: #fff;
    border: none;
    padding: 14px 28px;
    border-radius: var(--rs);
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(26, 111, 232, .38);
    transition: all .22s;
    text-decoration: none;
}

.btn-main:hover {
    background: var(--blue-d);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(26, 111, 232, .48)
}

.btn-main svg {
    transition: transform .2s
}

.btn-main:hover svg {
    transform: translateX(3px)
}

.hero-free {
    font-size: 12.5px;
    color: var(--gray)
}

.hero-free strong {
    color: var(--dark)
}

.trust-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px
}

.ti {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--gray);
    font-weight: 500
}

.ti-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0
}

/* ── Right column ── */
.hero-right {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    /* min-height ensures absolute cards have space even on mobile */
    min-height: 380px;
    opacity: 0;
    animation: heroIn .7s .3s ease forwards;
}

.hero-illo-svg {
    width: 100%;
    max-width: 440px;
    height: auto;
    filter: drop-shadow(0 16px 40px rgba(26, 111, 232, .18));
    animation: illoFloat 6s ease-in-out infinite;
}

@keyframes illoFloat {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-10px)
    }
}

/* ── Floating cards — same behaviour on all screen sizes ── */
.fcard {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    padding: 11px 16px;
    box-shadow: var(--sh-md);
    font-size: 12px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
    z-index: 3;
    opacity: 0;
    animation: fcardIn .5s ease forwards, floatY 4s ease-in-out infinite;
}

/* positions relative to .hero-right */
.fcard.a {
    top: 4%;
    right: 4%;
    animation-delay: .5s, .5s
}

.fcard.b {
    bottom: 14%;
    left: 4%;
    animation-delay: .75s, .75s
}

.fcard.c {
    top: 42%;
    right: 2%;
    animation-delay: 1s, 1s
}

@keyframes fcardIn {
    from {
        opacity: 0;
        transform: translateY(12px) scale(.94)
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes floatY {
    0%, 100% {
        transform: translateY(0)
    }
    50% {
        transform: translateY(-8px)
    }
}

.fcard-icon {
    font-size: 18px
}

.fcard-text {
    color: var(--dark);
    font-size: 12.5px
}

.fcard-sub {
    font-size: 10.5px;
    color: var(--gray);
    font-weight: 400
}

/* ── Responsive ── */
@media (max-width: 800px) {
    .hero {
        grid-template-columns:1fr;
        padding-top: 72px;
        gap: 24px;
        max-width: 100%;
    }

    .hero-rings {
        display: none
    }

    .hero-right {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        /* enough height for illustration + cards that overlap it */
        min-height: 340px;
    }

    .hero-illo-svg {
        max-width: 300px
    }

    /* cards: tighten positions so they don't overflow off-screen */
    .fcard.a {
        top: 2%;
        right: 0%
    }

    .fcard.b {
        bottom: 8%;
        left: 0%
    }

    .fcard.c {
        top: 40%;
        right: -2%
    }

    /* slightly smaller on mobile */
    .fcard {
        padding: 9px 13px;
        font-size: 11.5px
    }

    .fcard-icon {
        font-size: 16px
    }
}

@media (max-width: 420px) {
    .hero-right {
        min-height: 300px
    }

    .hero-illo-svg {
        max-width: 260px
    }

    .fcard {
        padding: 8px 11px;
        font-size: 11px;
        gap: 7px
    }

    .fcard-sub {
        display: none
    }

    /* hide subtitle only, keep label */
    /* re-anchor so they sit inside the smaller container */
    .fcard.a {
        top: 0%;
        right: 0%
    }

    .fcard.b {
        bottom: 4%;
        left: 0%
    }

    .fcard.c {
        top: 38%;
        right: -1%
    }
}


/* ── HOW IT WORKS ───────────────────────────────────── */
/* ── HOW IT WORKS — light, animated ────────────────── */
.how {
    background: #EEF4FF; /* azul muito clarinho */
    padding: 96px 5vw;
    position: relative;
    overflow: hidden;
}

/* decorative large number watermark */
.how::before {
    content: '?';
    position: absolute;
    right: -2vw;
    top: 50%;
    transform: translateY(-50%);
    font-family: 'Playfair Display', serif;
    font-size: clamp(200px, 28vw, 380px);
    font-weight: 700;
    font-style: italic;
    color: rgba(26, 111, 232, .05);
    line-height: 1;
    pointer-events: none;
    user-select: none;
}

.how .sec-lbl {
    color: var(--blue)
}

.how .sec-lbl::before {
    background: var(--blue)
}

.how h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.how h2 em {
    font-style: italic;
    color: var(--blue)
}

.how .sec-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 60px;
}

/* connector line between cards */
.how-steps {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    position: relative;
}

/* horizontal line linking all cards */
.how-steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: calc(12.5%);
    width: 75%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), rgba(26, 111, 232, .2));
    z-index: 0;
}

.hs {
    padding: 0 16px 32px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* circle number badge */
.hs-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    background: #fff;
    border: 2px solid var(--blue);
    box-shadow: 0 4px 20px rgba(26, 111, 232, .15);
    position: relative;
    z-index: 2;
    transition: all .3s;
}

.hs-circle-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.hs-circle-ico {
    font-size: 1.8rem;
    display: none; /* shown on hover via JS-free trick */
}

/* hover: circle fills blue, number becomes icon */
.hs:hover .hs-circle {
    background: var(--blue);
    box-shadow: 0 8px 28px rgba(26, 111, 232, .38);
    transform: scale(1.08);
}

.hs:hover .hs-circle-num {
    display: none
}

.hs:hover .hs-circle-ico {
    display: block
}

/* card body */
.hs-body {
    background: #fff;
    border-radius: 16px;
    padding: 22px 18px 18px;
    box-shadow: 0 2px 16px rgba(26, 26, 46, .07);
    border: 1px solid rgba(26, 111, 232, .1);
    transition: all .28s;
    transform: translateY(0);
}

.hs:hover .hs-body {
    box-shadow: 0 12px 40px rgba(26, 111, 232, .14);
    transform: translateY(-4px);
    border-color: rgba(26, 111, 232, .25);
}

.hs h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.hs p {
    font-size: .875rem;
    color: var(--gray);
    line-height: 1.65;
    margin-bottom: 12px;
}

.hs-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: .04em;
}

/* entrance animation — each card slides up */
.hs {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .5s ease, transform .5s ease;
}

.hs.vis {
    opacity: 1;
    transform: translateY(0)
}

.hs:nth-child(1) {
    transition-delay: .05s
}

.hs:nth-child(2) {
    transition-delay: .18s
}

.hs:nth-child(3) {
    transition-delay: .31s
}

.hs:nth-child(4) {
    transition-delay: .44s
}

/* mobile */
@media (max-width: 700px) {
    .how-steps {
        grid-template-columns:1fr 1fr;
        gap: 20px
    }

    .how-steps::before {
        display: none
    }

    .hs {
        padding: 0 0 0
    }

    /* re-enable entrance on 2-col */
    .hs:nth-child(3) {
        transition-delay: .1s
    }

    .hs:nth-child(4) {
        transition-delay: .2s
    }
}

@media (max-width: 400px) {
    .how-steps {
        grid-template-columns:1fr
    }

    .hs {
        transition-delay: .05s !important
    }
}

/* ── TRUST CARDS ────────────────────────────────────── */
.trust {
    background: #fff;
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid var(--line);
}

@media (max-width: 640px) {
    .trust {
        grid-template-columns:1fr
    }
}

.tc {
    padding: 32px 26px;
    border-right: 1px solid var(--line);
    transition: background .2s;
}

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

.tc:hover {
    background: var(--blue-l)
}

@media (max-width: 640px) {
    .tc {
        border-right: none;
        border-bottom: 1px solid var(--line)
    }
}

.tc-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
}

.tc h4 {
    font-size: .95rem;
    font-weight: 600;
    margin-bottom: 6px
}

.tc p {
    font-size: .845rem;
    color: var(--gray);
    line-height: 1.6
}

/* ── REQUEST SECTION ────────────────────────────────── */
.req {
    background: var(--cream);
    padding: 88px 5vw;
}

.req .sec-lbl {
    color: var(--blue)
}

.req .sec-lbl::before {
    background: var(--blue)
}

.req h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.req h2 em {
    font-style: italic;
    color: var(--red)
}

.req .sec-sub {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 52px
}

.req-wrap {
    max-width: 620px
}

/* ── Step indicator ── */
.sbar {
    display: flex;
    align-items: center;
    margin-bottom: 44px;
}

.sb-i {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 600;
    color: var(--lgray);
    transition: color .3s;
}

.sb-i.on {
    color: var(--blue)
}

.sb-i.dn {
    color: var(--gray);
    opacity: .6
}

.sb-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12.5px;
    font-weight: 700;
    background: var(--lgray);
    color: var(--gray);
    border: 2px solid var(--lgray);
    transition: all .3s;
}

.sb-i.on .sb-dot {
    background: var(--blue);
    color: #fff;
    border-color: var(--blue);
    box-shadow: 0 4px 14px rgba(26, 111, 232, .38)
}

.sb-i.dn .sb-dot {
    background: #059669;
    border-color: #059669;
    color: #fff
}

.sb-i.dn .sb-dot::before {
    content: '✓'
}

.sb-line {
    flex: 1;
    height: 2px;
    background: var(--lgray);
    margin: 0 8px;
    transition: background .3s;
    min-width: 16px
}

.sb-line.dn {
    background: #059669
}

@media (max-width: 400px) {
    .sb-i span {
        display: none
    }

    .sb-line {
        min-width: 10px;
        margin: 0 5px
    }
}

/* Panels */
.panel {
    display: none;
    animation: panelIn .3s ease
}

.panel.on {
    display: block
}

@keyframes panelIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }
    to {
        opacity: 1;
        transform: translateY(0)
    }
}

.pan-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    margin-bottom: 6px;
}

.pan-hint {
    font-size: .91rem;
    color: var(--gray);
    margin-bottom: 28px;
    line-height: 1.55
}

/* ── Category list — same style as regional list ── */
.cat-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 28px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 3px
}

.cat-list::-webkit-scrollbar {
    width: 3px
}

.cat-list::-webkit-scrollbar-thumb {
    background: var(--lgray);
    border-radius: 2px
}

.cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    border: 1.5px solid var(--lgray);
    border-radius: var(--rs);
    padding: 12px 14px;
    cursor: pointer;
    transition: all .18s;
}

.cat-item:hover {
    border-color: var(--blue);
    background: var(--blue-l)
}

.cat-item.on {
    border-color: var(--blue);
    background: var(--blue-l)
}

.cat-item-ico {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--ci-bg);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background .18s;
}

.cat-item.on .cat-item-ico, .cat-item:hover .cat-item-ico {
    background: var(--ci-accent)
}

.cat-item-info {
    flex: 1;
    min-width: 0
}

.cat-item-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark)
}

.cat-item-sub {
    font-size: 11px;
    color: var(--gray);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.cat-item-ck {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--lgray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: transparent;
    transition: all .18s;
}

.cat-item.on .cat-item-ck {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

/* ── Regional panel ── */
.reg-ctx {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 2px solid var(--blue);
    border-radius: var(--rs);
    padding: 14px 18px;
    margin-bottom: 18px;
}

.rctx-ico {
    font-size: 22px;
    flex-shrink: 0
}

.rctx-lbl {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 2px
}

.rctx-val {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2
}

.rctx-edit {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 12px;
    color: var(--gray);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color .15s;
    padding: 0;
    flex-shrink: 0;
}

.rctx-edit:hover {
    color: var(--blue)
}

.srch {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 1.5px solid var(--lgray);
    border-radius: var(--rs);
    padding: 10px 14px;
    margin-bottom: 10px;
    transition: border-color .2s;
}

.srch:focus-within {
    border-color: var(--blue)
}

.srch input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 13.5px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
}

.srch input::placeholder {
    color: #B5BDC9
}

.rlist {
    display: flex;
    flex-direction: column;
    gap: 6px;
    max-height: 280px;
    overflow-y: auto;
    padding-right: 3px;
}

.rlist::-webkit-scrollbar {
    width: 3px
}

.rlist::-webkit-scrollbar-thumb {
    background: var(--lgray);
    border-radius: 2px
}

.ritem {
    display: flex;
    align-items: center;
    gap: 11px;
    background: #fff;
    border: 1.5px solid var(--lgray);
    border-radius: var(--rs);
    padding: 11px 14px;
    cursor: pointer;
    transition: all .18s;
}

.ritem:hover {
    border-color: var(--blue);
    background: var(--blue-l)
}

.ritem.on {
    border-color: var(--blue);
    background: var(--blue-l)
}

.ri-flag {
    font-size: 19px;
    flex-shrink: 0
}

.ri-info {
    flex: 1;
    min-width: 0
}

.ri-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--dark)
}

.ri-state {
    font-size: 11px;
    color: var(--gray);
    margin-top: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.ri-ck {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 2px solid var(--lgray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    color: transparent;
    transition: all .18s;
}

.ritem.on .ri-ck {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff
}

/* ── Contact panel ── */
.sum-card {
    background: var(--blue-l);
    border: 1.5px solid rgba(26, 111, 232, .2);
    border-radius: var(--r);
    padding: 16px 18px;
    margin-bottom: 20px;
}

.sum-card-title {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--blue);
    margin-bottom: 12px;
}

.sum-row {
    display: flex;
    gap: 10px;
    margin-bottom: 7px;
    align-items: center
}

.sum-row:last-child {
    margin-bottom: 0
}

.sum-key {
    font-size: 12.5px;
    font-weight: 600;
    color: var(--dark);
    min-width: 70px;
    flex-shrink: 0
}

.sum-val {
    font-size: 12.5px;
    color: var(--gray)
}

.sum-edit {
    margin-left: auto;
    background: none;
    border: none;
    font-size: 12px;
    color: var(--gray);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    transition: color .15s;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.sum-edit:hover {
    color: var(--blue)
}

.fields {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 16px
}

.fin {
    background: #fff;
    border: 1.5px solid var(--lgray);
    border-radius: var(--rs);
    padding: 13px 16px;
    font-size: 14px;
    font-family: 'DM Sans', sans-serif;
    color: var(--dark);
    outline: none;
    width: 100%;
    transition: border-color .2s;
}

.fin::placeholder {
    color: #B5BDC9
}

.fin:focus {
    border-color: var(--blue)
}

/* ── Nav buttons ── */
.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 28px
}

.btn-back {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 1.5px solid var(--lgray);
    color: var(--gray);
    padding: 11px 20px;
    border-radius: var(--rs);
    font-size: 13.5px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .18s;
}

.btn-back:hover {
    border-color: var(--dark);
    color: var(--dark)
}

.btn-next {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
    background: var(--blue);
    border: none;
    color: #fff;
    padding: 12px 26px;
    border-radius: var(--rs);
    font-size: 14.5px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 5px 20px rgba(26, 111, 232, .35);
}

.btn-next:hover {
    background: var(--blue-d);
    transform: translateY(-1px)
}

.btn-next:disabled {
    background: var(--lgray);
    color: var(--gray);
    box-shadow: none;
    transform: none;
    cursor: default
}

.btn-send {
    width: 100%;
    padding: 15px;
    border-radius: var(--r);
    border: none;
    background: var(--red);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all .22s;
    box-shadow: 0 5px 22px rgba(217, 48, 37, .4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
}

.btn-send:hover {
    background: #B91C1C;
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(217, 48, 37, .5)
}

.btn-send:disabled {
    background: var(--lgray);
    color: var(--gray);
    box-shadow: none;
    transform: none;
    cursor: default
}

/* ── Success ── */
.succ {
    display: none;
    text-align: center;
    padding: 44px 10px;
    animation: panelIn .45s ease;
}

.succ.on {
    display: block
}

.succ-ring {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    margin: 0 auto 22px;
    background: linear-gradient(135deg, #059669, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 36px rgba(5, 150, 105, .4);
    animation: popIn .5s cubic-bezier(.34, 1.56, .64, 1) .1s both;
}

@keyframes popIn {
    from {
        transform: scale(0);
        opacity: 0
    }
    to {
        transform: scale(1);
        opacity: 1
    }
}

.succ h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.succ p {
    font-size: .96rem;
    color: var(--gray);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 22px
}

.succ-tag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: #D1FAE5;
    color: #065F46;
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 12.5px;
    font-weight: 600;
    margin-bottom: 22px;
}

.btn-reset {
    background: none;
    border: 1.5px solid var(--lgray);
    padding: 10px 22px;
    border-radius: var(--rs);
    font-size: 13px;
    font-weight: 500;
    font-family: 'DM Sans', sans-serif;
    color: var(--gray);
    cursor: pointer;
    transition: all .18s;
}

.btn-reset:hover {
    border-color: var(--blue);
    color: var(--blue)
}

/* ── Reveal ─────────────────────────────────────────── */
.rv {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .55s ease, transform .55s ease
}

.rv.vis {
    opacity: 1;
    transform: translateY(0)
}

.d1 {
    transition-delay: .07s
}

.d2 {
    transition-delay: .14s
}

.d3 {
    transition-delay: .21s
}

.d4 {
    transition-delay: .28s
}
