:root {
    --blue: #0755b7;
    --blue-dark: #063c82;
    --blue-deep: #082a55;
    --blue-soft: #edf5ff;

    --green: #17b878;
    --green-dark: #0a9460;
    --green-soft: #eafaf3;

    --text: #102a43;
    --muted: #6b7c93;

    --border: #dfe8f2;
    --background: #f8fbff;

    --white: #ffffff;

    --shadow:
        0 20px 60px rgba(20, 65, 110, .12);

    --radius: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family:
        Inter,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Arial,
        sans-serif;

    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

/* HEADER */

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    height: 78px;

    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(10, 60, 110, .08);
}

.nav-container {
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

.brand-mark {
    width: 42px;
    height: 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            var(--blue),
            #1472dc
        );

    box-shadow:
        0 8px 20px rgba(7,85,183,.22);
}

.brand-arrow {
    color: var(--green);
    font-size: 25px;
    font-weight: 900;
}

.brand-text {
    display: flex;
    align-items: baseline;
    gap: 5px;

    letter-spacing: -.5px;
}

.brand-text strong {
    font-size: 22px;
    color: var(--blue);
}

.brand-text span {
    font-size: 22px;
    font-weight: 900;
    color: var(--green);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.main-nav > a {
    font-size: 14px;
    font-weight: 650;

    text-decoration: none;

    color: #324d68;
}

.main-nav > a:hover {
    color: var(--blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.login-link {
    font-weight: 700;
    text-decoration: none;

    color: var(--blue);
}

.nav-signup {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;

    padding: 0 20px;

    border-radius: 10px;

    text-decoration: none;
    font-weight: 750;

    color: var(--white);
    background: var(--blue);
}

.mobile-menu-button,
.mobile-auth {
    display: none;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;

    padding: 75px 0 82px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(23,184,120,.13),
            transparent 25%
        ),
        linear-gradient(
            135deg,
            #f8fbff,
            #eef6ff 55%,
            #f5fffb
        );
}

.hero::before {
    content: "";

    position: absolute;
    width: 500px;
    height: 500px;

    left: -250px;
    bottom: -320px;

    border-radius: 50%;

    background:
        rgba(7,85,183,.06);
}

.hero-grid {
    position: relative;
    z-index: 2;

    display: grid;
    grid-template-columns: 1.04fr .82fr;

    align-items: center;

    gap: 80px;
}

.hero-badge {
    display: inline-flex;

    padding: 7px 13px;

    border-radius: 100px;

    color: var(--green-dark);
    background: var(--green-soft);

    font-size: 13px;
    font-weight: 800;

    letter-spacing: .3px;

    margin-bottom: 22px;
}

.hero h1 {
    margin: 0;

    max-width: 670px;

    font-size: clamp(44px, 5vw, 67px);
    line-height: 1.04;
    letter-spacing: -2.4px;

    color: var(--blue-deep);
}

.hero h1 span {
    display: block;
    color: var(--blue);
}

.hero-description {
    max-width: 620px;

    margin: 25px 0 0;

    color: var(--muted);

    font-size: 18px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    gap: 14px;

    margin-top: 32px;
}

.primary-button,
.secondary-button {
    min-height: 52px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 25px;

    border-radius: 11px;

    font-weight: 780;

    text-decoration: none;
}

.primary-button {
    background: var(--blue);
    color: var(--white);

    box-shadow:
        0 12px 25px rgba(7,85,183,.22);
}

.secondary-button {
    background: var(--white);
    color: var(--blue);

    border: 1px solid var(--border);
}

.hero-trust {
    display: flex;
    gap: 35px;

    margin-top: 40px;
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    color: var(--text);
}

.hero-trust span {
    color: var(--muted);
    font-size: 12px;
}

/* TRANSFER CARD */

.transfer-card {
    padding: 27px;

    border: 1px solid rgba(12, 78, 150, .08);
    border-radius: 24px;

    background: rgba(255,255,255,.98);

    box-shadow: var(--shadow);
}

.transfer-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    margin-bottom: 24px;
}

.transfer-heading h2 {
    margin: 0;

    font-size: 25px;
    letter-spacing: -.6px;
}

.transfer-heading p {
    margin: 4px 0 0;

    color: var(--muted);
    font-size: 13px;
}

.shield-icon {
    width: 40px;
    height: 40px;

    border-radius: 12px;

    display: grid;
    place-items: center;

    background: var(--green-soft);
    color: var(--green);

    font-weight: 900;
}

.field-group label {
    display: block;

    margin-bottom: 8px;

    color: #526980;
    font-size: 13px;
    font-weight: 700;
}

.money-input {
    min-height: 64px;

    display: grid;
    grid-template-columns: 1fr 130px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: var(--white);

    overflow: hidden;
}

.money-input:focus-within {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(7,85,183,.08);
}

.money-input input {
    width: 100%;

    border: 0;
    outline: 0;

    padding: 0 17px;

    font-size: 22px;
    font-weight: 760;

    color: var(--text);

    background: transparent;
}

.money-input select {
    border: 0;
    border-left: 1px solid var(--border);

    outline: 0;

    padding: 0 13px;

    font-weight: 800;

    color: var(--text);

    background: #f8fbfe;
}

.transfer-divider {
    display: grid;
    grid-template-columns: 1fr 36px 1fr;
    align-items: center;

    gap: 8px;

    margin: 13px 0;
}

.transfer-divider > span {
    height: 1px;
    background: #edf1f6;
}

.swap-circle {
    width: 36px;
    height: 36px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue-soft);
    color: var(--blue);

    font-weight: 900;
}

