﻿:root {
    --bg: #f6faf9;
    --bg-2: #eef5f4;
    --panel: #ffffff;
    --panel-soft: rgba(255, 255, 255, 0.82);
    --ink: #0e1b2a;
    --muted: #5c6b76;
    --line: #dce7e8;
    --navy: #18345f;
    --navy-2: #102642;
    --teal: #0f766e;
    --teal-2: #0b5c55;
    --green: #6aa77a;
    --amber: #b7791f;
    --soft-teal: #e7f4f1;
    --soft-blue: #eef3ff;
    --soft-green: #eef8f0;
    --soft-amber: #fff7e8;
    --shadow: 0 24px 80px rgba(14, 27, 42, 0.10);
    --shadow-soft: 0 16px 48px rgba(14, 27, 42, 0.075);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --radius-md: 18px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: radial-gradient(circle at 10% 3%, rgba(15, 118, 110, 0.15), transparent 30%), radial-gradient(circle at 92% 2%, rgba(24, 52, 95, 0.14), transparent 28%), linear-gradient(180deg, #f7fbfa 0%, #f5faf9 48%, #eef5f4 100%);
    color: var(--ink);
}

a {
    color: inherit;
}

.page-shell {
    width: min(1160px, calc(100% - 40px));
    margin: 0 auto;
    padding: 34px 0 32px;
}

.topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: var(--ink);
    min-width: 0;
}

.brand-mark {
    width: 172px;
    height: auto;
    display: block;
    flex: 0 0 auto;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

    .brand-copy strong {
        font-weight: 900;
        letter-spacing: -0.045em;
        font-size: 1.08rem;
        line-height: 1.05;
        color: var(--ink);
    }

    .brand-copy span {
        display: block;
        color: var(--muted);
        font-size: 0.74rem;
        font-weight: 700;
        letter-spacing: 0;
        margin-top: 3px;
        line-height: 1.25;
    }

nav {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

    nav > a {
        display: inline-flex;
        align-items: center;
        height: 44px;
        color: var(--muted);
        text-decoration: none;
        font-weight: 800;
        font-size: 0.94rem;
        line-height: 1;
    }

        nav > a:hover {
            color: var(--teal-2);
        }


.lang-switch {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 48px;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 8px 22px rgba(15, 31, 29, 0.05);
    vertical-align: middle;
}

    .lang-switch a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 42px;
        height: 40px;
        padding: 0;
        border-radius: 999px;
        color: var(--muted);
        font-size: 0.82rem;
        font-weight: 900;
        line-height: 1;
        text-decoration: none;
    }

        .lang-switch a.active {
            background: var(--teal);
            color: #fff;
        }

        .lang-switch a:not(.active):hover {
            color: var(--teal-2);
            background: var(--soft-teal);
        }

.hero {
    min-height: 570px;
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 42px;
    align-items: center;
    padding: 54px 0 40px;
}

.eyebrow {
    color: var(--teal);
    font-size: 0.79rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

h1 {
    margin: 0;
    font-size: clamp(2.2rem, 4.96vw, 4.6rem);
    line-height: 0.96;
    letter-spacing: -0.075em;
    color: var(--ink);
}

.lead {
    max-width: 740px;
    margin: 26px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.75vw, 1.24rem);
    line-height: 1.67;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid var(--line);
    transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

    .button:hover {
        transform: translateY(-2px);
    }

    .button.primary {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
    }

        .button.primary:hover {
            background: var(--navy-2);
        }

    .button.secondary {
        background: rgba(255, 255, 255, 0.78);
        color: var(--ink);
    }

        .button.secondary:hover {
            border-color: rgba(15, 118, 110, 0.35);
        }

    .button.ghost {
        background: transparent;
        color: var(--teal-2);
        border-color: transparent;
        padding-left: 4px;
        padding-right: 4px;
    }

.visual-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 24px;
    position: relative;
    overflow: hidden;
}

    .visual-panel::before {
        content: "";
        position: absolute;
        inset: auto -90px -120px auto;
        width: 260px;
        height: 260px;
        background: radial-gradient(circle, rgba(15, 118, 110, 0.16), transparent 62%);
        pointer-events: none;
    }

.dashboard-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 18px;
}

