/* SecureVerify — responsive 3-step verification flow */
:root {
    --blue: #1253e8;
    --blue-dark: #071f58;
    --blue-soft: #edf4ff;
    --blue-line: #d6e3fb;
    --gray: #64748b;
    --gray-dark: #26344f;
    --gray-light: #eef2f7;
    --green: #119b61;
    --green-soft: #eaf9ef;
    --orange: #f59e0b;
    --orange-soft: #fff5df;
    --white: #ffffff;
    --shadow: 0 20px 55px rgba(25, 55, 105, .12);
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--blue-dark);
    background:
        radial-gradient(circle at 50% 8%, rgba(217, 232, 255, .55), transparent 35%),
        linear-gradient(180deg, #f8fbff 0%, #f2f6fc 100%);
    font-family: Inter, Poppins, "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

button,
input {
    font: inherit;
}

.page-shell {
    width: min(930px, calc(100% - 32px));
    margin: 0 auto;
    padding: 32px 0 48px;
}

.page-counter {
    margin-bottom: 9px;
    text-align: center;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .02em;
}

.verification-card {
    min-height: 900px;
    overflow: hidden;
    border: 1px solid #d6deeb;
    border-radius: 10px;
    background: rgba(255, 255, 255, .97);
    box-shadow: var(--shadow);
}

.site-header {
    height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 45px;
    border-bottom: 1px solid #e7edf6;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--blue-dark);
    text-decoration: none;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.03em;
}

.brand-mark {
    width: 32px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    color: var(--blue);
}

.brand-mark svg {
    width: 100%;
    height: 100%;
}

.header-security {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #33415f;
    font-size: 11px;
    font-weight: 600;
}

.header-security svg {
    width: 18px;
    fill: none;
    stroke: var(--blue-dark);
    stroke-width: 1.8;
    stroke-linecap: round;
}

.mobile-menu {
    display: none;
    width: 23px;
    gap: 4px;
}

.mobile-menu span {
    height: 2px;
    width: 100%;
    display: block;
    border-radius: 2px;
    background: var(--blue-dark);
}

.content {
    padding: 42px 45px 24px;
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 36px;
    align-items: center;
    min-height: 510px;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 14px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
}

.hero-copy h1 {
    margin: 26px 0 18px;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1.08;
    letter-spacing: -.04em;
}

.lead {
    max-width: 510px;
    margin: 0;
    color: var(--gray-dark);
    font-size: 16px;
    line-height: 1.65;
}

.check-list {
    display: grid;
    gap: 17px;
    margin: 30px 0 0;
    padding: 0;
    list-style: none;
    color: #172a50;
    font-weight: 600;
}

.check-list li {
    position: relative;
    padding-left: 34px;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: -2px;
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: #e9f1ff;
    font-size: 13px;
    font-weight: 900;
}

.security-art {
    position: relative;
    min-height: 420px;
}

.art-glow {
    position: absolute;
    inset: 32px 0 18px 12px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(72, 133, 255, .24), rgba(72, 133, 255, .08) 46%, transparent 70%);
    filter: blur(1px);
}