.quote-summary {
    margin-top: 22px;

    padding: 16px;

    border-radius: 13px;

    background: #f7faff;
}

.quote-summary div {
    display: flex;
    justify-content: space-between;

    padding: 6px 0;

    font-size: 13px;
}

.quote-summary span {
    color: var(--muted);
}

.quote-summary strong {
    color: var(--text);
}

.calculator-message {
    display: none;

    margin-top: 13px;

    padding: 10px 12px;

    border-radius: 8px;

    font-size: 13px;

    color: #906000;
    background: #fff8df;
}

.continue-button {
    width: 100%;
    min-height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-top: 16px;

    border-radius: 11px;

    text-decoration: none;
    font-weight: 800;

    color: var(--white);
    background: var(--blue);
}

.secure-note {
    margin-top: 14px;

    text-align: center;

    color: var(--muted);

    font-size: 12px;
}

/* TRUST */

.trust-strip {
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;

    background: var(--white);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-items div {
    position: relative;

    padding: 25px 18px;

    text-align: center;
}

.trust-items div:not(:last-child)::after {
    content: "";

    position: absolute;
    right: 0;
    top: 25%;

    width: 1px;
    height: 50%;

    background: #e6edf5;
}

.trust-items strong,
.trust-items span {
    display: block;
}

.trust-items strong {
    color: var(--blue-deep);
}

.trust-items span {
    color: var(--muted);
    font-size: 12px;
}

/* GENERAL SECTION */

.section {
    padding: 92px 0;
}

.section-heading {
    max-width: 680px;

    margin: 0 auto 46px;

    text-align: center;
}

.eyebrow {
    color: var(--green);

    font-size: 12px;
    font-weight: 900;

    letter-spacing: 1.4px;
}

.section-heading h2,
.why-section h2 {
    margin: 10px 0 12px;

    color: var(--blue-deep);

    font-size: clamp(32px, 4vw, 45px);
    line-height: 1.15;

    letter-spacing: -1.4px;
}

.section-heading p {
    margin: 0;

    color: var(--muted);

    font-size: 16px;
}

/* STEPS */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}

.step-card {
    position: relative;

    padding: 28px;

    border: 1px solid var(--border);
    border-radius: var(--radius);

    background: var(--white);

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}

.step-card:hover {
    transform: translateY(-4px);

    box-shadow:
        0 18px 45px rgba(15,65,110,.09);
}

.step-number {
    position: absolute;

    right: 18px;
    top: 15px;

    color: #dce7f3;

    font-size: 42px;
    font-weight: 900;
}

.step-icon {
    width: 50px;
    height: 50px;

    display: grid;
    place-items: center;

    border-radius: 14px;

    background: var(--blue-soft);

    font-size: 22px;
}

.step-card h3 {
    margin: 20px 0 8px;

    font-size: 18px;
}

.step-card p {
    margin: 0;

    color: var(--muted);

    font-size: 14px;
}

/* COUNTRIES */

.countries-section {
    background: var(--background);
}

.sending-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 18px;
}

.country-card,
.small-country-card {
    display: flex;
    align-items: center;

    gap: 14px;

    border: 1px solid var(--border);
    border-radius: 14px;

    background: var(--white);
}

.country-card {
    padding: 19px;
}

.country-flag {
    font-size: 33px;
}

.country-card strong,
.country-card span,
.small-country-card strong,
.small-country-card span {
    display: block;
}

.country-card span,
.small-country-card span {
    color: var(--muted);
    font-size: 12px;
}

.receive-heading {
    margin: 55px 0 22px;
}

.receive-heading h3 {
    margin: 5px 0 0;

    font-size: 28px;
    color: var(--blue-deep);
}

.receiving-country-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 13px;
}

.small-country-card {
    padding: 15px;
}

.country-flag-small {
    font-size: 25px;
}

/* WHY */

.why-section {
    background:
        linear-gradient(
            135deg,
            #ffffff,
            #f5faff
        );
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;

    align-items: center;

    gap: 90px;
}

.why-section > .container > div:first-child > p {
    max-width: 600px;

    color: var(--muted);
    font-size: 16px;
}

.benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 20px;

    margin-top: 30px;
}

.benefits > div {
    display: flex;
    gap: 13px;
}

.benefit-check {
    flex: 0 0 30px;

    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green);

    font-weight: 900;
}

.benefits strong {
    font-size: 14px;
}

.benefits p {
    margin: 3px 0 0;

    color: var(--muted);
    font-size: 12px;
}

/* PHONE */

.phone-showcase {
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;

    width: 300px;

    padding: 13px;

    border: 8px solid #10233d;
    border-radius: 42px;

    background: #10233d;

    box-shadow:
        0 35px 70px rgba(10,35,70,.22);
}

.phone-top {
    position: absolute;
    z-index: 4;

    width: 95px;
    height: 23px;

    left: 50%;
    top: 5px;

    transform: translateX(-50%);

    border-radius: 0 0 14px 14px;

    background: #10233d;
}

.phone-content {
    min-height: 540px;

    padding: 34px 18px 20px;

    border-radius: 27px;

    background:
        linear-gradient(
            180deg,
            #edf5ff,
            #ffffff
        );
}

.mini-logo {
    font-weight: 900;
    color: var(--blue);
}