.dashboard-title {
    font-weight: 900;
    letter-spacing: -0.04em;
    font-size: 1.18rem;
}

.dashboard-subtitle {
    color: var(--muted);
    margin-top: 4px;
    line-height: 1.45;
    font-size: 0.92rem;
}

.status-pill {
    background: var(--soft-green);
    color: #236238;
    border: 1px solid rgba(106, 167, 122, 0.28);
    border-radius: 999px;
    padding: 8px 11px;
    font-size: 0.78rem;
    font-weight: 900;
    white-space: nowrap;
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 14px;
}

.mini-card {
    background: rgba(246, 250, 249, 0.94);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 18px;
    min-height: 150px;
}

    .mini-card h3 {
        margin: 0 0 8px;
        font-size: 0.95rem;
        letter-spacing: -0.02em;
    }

.score {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 10px;
}

    .score strong {
        font-size: 3rem;
        line-height: 1;
        letter-spacing: -0.07em;
        color: var(--navy);
    }

    .score span {
        color: var(--muted);
        font-weight: 800;
    }

.bar-stack {
    display: grid;
    gap: 9px;
    margin-top: 12px;
}

.bar {
    height: 8px;
    background: #e7eef0;
    border-radius: 99px;
    overflow: hidden;
}

    .bar i {
        display: block;
        height: 100%;
        border-radius: 99px;
        background: linear-gradient(90deg, var(--teal), var(--navy));
    }

.axis-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
}

.axis-chip {
    border: 1px solid rgba(24, 52, 95, 0.12);
    background: #fff;
    border-radius: 13px;
    padding: 8px 9px;
    color: var(--muted);
    font-size: 0.79rem;
    font-weight: 800;
}

.spider-wrap {
    display: grid;
    place-items: center;
    min-height: 176px;
}

.timeline-card {
    grid-column: 1 / -1;
    background: var(--navy-2);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.12);
}

    .timeline-card h3 {
        color: #fff;
    }

.roadmap-mini {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
}