.identity-card {
    position: absolute;
    left: 28px;
    top: 72px;
    width: 183px;
    height: 231px;
    z-index: 2;
    padding: 28px 24px;
    border: 1px solid #d8e5fb;
    border-radius: 14px;
    background: linear-gradient(160deg, #fff 0%, #f4f8ff 100%);
    box-shadow: 0 18px 38px rgba(33, 79, 155, .19);
}

.avatar {
    position: relative;
    width: 73px;
    height: 73px;
    margin: 0 auto 26px;
    border-radius: 50%;
    background: #e9f1ff;
}

.avatar-head,
.avatar-body {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    background: #073aa5;
}

.avatar-head {
    top: 14px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.avatar-body {
    bottom: 8px;
    width: 48px;
    height: 27px;
    border-radius: 24px 24px 12px 12px;
}

.line {
    display: block;
    width: 74%;
    height: 8px;
    margin: 12px 0 0;
    border-radius: 9px;
    background: #dce7fa;
}

.line.wide {
    width: 100%;
}

.line.short {
    width: 54%;
}

.shield {
    position: absolute;
    top: 102px;
    right: 8px;
    width: 205px;
    z-index: 3;
    filter: drop-shadow(0 25px 24px rgba(11, 61, 154, .25));
}

.shield svg {
    width: 100%;
    display: block;
}

.mini-lock {
    position: absolute;
    left: 1px;
    bottom: 42px;
    width: 64px;
    height: 74px;
    z-index: 4;
    display: grid;
    place-items: center;
    border: 1px solid #dbe7f8;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 14px 25px rgba(31, 71, 140, .13);
}

.mini-lock svg {
    width: 36px;
    fill: var(--blue);
    stroke: #fff;
    stroke-width: 1.1;
}

.protected-note {
    position: absolute;
    right: -6px;
    bottom: 20px;
    width: 235px;
    z-index: 5;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 16px;
    border: 1px solid #dce6f5;
    border-radius: 11px;
    background: #fff;
    box-shadow: 0 13px 30px rgba(32, 68, 127, .12);
}

.protected-note strong,
.protected-note small {
    display: block;
}

.protected-note strong {
    font-size: 12px;
}

.protected-note small {
    margin-top: 5px;
    color: var(--gray);
    font-size: 10px;
    line-height: 1.45;
}

.tiny-shield {
    width: 25px;
    height: 25px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    color: #fff;
    border-radius: 7px 7px 10px 10px;
    background: var(--blue);
    font-weight: 800;
}

.info-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin: 0 45px;
    padding: 17px 20px;
    border: 1px solid #dce7f7;
    border-radius: 7px;
    color: #16418f;
    background: linear-gradient(90deg, #edf4ff, #f7faff);
    font-size: 13px;
    line-height: 1.55;
}

.info-note p {
    margin: 0;
}

.info-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 2px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    font-size: 12px;
    font-weight: 900;
}

.cta-area {
    width: min(580px, calc(100% - 90px));
    margin: 80px auto 32px;
    text-align: center;
}

.primary-button {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 17px;
    padding: 13px 24px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    background: linear-gradient(90deg, #0c4be0, #1261ef);
    box-shadow: 0 11px 23px rgba(18, 83, 232, .2);
    text-decoration: none;
    font-size: 17px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease;
}

.primary-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 27px rgba(18, 83, 232, .28);
}

.primary-button span {
    font-size: 23px;
    line-height: 1;
}

.redirect-note {
    margin: 14px 0 0;
    color: #34415e;
    font-size: 12px;
}

.redirect-note span {
    color: var(--blue-dark);
    font-weight: 900;
}

/* Step 2 */
.centered-content {
    text-align: center;
}

.section-title {
    margin: 25px 0 7px;
    font-size: 35px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.section-subtitle {
    margin: 0;
    color: var(--gray);
    font-size: 14px;
}

.process-flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 54px 0 37px;
}

.process-flow::before {
    content: "";
    position: absolute;
    left: 11%;
    right: 11%;
    top: 34px;
    border-top: 2px dotted #b9cdf1;
}

.process-item {
    position: relative;
    z-index: 1;
}

.process-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-icon {
    width: 57px;
    height: 57px;
    display: grid;
    place-items: center;
    border: 1px solid #bed3f7;
    border-radius: 50%;
    color: var(--blue);
    background: #f4f8ff;
}

.process-icon svg {
    width: 28px;
    height: 28px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.number {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    margin-top: 9px;
    border-radius: 50%;
    color: #fff;
    background: var(--blue);
    font-size: 12px;
    font-weight: 800;
}

.process-item h2 {
    margin: 16px 0 9px;
    font-size: 13px;
    line-height: 1.25;
}

.process-item p {
    margin: 0 auto;
    max-width: 160px;
    color: #4f5c73;
    font-size: 11px;
    line-height: 1.55;
}

.why-panel {
    padding: 22px 30px 25px;
    border: 1px solid #d7e2f2;
    border-radius: 7px;
    background: #fff;
}

.why-panel > h2 {
    margin: 0 0 23px;
    font-size: 17px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.why-grid article > span {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin: 0 auto 10px;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 22px;
}

.why-grid h3 {
    margin: 0 0 7px;
    font-size: 12px;
}

.why-grid p {
    margin: 0;
    color: #4d5a71;
    font-size: 9.5px;
    line-height: 1.45;
}

.compact-note {
    margin: 20px 0 0;
    text-align: left;
}

.step-two .cta-area {
    margin-top: 28px;
    margin-bottom: 7px;
}

.page-nav {
    min-height: 49px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 45px 20px;
}

.back-link {
    justify-self: start;
    display: inline-flex;
    gap: 10px;
    color: var(--blue-dark);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.progress-dots {
    grid-column: 2;
    display: flex;
    align-items: center;
    gap: 23px;
}

.progress-dots span {
    position: relative;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: #aebbd3;
}

.progress-dots span:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 12px;
    top: 5px;
    width: 23px;
    height: 2px;
    background: #d7dfec;
}

.progress-dots span.active {
    background: var(--blue);
}

/* Step 3 */
.details-title {
    margin: 25px 0 5px;
    font-size: 34px;
    line-height: 1.1;
    letter-spacing: -.035em;
}

.details-subtitle {
    margin: 0 0 19px;
    color: var(--gray);
    font-size: 14px;
}

.faq-stack {
    overflow: hidden;
    border: 1px solid #cfdcf0;
    border-radius: 8px;
}

.faq-stack details {
    border-bottom: 1px solid #dce4f1;
    background: #fff;
}

.faq-stack details:last-child {
    border-bottom: 0;
}

.faq-stack summary {
    min-height: 62px;
    display: grid;
    grid-template-columns: 34px 1fr 24px;
    align-items: center;
    gap: 13px;
    padding: 12px 18px;
    cursor: pointer;
    list-style: none;
}

.faq-stack summary::-webkit-details-marker {
    display: none;
}

.summary-icon {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 16px;
}

.faq-stack strong,
.faq-stack small {
    display: block;
}

.faq-stack strong {
    margin-bottom: 3px;
    font-size: 12px;
}

.faq-stack small {
    color: #33415d;
    font-size: 10.5px;
    line-height: 1.35;
}

.chevron {
    justify-self: end;
    color: var(--blue-dark);
    font-size: 18px;
    transition: transform .2s ease;
}

details[open] .chevron {
    transform: rotate(180deg);
}

.detail-answer {
    padding: 0 18px 15px 65px;
    color: var(--gray);
    font-size: 11px;
    line-height: 1.5;
}

.fee-panel {
    display: grid;
    grid-template-columns: 38% 62%;
    margin-top: 17px;
    overflow: hidden;
    border: 1px solid #cfdcf0;
    border-radius: 8px;
}

.fee-price,
.fee-copy {
    padding: 18px 22px;
}

.fee-price {
    border-right: 1px solid #dce4f1;
}

.fee-price small,
.fee-price strong,
.fee-price span {
    display: block;
}

.fee-price small {
    margin-bottom: 6px;
    color: #263755;
    font-size: 10px;
    font-weight: 700;
}

.fee-price strong {
    font-size: 39px;
    line-height: 1;
    letter-spacing: -.03em;
}

.fee-price span {
    margin-top: 8px;
    color: #344360;
    font-size: 11px;
}

.fee-copy p {
    margin: 0 0 11px;
    color: #2f3d58;
    font-size: 11px;
    line-height: 1.5;
}

.green-note {
    padding: 11px 14px;
    border-radius: 4px;
    color: #087740;
    background: var(--green-soft);
    font-size: 11px;
    font-weight: 600;
    line-height: 1.45;
}

.warning-note {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    margin-top: 16px;
    padding: 15px 19px;
    border: 1px solid #f5dda8;
    border-radius: 7px;
    color: #4b3a1c;
    background: var(--orange-soft);
    font-size: 11px;
    line-height: 1.5;
}

.warning-note span {
    color: var(--orange);
    font-size: 22px;
    line-height: 1;
}

.warning-note p {
    margin: 0;
}

.step-three .cta-area {
    width: 100%;
    margin: 17px auto 6px;
}

.final-cta .primary-button {
    min-height: 48px;
}

.offer-mail {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 10px;
    margin: 14px auto 0;
    padding: 10px 16px;
    border: 1px solid #d9e6ff;
    border-radius: 999px;
    color: #1d376f;
    background: linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
    font-size: 13px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(18, 83, 232, .08);
}

.offer-label {
    color: #4b5e80;
    font-weight: 700;
}

.offer-email-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(90deg, #0d49d8, #1261ef);
    box-shadow: 0 8px 18px rgba(18, 83, 232, .2);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
    letter-spacing: .01em;
}

.offer-email-link::before {
    content: "✉";
    font-size: 13px;
}

.offer-email-link:hover {
    filter: brightness(1.02);
    text-decoration: none;
}

.missing-mail {
    color: #8a1d1d;
    background: #fff1f1;
    border-color: #f2c6c6;
}


.support-note {
    margin: 12px 0 0;
    color: #33415e;
    font-size: 12px;
    line-height: 1.55;
}

.support-note span {
    color: var(--blue-dark);
    font-weight: 900;
}

/* Admin panel */
.admin-body {
    background:
        radial-gradient(circle at 20% 0%, rgba(18, 83, 232, .12), transparent 35%),
        #f3f6fb;
}

.admin-shell {
    width: min(880px, calc(100% - 30px));
    margin: 0 auto;
    padding: 45px 0 70px;
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.admin-brand strong,
.admin-brand span {
    display: block;
}

.admin-brand strong {
    font-size: 22px;
}

.admin-brand > div > span {
    margin-top: 2px;
    color: var(--gray);
    font-size: 12px;
}

.admin-card {
    padding: 34px;
    border: 1px solid #d9e1ed;
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--shadow);
}

.login-card {
    width: min(500px, 100%);
    margin: 50px auto 0;
}

.admin-kicker {
    display: inline-flex;
    padding: 5px 10px;
    border-radius: 999px;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
}

.admin-card h1 {
    margin: 18px 0 8px;
    font-size: 30px;
    letter-spacing: -.035em;
}

.admin-card > p,
.admin-heading p {
    margin: 0;
    color: var(--gray);
    line-height: 1.55;
}

.admin-card form {
    margin-top: 28px;
}

.admin-card label {
    display: block;
    margin-bottom: 18px;
    color: #1d2c49;
    font-size: 13px;
    font-weight: 700;
}

.admin-card input {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    padding: 0 14px;
    border: 1px solid #cfd8e7;
    border-radius: 7px;
    color: var(--blue-dark);
    outline: none;
    background: #fff;
}

.admin-card input:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(18, 83, 232, .1);
}

.admin-card label small {
    display: block;
    margin-top: 6px;
    color: var(--gray);
    font-size: 11px;
    font-weight: 500;
    line-height: 1.45;
}

.admin-button {
    min-height: 48px;
    padding: 12px 20px;
    border: 0;
    border-radius: 7px;
    color: #fff;
    background: var(--blue);
    cursor: pointer;
    font-weight: 800;
    box-shadow: 0 9px 20px rgba(18, 83, 232, .18);
}

.login-card .admin-button {
    width: 100%;
}

.admin-alert {
    margin: 0 auto 18px;
    padding: 13px 16px;
    border-radius: 8px;
    font-size: 13px;
}

.admin-alert p {
    margin: 0;
}

.admin-alert p + p {
    margin-top: 5px;
}

.admin-alert.error {
    color: #9f1c1c;
    border: 1px solid #f4caca;
    background: #fff0f0;
}

.admin-alert.success {
    color: #087740;
    border: 1px solid #bee8ce;
    background: #ecfbf2;
}

.admin-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 26px;
    border-bottom: 1px solid #e5eaf2;
}

.admin-actions {
    display: flex;
    gap: 10px;
}

.admin-actions a {
    padding: 9px 12px;
    border: 1px solid #d5deeb;
    border-radius: 6px;
    color: var(--blue);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
}

.settings-form {
    display: grid;
    gap: 25px;
}

.form-section {
    padding: 22px;
    border: 1px solid #e0e6ef;
    border-radius: 9px;
    background: #fbfcfe;
}

.form-section h2 {
    margin: 0 0 18px;
    font-size: 16px;
}

.form-section h2 span {
    color: var(--gray);
    font-size: 12px;
    font-weight: 500;
}

.form-section label:last-child {
    margin-bottom: 0;
}

.two-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.save-button {
    justify-self: start;
    min-width: 190px;
}

.last-updated {
    margin-top: 20px !important;
    font-size: 11px;
}

/* Responsive */
@media (max-width: 760px) {
    .page-shell {
        width: min(375px, calc(100% - 18px));
        padding: 14px 0 25px;
    }

    .page-counter {
        display: none;
    }

    .verification-card {
        min-height: 0;
        border-radius: 7px;
    }

    .site-header {
        height: 56px;
        padding: 0 18px;
    }

    .brand {
        font-size: 14px;
        gap: 7px;
    }

    .brand-mark {
        width: 23px;
        height: 28px;
    }

    .header-security {
        display: none;
    }

    .mobile-menu {
        display: grid;
    }

    .content {
        padding: 22px 18px 16px;
    }

    .hero-layout {
        display: flex;
        flex-direction: column;
        gap: 10px;
        min-height: 0;
        align-items: stretch;
    }

    .hero-copy h1 {
        margin: 18px 0 12px;
        font-size: 28px;
        line-height: 1.08;
    }

    .lead {
        font-size: 11px;
        line-height: 1.55;
    }

    .check-list {
        order: 3;
        gap: 0;
        margin: 3px 0 0;
        border-top: 1px solid #edf1f7;
    }

    .check-list li {
        min-height: 43px;
        display: flex;
        align-items: center;
        padding: 9px 28px 9px 31px;
        border-bottom: 1px solid #edf1f7;
        font-size: 11px;
    }

    .check-list li::before {
        top: 11px;
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .check-list li::after {
        content: "›";
        position: absolute;
        right: 4px;
        width: 16px;
        height: 16px;
        display: grid;
        place-items: center;
        border: 1px solid #73829b;
        border-radius: 50%;
        color: #46546b;
        font-size: 12px;
    }

    .security-art {
        min-height: 210px;
        margin: -3px 0 0;
    }

    .art-glow {
        inset: 5px 35px 0;
    }

    .identity-card {
        left: 58px;
        top: 40px;
        width: 105px;
        height: 135px;
        padding: 16px 14px;
        border-radius: 9px;
    }

    .avatar {
        width: 43px;
        height: 43px;
        margin-bottom: 14px;
    }

    .avatar-head {
        top: 8px;
        width: 15px;
        height: 15px;
    }

    .avatar-body {
        bottom: 5px;
        width: 29px;
        height: 16px;
    }

    .line {
        height: 5px;
        margin-top: 7px;
    }

    .shield {
        top: 47px;
        right: 40px;
        width: 121px;
    }

    .mini-lock {
        left: 42px;
        bottom: 15px;
        width: 39px;
        height: 46px;
        border-radius: 7px;
    }

    .mini-lock svg {
        width: 24px;
    }

    .protected-note {
        display: none;
    }

    .info-note {
        margin: 0 18px;
        padding: 13px;
        gap: 10px;
        font-size: 9.5px;
        line-height: 1.55;
    }

    .info-icon {
        width: 18px;
        height: 18px;
        font-size: 10px;
    }

    .cta-area {
        width: calc(100% - 36px);
        margin: 18px auto 17px;
    }

    .primary-button {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 12px;
    }

    .primary-button span {
        font-size: 18px;
    }

    .redirect-note {
        margin-top: 10px;
        font-size: 9px;
    }

    /* Mobile step 2 */
    .centered-content {
        text-align: center;
    }

    .section-title {
        margin-top: 14px;
        font-size: 19px;
    }

    .section-subtitle {
        max-width: 230px;
        margin: 4px auto 0;
        font-size: 10px;
    }

    .process-flow {
        display: grid;
        grid-template-columns: 1fr;
        gap: 3px;
        margin: 25px 0 18px;
        text-align: left;
    }

    .process-flow::before {
        left: 11px;
        right: auto;
        top: 19px;
        bottom: 19px;
        border-top: 0;
        border-left: 2px dotted #b9cdf1;
    }

    .process-item {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 10px;
        align-items: start;
        min-height: 70px;
    }

    .process-top {
        position: relative;
        flex-direction: row;
        align-items: center;
        width: 64px;
        min-height: 40px;
    }

    .process-icon {
        width: 36px;
        height: 36px;
        margin-left: 28px;
        z-index: 2;
    }

    .process-icon svg {
        width: 19px;
        height: 19px;
    }

    .number {
        position: absolute;
        top: 8px;
        left: 0;
        width: 21px;
        height: 21px;
        margin: 0;
        font-size: 9px;
    }

    .process-item h2 {
        margin: 3px 0 4px;
        font-size: 10px;
    }

    .process-item p {
        max-width: none;
        margin: 0;
        font-size: 9px;
        line-height: 1.45;
    }

    .why-panel {
        padding: 0;
    }

    .why-panel > h2 {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0;
        font-size: 11px;
    }

    .why-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 8px;
        padding: 0 12px 12px;
    }

    .why-grid article {
        padding: 10px 6px;
        border-radius: 8px;
        background: #f8fbff;
        text-align: center;
    }

    .why-grid article > span {
        width: 34px;
        height: 34px;
        margin: 0 auto 8px;
        font-size: 16px;
    }

    .why-grid h3 {
        margin: 0 0 4px;
        font-size: 9px;
        line-height: 1.35;
    }

    .why-grid p {
        display: block;
        margin: 0;
        font-size: 7.5px;
        line-height: 1.45;
    }

    .compact-note {
        margin: 12px 0 0;
    }

    .step-two .cta-area {
        width: 100%;
        margin-top: 12px;
    }

    .page-nav {
        min-height: 39px;
        padding: 0 18px 12px;
    }

    .back-link {
        font-size: 10px;
    }

    .progress-dots {
        gap: 18px;
    }

    .progress-dots span {
        width: 9px;
        height: 9px;
    }

    .progress-dots span:not(:last-child)::after {
        left: 9px;
        top: 4px;
        width: 18px;
    }

    /* Mobile step 3 */
    .details-title {
        margin-top: 14px;
        font-size: 22px;
    }

    .details-subtitle {
        margin-bottom: 13px;
        font-size: 10px;
    }

    .faq-stack summary {
        min-height: 44px;
        grid-template-columns: 26px 1fr 16px;
        gap: 8px;
        padding: 8px 10px;
    }

    .summary-icon {
        width: 25px;
        height: 25px;
        font-size: 12px;
    }

    .faq-stack strong {
        font-size: 9px;
    }

    .faq-stack small {
        display: none;
    }

    .detail-answer {
        padding: 0 10px 10px 44px;
        font-size: 8.5px;
    }

    .fee-panel {
        grid-template-columns: 42% 58%;
        margin-top: 11px;
    }

    .fee-price,
    .fee-copy {
        padding: 12px;
    }

    .fee-price small {
        font-size: 8px;
    }

    .fee-price strong {
        font-size: 27px;
    }

    .fee-price span,
    .fee-copy p,
    .green-note {
        font-size: 8px;
    }

    .green-note {
        padding: 7px;
    }

    .warning-note {
        gap: 9px;
        margin-top: 11px;
        padding: 10px;
        font-size: 8.5px;
    }

    .warning-note span {
        font-size: 16px;
    }

    .step-three .cta-area {
        width: 100%;
        margin-top: 11px;
    }

    .offer-mail {
        width: 100%;
        padding: 9px 10px;
        border-radius: 14px;
        font-size: 9px;
    }

    .offer-email-link {
        width: 100%;
        justify-content: center;
        padding: 8px 10px;
        font-size: 10px;
    }

    .support-note {
        margin-top: 10px;
        font-size: 9px;
        line-height: 1.55;
    }

    /* Admin mobile */
    .admin-shell {
        padding-top: 22px;
    }

    .admin-card {
        padding: 22px 18px;
    }

    .admin-heading {
        display: block;
    }

    .admin-actions {
        margin-top: 17px;
        flex-wrap: wrap;
    }

    .two-columns {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-section {
        padding: 16px;
    }
}