.mini-logo span {
    color: var(--green);
}

.phone-content > p {
    margin: 40px 0 0;

    color: var(--muted);

    font-size: 12px;
}

.phone-content > h3 {
    margin: 3px 0 20px;

    font-size: 25px;
}

.mini-transfer-card {
    padding: 18px;

    border-radius: 15px;

    background: var(--white);

    box-shadow:
        0 15px 35px rgba(15,60,100,.08);
}

.mini-transfer-card span,
.mini-transfer-card strong {
    display: block;
}

.mini-transfer-card span {
    color: var(--muted);
    font-size: 10px;
}

.mini-transfer-card strong {
    margin-top: 4px;
}

.mini-line {
    height: 1px;

    margin: 16px 0;

    background: var(--border);
}

.phone-content button {
    width: 100%;

    margin-top: 16px;

    padding: 12px;

    border: 0;
    border-radius: 10px;

    color: white;
    background: var(--blue);

    font-weight: 800;
}

.mini-icons {
    display: flex;
    justify-content: space-around;

    margin-top: 30px;

    color: var(--muted);

    font-size: 11px;
}

/* CTA */

.cta-section {
    padding: 35px 0 85px;
}

.cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 45px 55px;

    border-radius: 25px;

    color: white;

    background:
        linear-gradient(
            120deg,
            var(--blue-dark),
            var(--blue),
            #0879c8
        );

    box-shadow:
        0 25px 65px rgba(7,85,183,.20);
}

.eyebrow.light {
    color: #91e6c3;
}

.cta-box h2 {
    margin: 7px 0;

    font-size: 35px;
}

.cta-box p {
    margin: 0;

    color: rgba(255,255,255,.75);
}

.cta-button {
    flex: 0 0 auto;

    min-height: 50px;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    padding: 0 22px;

    border-radius: 11px;

    text-decoration: none;
    font-weight: 800;

    color: var(--blue);

    background: white;
}

/* FOOTER */

.site-footer {
    padding: 60px 0 20px;

    color: #c9d7e7;
    background: #082748;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(4, 1fr);

    gap: 45px;
}

.footer-brand {
    margin-bottom: 18px;
}

.footer-grid p {
    max-width: 340px;

    color: #91a8c0;
    font-size: 13px;
}

.footer-grid h4 {
    color: white;

    margin: 0 0 15px;
}

.footer-grid > div:not(:first-child) a {
    display: block;

    margin: 9px 0;

    text-decoration: none;

    color: #91a8c0;

    font-size: 13px;
}

.footer-grid a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    margin-top: 45px;

    padding-top: 20px;

    border-top: 1px solid rgba(255,255,255,.1);

    color: #7892ac;

    font-size: 12px;
}

/* RESPONSIVE */

@media (max-width: 1000px) {

    .main-nav {
        gap: 17px;
    }

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }

    .steps-grid,
    .sending-country-grid,
    .receiving-country-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 2fr repeat(2, 1fr);
    }
}