.road-item {
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 14px;
    padding: 11px;
    min-height: 72px;
}

    .road-item small {
        color: rgba(255, 255, 255, 0.62);
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .road-item strong {
        display: block;
        margin-top: 6px;
        font-size: 0.88rem;
        line-height: 1.28;
    }

section {
    margin-top: 34px;
}

.section-title {
    text-align: center;
    margin-bottom: 22px;
}

    .section-title h2 {
        margin: 0;
        font-size: clamp(1.85rem, 4vw, 3rem);
        letter-spacing: -0.065em;
        line-height: 1.02;
    }

    .section-title p {
        max-width: 780px;
        margin: 14px auto 0;
        color: var(--muted);
        line-height: 1.67;
        font-size: 1.04rem;
    }

.principles {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.principle-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

    .principle-card .label {
        color: var(--teal);
        font-size: 0.76rem;
        font-weight: 900;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .principle-card h3 {
        margin: 13px 0 10px;
        font-size: 1.2rem;
        letter-spacing: -0.035em;
    }

    .principle-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.62;
    }

.value-flow {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 26px;
    box-shadow: var(--shadow-soft);
    margin-top: 16px;
}

.flow-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
    align-items: stretch;
}

.flow-node {
    background: linear-gradient(180deg, #ffffff, #f7fbfa);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 16px;
    min-height: 112px;
    position: relative;
}

    .flow-node:not(:last-child)::after {
        content: "";
        position: absolute;
        top: 50%;
        right: -13px;
        width: 14px;
        height: 2px;
        background: rgba(15, 118, 110, 0.34);
    }

    .flow-node small {
        color: var(--teal);
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .flow-node strong {
        display: block;
        margin-top: 8px;
        font-size: 1rem;
        line-height: 1.28;
        letter-spacing: -0.02em;
    }

.steps {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.step {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    min-height: 238px;
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
}

    .step::before {
        content: "";
        position: absolute;
        inset: 0 0 auto;
        height: 4px;
        background: linear-gradient(90deg, var(--teal), var(--navy));
    }

.step-num {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--navy);
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}

.step h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.57;
    font-size: 0.94rem;
}

.model-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 18px;
    align-items: stretch;
}

.model-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.metric {
    background: var(--soft-blue);
    border: 1px solid rgba(24, 52, 95, 0.12);
    border-radius: 20px;
    padding: 18px;
}

    .metric strong {
        display: block;
        color: var(--navy);
        font-size: 2rem;
        line-height: 1;
        letter-spacing: -0.055em;
    }

    .metric span {
        display: block;
        color: var(--muted);
        margin-top: 8px;
        line-height: 1.35;
        font-size: 0.9rem;
        font-weight: 750;
    }

.maturity-scale {
    margin-top: 20px;
    display: grid;
    gap: 10px;
}

.scale-row {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 10px;
    align-items: center;
}

.scale-level {
    font-weight: 900;
    color: var(--navy);
}

.scale-track {
    height: 12px;
    background: #e5edf0;
    border-radius: 999px;
    overflow: hidden;
}

    .scale-track i {
        display: block;
        height: 100%;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--green), var(--teal), var(--navy));
    }

.output-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.output-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-soft);
    min-height: 230px;
}

    .output-card h3 {
        margin: 0 0 10px;
        font-size: 1.08rem;
        letter-spacing: -0.03em;
    }

    .output-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.6;
        font-size: 0.94rem;
    }

.report-stack {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 18px;
}

.report {
    background: linear-gradient(180deg, #ffffff, #f8fbfb);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 18px;
    min-height: 170px;
}

    .report h4 {
        margin: 0 0 12px;
        font-size: 0.98rem;
        letter-spacing: -0.02em;
    }

.fake-lines {
    display: grid;
    gap: 8px;
}

    .fake-lines i {
        display: block;
        height: 8px;
        border-radius: 99px;
        background: #e2ecee;
    }

        .fake-lines i:nth-child(1) {
            width: 92%;
        }

        .fake-lines i:nth-child(2) {
            width: 72%;
        }

        .fake-lines i:nth-child(3) {
            width: 84%;
        }

        .fake-lines i:nth-child(4) {
            width: 56%;
        }

.lab-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.lab-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 22px;
    box-shadow: var(--shadow-soft);
    min-height: 230px;
}

    .lab-card .lab-tag {
        display: inline-flex;
        color: var(--teal-2);
        background: var(--soft-teal);
        border: 1px solid rgba(15, 118, 110, 0.14);
        border-radius: 999px;
        padding: 7px 10px;
        font-weight: 900;
        font-size: 0.76rem;
        margin-bottom: 14px;
    }

    .lab-card h3 {
        margin: 0 0 10px;
        font-size: 1.05rem;
        line-height: 1.25;
        letter-spacing: -0.03em;
    }

    .lab-card p {
        margin: 0;
        color: var(--muted);
        line-height: 1.58;
        font-size: 0.94rem;
    }

.investment {
    background: linear-gradient(135deg, var(--navy-2), var(--teal-2));
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 34px;
    box-shadow: var(--shadow);
}

    .investment .section-title {
        margin-bottom: 22px;
    }

        .investment .section-title h2,
        .investment .section-title p {
            color: #fff;
        }

        .investment .section-title p {
            color: rgba(255, 255, 255, 0.75);
        }

.investment-flow {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 10px;
}

.investment-node {
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    border-radius: 18px;
    padding: 16px;
    min-height: 118px;
}

    .investment-node small {
        color: rgba(255, 255, 255, 0.62);
        font-weight: 900;
        letter-spacing: 0.1em;
        text-transform: uppercase;
    }

    .investment-node strong {
        display: block;
        margin-top: 8px;
        color: #fff;
        line-height: 1.25;
        font-size: 0.98rem;
    }

.notice {
    background: var(--soft-amber);
    border: 1px solid rgba(183, 121, 31, 0.28);
    border-radius: 26px;
    padding: 24px;
    color: #74480d;
    line-height: 1.62;
    margin-top: 30px;
}

    .notice strong {
        display: block;
        margin-bottom: 6px;
        color: #74480d;
        font-size: 1.05rem;
    }

footer {
    margin-top: 30px;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.6;
}

    footer a {
        color: var(--navy);
        text-decoration: none;
        font-weight: 900;
    }

@media (max-width: 1080px) {
    .hero,
    .model-grid {
        grid-template-columns: 1fr;
    }

    .steps,
    .flow-row,
    .investment-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .flow-node:not(:last-child)::after {
        display: none;
    }

    .output-grid,
    .lab-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .page-shell {
        width: min(100% - 28px, 1160px);
        padding-top: 18px;
    }

    .topbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .brand-mark {
        width: 154px;
    }

    .brand-copy strong {
        font-size: 1rem;
    }

    .brand-copy span {
        font-size: 0.72rem;
    }

    nav {
        justify-content: flex-start;
    }

    .hero {
        min-height: auto;
        padding: 46px 0 34px;
    }

    h1 {
        font-size: clamp(2.04rem, 10.4vw, 3.44rem);
    }

    .button {
        width: 100%;
    }

        .button.ghost {
            width: auto;
        }

    .dashboard-grid,
    .principles,
    .steps,
    .flow-row,
    .output-grid,
    .lab-grid,
    .investment-flow,
    .report-stack,
    .metric-grid {
        grid-template-columns: 1fr;
    }

    .axis-list {
        grid-template-columns: 1fr;
    }

    .roadmap-mini {
        grid-template-columns: 1fr;
    }

    .visual-panel,
    .model-card,
    .investment {
        padding: 22px;
    }
}

/* =====================================================
   CUSTOMER APPLICATION PAGE
===================================================== */

.customer-apply-page {
    padding: 72px 0 96px;
}

.customer-apply-heading {
    max-width: 820px;
    margin: 0 auto 48px;
    text-align: center;
}