@media (max-width: 780px) {

    .container {
        width: min(100% - 28px, 1180px);
    }

    .site-header {
        height: 68px;
    }

    .mobile-menu-button {
        display: block;

        border: 0;
        background: transparent;

        color: var(--blue);

        font-size: 25px;
    }

    .main-nav {
        position: absolute;

        display: none;

        top: 68px;
        left: 0;
        right: 0;

        padding: 22px 20px;

        flex-direction: column;
        align-items: stretch;

        background: white;

        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);

        box-shadow:
            0 15px 30px rgba(10,40,80,.10);
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav > a {
        padding: 9px 0;
    }

    .nav-actions {
        display: none;
    }

    .mobile-auth {
        display: flex;

        margin-top: 10px;

        gap: 12px;
    }

    .hero {
        padding: 45px 0 55px;
    }

    .hero-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-trust {
        gap: 18px;
        justify-content: space-between;
    }

    .transfer-card {
        padding: 20px;
    }

    .trust-items {
        grid-template-columns: 1fr 1fr;
    }

    .trust-items div:nth-child(2)::after {
        display: none;
    }

    .steps-grid,
    .sending-country-grid,
    .receiving-country-grid,
    .benefits {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 65px 0;
    }

    .phone-frame {
        width: 285px;
    }

    .cta-box {
        flex-direction: column;
        align-items: flex-start;

        padding: 32px;
    }

    .cta-box h2 {
        font-size: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {

    .brand-mark {
        width: 37px;
        height: 37px;
    }

    .brand-text strong,
    .brand-text span {
        font-size: 19px;
    }

    .hero h1 {
        font-size: 38px;
        letter-spacing: -1.5px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .primary-button,
    .secondary-button {
        width: 100%;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .money-input {
        grid-template-columns: 1fr 110px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .trust-items div::after {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid > div:first-child {
        grid-column: auto;
    }

    .footer-bottom {
        flex-direction: column;
    }
}

/* ===========================
   CUSTOMER AUTH
=========================== */

.auth-page {
    min-height: calc(100vh - 78px);
    padding: 70px 20px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(23,184,120,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #edf6ff,
            #f9fcff 55%,
            #effbf6
        );
}

.auth-shell {
    width: min(1100px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 520px;

    gap: 70px;
    align-items: center;
}

.auth-side h1 {
    margin: 10px 0 20px;

    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.07;

    letter-spacing: -2px;
    color: var(--blue-deep);
}

.auth-side h1 span {
    display: block;
    color: var(--blue);
}

.auth-side > p {
    max-width: 520px;
    color: var(--muted);
    font-size: 17px;
}

.auth-benefits {
    margin-top: 32px;

    display: grid;
    gap: 14px;
}

.auth-benefits > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-benefits span {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green);

    font-weight: 900;
}

.auth-card {
    padding: 40px;

    border-radius: 24px;
    border: 1px solid var(--border);

    background: white;

    box-shadow: var(--shadow);
}

.auth-logo {
    margin-bottom: 25px;

    font-size: 23px;
    font-weight: 900;
    color: var(--blue);
}

.auth-logo span {
    color: var(--green);
}

.auth-card h2 {
    margin: 0 0 4px;

    font-size: 30px;
    color: var(--blue-deep);
}

.auth-card label {
    display: block;

    margin: 16px 0 7px;

    font-size: 13px;
    font-weight: 750;

    color: #415a73;
}

.auth-input {
    width: 100%;
    min-height: 50px;

    padding: 0 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    background: white;
}

.auth-input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(7,85,183,.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.auth-options {
    margin: 16px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    font-size: 13px;
}

.auth-options a,
.auth-bottom a {
    color: var(--blue);

    font-weight: 750;
    text-decoration: none;
}

.remember,
.terms-check {
    display: flex !important;
    align-items: center;

    gap: 8px;
}

.terms-check {
    margin: 18px 0 !important;
}

.auth-submit {
    width: 100%;
    min-height: 51px;

    border: 0;
    border-radius: 10px;

    color: white;
    background: var(--blue);

    font-weight: 800;
    cursor: pointer;
}

.auth-bottom {
    margin-top: 24px;

    padding-top: 20px;

    border-top: 1px solid #edf1f5;

    text-align: center;

    color: var(--muted);
    font-size: 13px;
}

.form-error {
    margin: 18px 0;

    padding: 12px 14px;

    border-radius: 9px;

    background: #fff0f0;
    color: #b42318;

    font-size: 13px;
}

/* ===========================
   CUSTOMER DASHBOARD
=========================== */

.customer-page {
    min-height: calc(100vh - 78px);

    padding: 35px 0 75px;

    background: #f5f8fc;
}

.customer-layout {
    display: grid;
    grid-template-columns: 235px 1fr;

    gap: 28px;
}

.customer-sidebar {
    align-self: start;

    padding: 20px;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 8px 30px rgba(15,55,100,.06);
}

.customer-profile {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.customer-avatar {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--blue);
    color: white;

    font-weight: 900;
}

.customer-profile strong,
.customer-profile span {
    display: block;
}

.customer-profile strong {
    font-size: 13px;
}

.customer-profile span {
    max-width: 130px;

    overflow: hidden;
    text-overflow: ellipsis;

    color: var(--muted);
    font-size: 10px;
}

.customer-nav {
    display: grid;

    gap: 5px;

    margin: 20px 0;
}

.customer-nav a {
    padding: 11px 12px;

    border-radius: 9px;

    text-decoration: none;

    color: #536b83;

    font-size: 13px;
    font-weight: 650;
}

.customer-nav a:hover,
.customer-nav a.active {
    background: var(--blue-soft);
    color: var(--blue);
}

.customer-logout {
    width: 100%;

    padding: 10px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: white;
    color: #536b83;

    cursor: pointer;
}

.customer-main {
    min-width: 0;
}

.customer-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    margin-bottom: 23px;
}

.customer-welcome h1 {
    margin: 3px 0;

    font-size: 35px;
    color: var(--blue-deep);
}

.customer-welcome p {
    margin: 0;

    color: var(--muted);
}

.verification-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 22px;

    padding: 18px 20px;

    border: 1px solid #c8eadc;
    border-radius: 13px;

    background: var(--green-soft);
}

.verification-banner strong,
.verification-banner span {
    display: block;
}

.verification-banner span {
    margin-top: 2px;

    color: #557a69;

    font-size: 12px;
}

.verification-banner a {
    flex: 0 0 auto;

    padding: 9px 14px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 750;

    color: white;
    background: var(--green);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 22px;
}

.dashboard-stat,
.dashboard-card {
    border-radius: 15px;

    background: white;

    box-shadow:
        0 7px 25px rgba(15,55,100,.05);
}

.dashboard-stat {
    padding: 19px;
}

.dashboard-stat span {
    display: block;

    color: var(--muted);

    font-size: 12px;
}

.dashboard-stat strong {
    display: block;

    margin-top: 6px;

    font-size: 28px;
    color: var(--blue-deep);
}

.dashboard-stat .small-value {
    font-size: 14px;
    color: var(--green-dark);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 20px;

    margin-bottom: 20px;
}

.dashboard-card {
    padding: 23px;
}

.dashboard-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 20px;
}

.dashboard-card-head h2 {
    margin: 0;

    font-size: 20px;
    color: var(--blue-deep);
}

.dashboard-card-head p {
    margin: 3px 0 0;

    color: var(--muted);

    font-size: 12px;
}

.dashboard-card-head > a {
    color: var(--blue);

    text-decoration: none;
    font-weight: 750;
    font-size: 13px;
}

.dashboard-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--blue-soft);
    color: var(--blue);

    font-weight: 900;
}

.send-card label {
    display: block;

    margin: 13px 0 6px;

    color: #61758a;

    font-size: 12px;
    font-weight: 700;
}

.dashboard-money-row {
    display: grid;
    grid-template-columns: 1fr 125px;

    min-height: 52px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-money-row input,
.dashboard-money-row select,
.dashboard-country-select {
    border: 0;
    outline: 0;

    background: white;
}

.dashboard-money-row input {
    padding: 0 14px;

    font-size: 19px;
    font-weight: 750;
}

.dashboard-money-row select {
    padding: 0 10px;

    border-left: 1px solid var(--border);

    background: #f8fbff;
}

.dashboard-country-select {
    width: 100%;
    min-height: 50px;

    padding: 0 12px;

    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-send-button {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 17px;

    padding: 12px;

    border-radius: 9px;

    text-decoration: none;
    font-weight: 800;

    color: white;
    background: var(--blue);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.quick-actions a {
    min-height: 88px;

    padding: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 11px;

    text-decoration: none;

    color: #415b75;

    font-size: 12px;
    font-weight: 700;
}

.quick-actions a:hover {
    border-color: #bed5ef;

    background: var(--blue-soft);

    color: var(--blue);
}

.quick-actions span {
    color: var(--blue);

    font-size: 20px;
    font-weight: 900;
}

.dashboard-table-wrap {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 13px 10px;

    border-bottom: 1px solid #edf1f5;

    text-align: left;
    white-space: nowrap;

    font-size: 12px;
}

.dashboard-table th {
    color: var(--muted);
}

.transfer-status {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 100px;

    background: var(--blue-soft);
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;
}

.no-transfers {
    padding: 40px !important;

    text-align: center !important;
}

.no-transfers strong,
.no-transfers span {
    display: block;
}

.no-transfers span {
    margin-top: 4px;

    color: var(--muted);
}

@media(max-width: 900px) {

    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .auth-side {
        display: none;
    }

    .customer-layout {
        grid-template-columns: 1fr;
    }

    .customer-sidebar {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 520px) {

    .auth-page {
        padding: 35px 14px;
    }

    .auth-card {
        padding: 27px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .customer-welcome {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   CUSTOMER AUTH
=========================== */

.auth-page {
    min-height: calc(100vh - 78px);
    padding: 70px 20px;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 15% 30%,
            rgba(23,184,120,.13),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #edf6ff,
            #f9fcff 55%,
            #effbf6
        );
}

.auth-shell {
    width: min(1100px, 100%);
    margin: auto;

    display: grid;
    grid-template-columns: 1fr 520px;

    gap: 70px;
    align-items: center;
}

.auth-side h1 {
    margin: 10px 0 20px;

    font-size: clamp(42px, 5vw, 62px);
    line-height: 1.07;

    letter-spacing: -2px;
    color: var(--blue-deep);
}

.auth-side h1 span {
    display: block;
    color: var(--blue);
}

.auth-side > p {
    max-width: 520px;
    color: var(--muted);
    font-size: 17px;
}

.auth-benefits {
    margin-top: 32px;

    display: grid;
    gap: 14px;
}

.auth-benefits > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.auth-benefits span {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--green-soft);
    color: var(--green);

    font-weight: 900;
}

.auth-card {
    padding: 40px;

    border-radius: 24px;
    border: 1px solid var(--border);

    background: white;

    box-shadow: var(--shadow);
}

.auth-logo {
    margin-bottom: 25px;

    font-size: 23px;
    font-weight: 900;
    color: var(--blue);
}

.auth-logo span {
    color: var(--green);
}

.auth-card h2 {
    margin: 0 0 4px;

    font-size: 30px;
    color: var(--blue-deep);
}

.auth-card label {
    display: block;

    margin: 16px 0 7px;

    font-size: 13px;
    font-weight: 750;

    color: #415a73;
}

.auth-input {
    width: 100%;
    min-height: 50px;

    padding: 0 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;

    background: white;
}

.auth-input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(7,85,183,.08);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.auth-options {
    margin: 16px 0;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 15px;

    font-size: 13px;
}

.auth-options a,
.auth-bottom a {
    color: var(--blue);

    font-weight: 750;
    text-decoration: none;
}

.remember,
.terms-check {
    display: flex !important;
    align-items: center;

    gap: 8px;
}

.terms-check {
    margin: 18px 0 !important;
}

.auth-submit {
    width: 100%;
    min-height: 51px;

    border: 0;
    border-radius: 10px;

    color: white;
    background: var(--blue);

    font-weight: 800;
    cursor: pointer;
}

.auth-bottom {
    margin-top: 24px;

    padding-top: 20px;

    border-top: 1px solid #edf1f5;

    text-align: center;

    color: var(--muted);
    font-size: 13px;
}

.form-error {
    margin: 18px 0;

    padding: 12px 14px;

    border-radius: 9px;

    background: #fff0f0;
    color: #b42318;

    font-size: 13px;
}

/* ===========================
   CUSTOMER DASHBOARD
=========================== */

.customer-page {
    min-height: calc(100vh - 78px);

    padding: 35px 0 75px;

    background: #f5f8fc;
}

.customer-layout {
    display: grid;
    grid-template-columns: 235px 1fr;

    gap: 28px;
}

.customer-sidebar {
    align-self: start;

    padding: 20px;

    border-radius: 18px;

    background: white;

    box-shadow:
        0 8px 30px rgba(15,55,100,.06);
}

.customer-profile {
    display: flex;
    align-items: center;

    gap: 12px;

    padding-bottom: 20px;

    border-bottom: 1px solid var(--border);
}

.customer-avatar {
    flex: 0 0 45px;

    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background: var(--blue);
    color: white;

    font-weight: 900;
}

.customer-profile strong,
.customer-profile span {
    display: block;
}

.customer-profile strong {
    font-size: 13px;
}

.customer-profile span {
    max-width: 130px;

    overflow: hidden;
    text-overflow: ellipsis;

    color: var(--muted);
    font-size: 10px;
}

.customer-nav {
    display: grid;

    gap: 5px;

    margin: 20px 0;
}

.customer-nav a {
    padding: 11px 12px;

    border-radius: 9px;

    text-decoration: none;

    color: #536b83;

    font-size: 13px;
    font-weight: 650;
}

.customer-nav a:hover,
.customer-nav a.active {
    background: var(--blue-soft);
    color: var(--blue);
}

.customer-logout {
    width: 100%;

    padding: 10px;

    border: 1px solid var(--border);
    border-radius: 9px;

    background: white;
    color: #536b83;

    cursor: pointer;
}

.customer-main {
    min-width: 0;
}

.customer-welcome {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    margin-bottom: 23px;
}

.customer-welcome h1 {
    margin: 3px 0;

    font-size: 35px;
    color: var(--blue-deep);
}

.customer-welcome p {
    margin: 0;

    color: var(--muted);
}

.verification-banner {
    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 20px;

    margin-bottom: 22px;

    padding: 18px 20px;

    border: 1px solid #c8eadc;
    border-radius: 13px;

    background: var(--green-soft);
}

.verification-banner strong,
.verification-banner span {
    display: block;
}

.verification-banner span {
    margin-top: 2px;

    color: #557a69;

    font-size: 12px;
}

.verification-banner a {
    flex: 0 0 auto;

    padding: 9px 14px;

    border-radius: 8px;

    text-decoration: none;
    font-weight: 750;

    color: white;
    background: var(--green);
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 16px;

    margin-bottom: 22px;
}

.dashboard-stat,
.dashboard-card {
    border-radius: 15px;

    background: white;

    box-shadow:
        0 7px 25px rgba(15,55,100,.05);
}

.dashboard-stat {
    padding: 19px;
}

.dashboard-stat span {
    display: block;

    color: var(--muted);

    font-size: 12px;
}

.dashboard-stat strong {
    display: block;

    margin-top: 6px;

    font-size: 28px;
    color: var(--blue-deep);
}

.dashboard-stat .small-value {
    font-size: 14px;
    color: var(--green-dark);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;

    gap: 20px;

    margin-bottom: 20px;
}

.dashboard-card {
    padding: 23px;
}

.dashboard-card-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    margin-bottom: 20px;
}

.dashboard-card-head h2 {
    margin: 0;

    font-size: 20px;
    color: var(--blue-deep);
}

.dashboard-card-head p {
    margin: 3px 0 0;

    color: var(--muted);

    font-size: 12px;
}

.dashboard-card-head > a {
    color: var(--blue);

    text-decoration: none;
    font-weight: 750;
    font-size: 13px;
}

.dashboard-icon {
    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border-radius: 10px;

    background: var(--blue-soft);
    color: var(--blue);

    font-weight: 900;
}

.send-card label {
    display: block;

    margin: 13px 0 6px;

    color: #61758a;

    font-size: 12px;
    font-weight: 700;
}

.dashboard-money-row {
    display: grid;
    grid-template-columns: 1fr 125px;

    min-height: 52px;

    overflow: hidden;

    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-money-row input,
.dashboard-money-row select,
.dashboard-country-select {
    border: 0;
    outline: 0;

    background: white;
}

.dashboard-money-row input {
    padding: 0 14px;

    font-size: 19px;
    font-weight: 750;
}

.dashboard-money-row select {
    padding: 0 10px;

    border-left: 1px solid var(--border);

    background: #f8fbff;
}

.dashboard-country-select {
    width: 100%;
    min-height: 50px;

    padding: 0 12px;

    border: 1px solid var(--border);
    border-radius: 10px;
}

.dashboard-send-button {
    width: 100%;

    display: flex;
    justify-content: center;

    margin-top: 17px;

    padding: 12px;

    border-radius: 9px;

    text-decoration: none;
    font-weight: 800;

    color: white;
    background: var(--blue);
}

.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 10px;
}

.quick-actions a {
    min-height: 88px;

    padding: 14px;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 5px;

    border: 1px solid var(--border);
    border-radius: 11px;

    text-decoration: none;

    color: #415b75;

    font-size: 12px;
    font-weight: 700;
}

.quick-actions a:hover {
    border-color: #bed5ef;

    background: var(--blue-soft);

    color: var(--blue);
}

.quick-actions span {
    color: var(--blue);

    font-size: 20px;
    font-weight: 900;
}

.dashboard-table-wrap {
    overflow-x: auto;
}

.dashboard-table {
    width: 100%;
    border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
    padding: 13px 10px;

    border-bottom: 1px solid #edf1f5;

    text-align: left;
    white-space: nowrap;

    font-size: 12px;
}

.dashboard-table th {
    color: var(--muted);
}

.transfer-status {
    display: inline-flex;

    padding: 5px 8px;

    border-radius: 100px;

    background: var(--blue-soft);
    color: var(--blue);

    font-size: 10px;
    font-weight: 800;
}

.no-transfers {
    padding: 40px !important;

    text-align: center !important;
}

.no-transfers strong,
.no-transfers span {
    display: block;
}

.no-transfers span {
    margin-top: 4px;

    color: var(--muted);
}

@media(max-width: 900px) {

    .auth-shell {
        grid-template-columns: 1fr;
        max-width: 600px;
    }

    .auth-side {
        display: none;
    }

    .customer-layout {
        grid-template-columns: 1fr;
    }

    .customer-sidebar {
        display: none;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 520px) {

    .auth-page {
        padding: 35px 14px;
    }

    .auth-card {
        padding: 27px 20px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .customer-welcome {
        align-items: flex-start;
        flex-direction: column;
    }

    .dashboard-stats {
        grid-template-columns: 1fr 1fr;
    }

    .quick-actions {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   SEND MONEY FLOW
=========================== */

.flow-page {
    min-height: calc(100vh - 78px);
    padding: 55px 0 85px;
    background: #f5f8fc;
}

.flow-container {
    width: min(720px, calc(100% - 30px));
    margin: auto;
}

.flow-container.wide {
    width: min(1080px, calc(100% - 30px));
}

.flow-progress {
    max-width: 520px;
    margin: 0 auto 32px;

    display: grid;
    grid-template-columns: 35px 1fr 35px 1fr 35px 1fr 35px;
    align-items: center;
}

.flow-progress span {
    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: #dce5ef;
    color: #6d8093;

    font-size: 12px;
    font-weight: 900;
}

.flow-progress span.active {
    background: var(--blue);
    color: white;
}

.flow-progress span.done {
    background: var(--green);
    color: white;
}

.flow-progress i {
    height: 3px;
    background: #dce5ef;
}

.flow-progress i.done-line {
    background: var(--green);
}

.flow-heading {
    margin-bottom: 28px;
    text-align: center;
}

.flow-heading.left {
    text-align: left;
}

.flow-heading h1 {
    margin: 6px 0 7px;

    color: var(--blue-deep);

    font-size: clamp(31px, 5vw, 43px);
    line-height: 1.15;

    letter-spacing: -1.4px;
}

.flow-heading p {
    margin: 0;
    color: var(--muted);
}

.flow-card,
.success-card {
    padding: 30px;

    border: 1px solid var(--border);
    border-radius: 20px;

    background: white;

    box-shadow:
        0 15px 45px rgba(15,55,100,.07);
}

.flow-card h2,
.flow-card h3 {
    color: var(--blue-deep);
}

.flow-card label {
    display: block;

    margin: 16px 0 7px;

    color: #536b83;

    font-size: 13px;
    font-weight: 750;
}

.flow-input {
    width: 100%;
    min-height: 50px;

    padding: 0 13px;

    border: 1px solid var(--border);
    border-radius: 10px;

    outline: none;
    background: white;
}

.flow-input:focus {
    border-color: var(--blue);

    box-shadow:
        0 0 0 3px rgba(7,85,183,.08);
}

.amount-field {
    min-height: 64px;

    display: grid;
    grid-template-columns: 1fr auto;

    align-items: center;

    border: 1px solid var(--border);
    border-radius: 11px;

    overflow: hidden;
}

.amount-field input {
    border: 0;
    outline: 0;

    padding: 0 16px;

    font-size: 24px;
    font-weight: 800;
}

.amount-field span {
    padding: 0 16px;
    color: var(--muted);
}

.flow-primary,
.flow-secondary {
    min-height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    width: 100%;

    margin-top: 22px;

    padding: 0 20px;

    border-radius: 10px;

    text-decoration: none;
    font-weight: 800;

    cursor: pointer;
}

.flow-primary {
    border: 0;
    color: white;
    background: var(--blue);
}

.flow-secondary {
    border: 1px solid var(--border);
    color: var(--blue);
    background: white;
}

.link-button {
    box-sizing: border-box;
}

.flow-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 22px;
}

.recipient-card {
    display: flex;
    gap: 12px;

    padding: 15px 0;

    border-bottom: 1px solid var(--border);
}

.recipient-avatar {
    flex: 0 0 44px;

    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    border-radius: 12px;

    color: white;
    background: var(--blue);

    font-weight: 900;
}

.recipient-info {
    flex: 1;
}

.recipient-info > strong,
.recipient-info > span {
    display: block;
}

.recipient-info > span {
    color: var(--muted);
    font-size: 12px;
}

.recipient-account {
    margin-top: 8px;

    padding: 9px 10px;

    display: flex;
    justify-content: space-between;

    border-radius: 8px;

    text-decoration: none;

    color: var(--blue);
    background: var(--blue-soft);

    font-size: 12px;
    font-weight: 700;
}

.empty-state {
    padding: 30px 10px;

    color: var(--muted);
    text-align: center;
}

.quote-box {
    display: grid;
    grid-template-columns: repeat(3,1fr);

    gap: 12px;

    margin-bottom: 25px;
}

.quote-box > div {
    padding: 14px;

    border-radius: 11px;

    background: var(--blue-soft);
}

.quote-box span,
.quote-box strong {
    display: block;
}

.quote-box span {
    color: var(--muted);
    font-size: 11px;
}

.quote-box strong {
    margin-top: 4px;
}

.choice-card {
    margin: 10px 0 !important;

    display: flex !important;
    align-items: center;

    gap: 12px;

    padding: 14px;

    border: 1px solid var(--border);
    border-radius: 10px;

    cursor: pointer;
}

.choice-card:has(input:checked) {
    border-color: var(--blue);
    background: var(--blue-soft);
}

.choice-card div {
    flex: 1;
}

.choice-card strong,
.choice-card span {
    display: block;
}

.choice-card span {
    color: var(--muted);
    font-size: 11px;
}

.review-row {
    display: flex;
    justify-content: space-between;

    gap: 20px;

    padding: 13px 0;

    border-bottom: 1px solid #edf1f5;
}

.review-row span {
    color: var(--muted);
}

.review-row.highlight {
    padding: 17px;

    margin: 12px 0;

    border: 0;
    border-radius: 10px;

    background: var(--green-soft);
}

.review-row.highlight strong {
    color: var(--green-dark);
}

.review-divider {
    height: 1px;
    margin: 18px 0;
    background: var(--border);
}

.success-card {
    text-align: center;
}

.success-icon {
    width: 72px;
    height: 72px;

    margin: 0 auto 18px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--green);

    font-size: 34px;
    font-weight: 900;
}

.success-card h1 {
    margin: 7px 0;
    color: var(--blue-deep);
}

.success-summary {
    margin: 25px 0;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;

    text-align: left;
}

.success-summary > div {
    padding: 14px;

    border-radius: 10px;

    background: #f6f9fc;
}

.success-summary span,
.success-summary strong {
    display: block;
}

.success-summary span {
    color: var(--muted);
    font-size: 11px;
}

.success-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 12px;
}

.tracking-status {
    padding: 20px;

    border-radius: 12px;

    background: var(--blue-soft);

    text-align: center;
}

.tracking-status span,
.tracking-status strong {
    display: block;
}

.tracking-status span {
    color: var(--muted);
    font-size: 12px;
}

.tracking-status strong {
    margin-top: 4px;
    color: var(--blue);
}

.tracking-timeline {
    margin: 28px 0;
}

.tracking-item {
    position: relative;

    display: flex;
    gap: 14px;

    padding-bottom: 28px;
}

.tracking-item:not(:last-child)::before {
    content: "";

    position: absolute;

    left: 16px;
    top: 34px;

    width: 2px;
    height: calc(100% - 18px);

    background: #dbe7f2;
}

.tracking-dot {
    position: relative;
    z-index: 2;

    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    color: white;
    background: var(--green);

    font-size: 12px;
    font-weight: 900;
}

.tracking-item strong,
.tracking-item span,
.tracking-item small {
    display: block;
}

.tracking-item span {
    margin-top: 3px;

    color: var(--muted);
    font-size: 12px;
}

.tracking-item small {
    margin-top: 3px;

    color: #9aaabc;
}

.table-responsive {
    overflow-x: auto;
}

.transfer-table {
    width: 100%;
    border-collapse: collapse;
}

.transfer-table th,
.transfer-table td {
    padding: 13px;

    border-bottom: 1px solid var(--border);

    text-align: left;
    white-space: nowrap;

    font-size: 12px;
}

.transfer-table th {
    color: var(--muted);
}

.transfer-table a {
    color: var(--blue);
    font-weight: 750;
    text-decoration: none;
}

@media(max-width: 820px) {

    .flow-two-column {
        grid-template-columns: 1fr;
    }

    .quote-box {
        grid-template-columns: 1fr;
    }
}

@media(max-width: 520px) {

    .flow-card,
    .success-card {
        padding: 22px 18px;
    }

    .flow-progress {
        grid-template-columns: 30px 1fr 30px 1fr 30px 1fr 30px;
    }

    .flow-progress span {
        width: 30px;
        height: 30px;
    }

    .success-summary,
    .success-actions {
        grid-template-columns: 1fr;
    }

    .review-row {
        flex-direction: column;
        gap: 4px;
    }
}

/* PHASE 2D */

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

.recipient-box {
    padding: 20px;

    border: 1px solid var(--border);
    border-radius: 15px;

    background: white;

    box-shadow:
        0 8px 25px rgba(15,55,100,.05);
}

.recipient-box-info {
    margin: 14px 0;
}

.recipient-box-info strong,
.recipient-box-info span {
    display: block;
}

.recipient-box-info strong {
    color: var(--blue-deep);
}

.recipient-box-info span {
    margin-top: 3px;
    color: var(--muted);
    font-size: 12px;
}

.recipient-remove {
    padding: 7px 11px;

    border: 1px solid #f0cccc;
    border-radius: 8px;

    background: white;
    color: #b42318;

    cursor: pointer;
}

.kyc-status-box {
    margin-bottom: 18px;
    padding: 15px 18px;

    display: flex;
    justify-content: space-between;

    border-radius: 11px;

    background: var(--green-soft);
}

.kyc-status-box span {
    color: #557a69;
}

.kyc-status-box strong {
    color: var(--green-dark);
}

.notification-item {
    display: flex;
    gap: 14px;

    padding: 17px 0;

    border-bottom: 1px solid var(--border);
}

.notification-icon {
    flex: 0 0 34px;

    width: 34px;
    height: 34px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--blue-soft);
    color: var(--blue);
}

.notification-item strong,
.notification-item span,
.notification-item small {
    display: block;
}

.notification-item span {
    margin-top: 3px;

    color: var(--muted);
    font-size: 12px;
}

.notification-item small {
    margin-top: 4px;

    color: #9aaabc;
}

@media(max-width: 900px) {
    .recipient-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 560px) {
    .recipient-grid {
        grid-template-columns: 1fr;
    }
}