.customer-apply-eyebrow {
    margin-bottom: 16px;
    color: var(--teal, #0f766e);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.customer-apply-heading h1 {
    margin: 0;
    color: var(--navy, #18345f);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    line-height: 1;
    letter-spacing: -0.055em;
}

.customer-apply-heading p {
    max-width: 720px;
    margin: 22px auto 0;
    color: #5c6b76;
    font-size: 1.05rem;
    line-height: 1.7;
}

.customer-apply-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: stretch;
    gap: 24px;
}

.customer-apply-info,
.customer-apply-form-card {
    border: 1px solid rgba(24, 52, 95, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 22px 64px rgba(14, 27, 42, 0.08);
}

.customer-apply-info {
    padding: 34px;
}

    .customer-apply-info h2,
    .customer-apply-form-heading h2 {
        margin: 0;
        color: var(--navy, #18345f);
        font-size: 1.45rem;
        line-height: 1.25;
        letter-spacing: -0.035em;
    }

.customer-apply-info-text,
.customer-apply-form-heading p {
    margin: 14px 0 0;
    color: #5c6b76;
    line-height: 1.65;
}

.customer-apply-steps {
    display: grid;
    gap: 22px;
    margin-top: 30px;
}

.customer-apply-step {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: flex-start;
    gap: 14px;
}

.customer-apply-step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    color: #ffffff;
    border-radius: 50%;
    background: var(--teal, #0f766e);
    font-size: 0.82rem;
    font-weight: 900;
}

.customer-apply-step h3 {
    margin: 1px 0 0;
    color: #0e1b2a;
    font-size: 1rem;
    line-height: 1.35;
}

.customer-apply-step p {
    margin: 7px 0 0;
    color: #64727d;
    font-size: 0.9rem;
    line-height: 1.55;
}

.customer-apply-note {
    margin-top: 30px;
    padding: 16px 18px;
    color: #45605d;
    border: 1px solid rgba(15, 118, 110, 0.16);
    border-radius: 16px;
    background: rgba(15, 118, 110, 0.07);
    font-size: 0.88rem;
    line-height: 1.55;
}

.customer-apply-form-card {
    padding: 34px;
}

.customer-apply-form-heading {
    margin-bottom: 26px;
}

.customer-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.customer-form-field {
    min-width: 0;
}

.customer-form-field-full {
    grid-column: 1 / -1;
}

.customer-form-field label:not(.customer-consent) {
    display: block;
    margin-bottom: 9px;
    color: #1b2d3c;
    font-size: 0.88rem;
    font-weight: 800;
}

.customer-form-field input[type="text"],
.customer-form-field input[type="email"],
.customer-form-field input[type="tel"],
.customer-form-field input[type="url"] {
    display: block;
    width: 100%;
    height: 52px;
    padding: 0 16px;
    color: #0e1b2a;
    border: 1px solid #d8e3e5;
    border-radius: 14px;
    outline: none;
    background: #ffffff;
    font: inherit;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.customer-form-field input::placeholder {
    color: #93a1aa;
}

.customer-form-field input:focus {
    border-color: var(--teal, #0f766e);
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.1);
}

.customer-consent {
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

    .customer-consent input {
        width: 18px;
        height: 18px;
        margin: 2px 0 0;
        accent-color: var(--teal, #0f766e);
    }

    .customer-consent span {
        color: #64727d;
        font-size: 0.86rem;
        line-height: 1.55;
    }

.customer-apply-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 54px;
    padding: 0 24px;
    color: #ffffff;
    border: 0;
    border-radius: 999px;
    background: var(--navy, #18345f);
    cursor: pointer;
    font: inherit;
    font-weight: 900;
    transition: transform 160ms ease, background 160ms ease;
}

    .customer-apply-submit:hover {
        background: var(--navy-2, #102642);
        transform: translateY(-2px);
    }

    .customer-apply-submit:disabled {
        cursor: wait;
        opacity: 0.72;
        transform: none;
    }

.customer-apply-state {
    padding: 54px 24px;
    text-align: center;
}

    .customer-apply-state.d-none {
        display: none;
    }

.customer-state-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    margin: 0 auto;
    color: #ffffff;
    border-radius: 50%;
    font-size: 1.55rem;
    font-weight: 900;
}

.customer-apply-success .customer-state-icon {
    background: #16815f;
}

.customer-apply-error .customer-state-icon {
    background: #bd3d3d;
}

.customer-apply-state h3 {
    margin: 20px 0 0;
    color: var(--navy, #18345f);
}

.customer-apply-state p {
    margin: 10px auto 0;
    color: #64727d;
    line-height: 1.6;
}

.customer-result-message {
    margin-top: 18px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 700;
}

/* =====================================================
   CUSTOMER APPLICATION RESPONSIVE
===================================================== */

@media (max-width: 900px) {
    .customer-apply-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .customer-apply-page {
        padding: 48px 0 72px;
    }

    .customer-apply-heading {
        margin-bottom: 34px;
    }

    .customer-apply-info,
    .customer-apply-form-card {
        padding: 24px;
        border-radius: 22px;
    }

    .customer-form-grid {
        grid-template-columns: 1fr;
    }

    .customer-form-field-full {
        grid-column: auto;
    }
}