:root {
    --teal-deep: #021824;
    --teal-mid: #0a3a4a;
    --teal-700: #0f4d5e;
    --teal-500: #1c6e7d;
    --cyan-beam: #7ee9e2;
    --cyan-soft: #a8f0ea;
    --cream: #f4ede1;
    --paper: #fbf8f1;
    --ink: #0a1418;
    --ink-soft: #4a5a60;
    --line: rgba(10, 20, 24, 0.12);
    --hero-ink: #e8f6ff;
    --hero-bg: #02080d;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    scroll-behavior: smooth;
}
html,
body {
    background: var(--paper);
    color: var(--ink);
    font-family:
        "Inter",
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Helvetica Neue",
        Helvetica,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: visible;
}
a {
    color: inherit;
    text-decoration: none;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
}

/* ===== NAV (NUE) ===== */
.nue-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 200;
    padding: 0;
    background: transparent;
    transition:
        background 0.3s ease,
        padding 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
    border-bottom: 1px solid transparent;
}
.nue-nav .nue-nav__inner {
    position: relative;
    z-index: 3;
    max-width: 1320px;
    margin: 0 auto;
    padding: 18px 36px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 24px;
}
.nue-nav.solid {
    background: transparent;
    border-bottom-color: transparent;
}
.nue-nav.solid::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: rgba(251, 248, 241, 0.92);
    backdrop-filter: saturate(140%) blur(12px);
    border-bottom: 1px solid var(--line);
    pointer-events: none;
}
.nue-nav.is-open::before {
    display: none;
}
.nue-nav.solid .nue-nav__inner {
    padding: 14px 36px;
}
.nue-nav .brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-right: auto;
}
.nue-nav .brand img {
    display: block;
    height: auto;
    max-height: 44px;
    width: auto;
    max-width: min(280px, 52vw);
    background: #ffffff;
    padding: 8px 14px;
    border-radius: 999px;
    transition: background 0.3s ease;
}
.nue-nav.solid .brand img {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.nue-nav__menu {
    list-style: none;
    display: flex;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}
.nue-nav__menu a {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.25s ease;
}
.nue-nav.solid .nue-nav__menu a {
    color: var(--ink-soft);
}
.nue-nav__menu a:hover {
    color: var(--cyan-beam);
}
.nue-nav.solid .nue-nav__menu a:hover {
    color: var(--teal-500);
}
.nue-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
}
.nue-nav__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    cursor: pointer;
    transition:
        background 0.25s ease,
        border-color 0.25s ease;
}
.nue-nav__toggle-bar {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}
.nue-nav.solid .nue-nav__toggle {
    border-color: var(--line);
    background: rgba(10, 20, 24, 0.04);
}
.nue-nav.solid .nue-nav__toggle-bar {
    background: var(--ink);
}
.nue-nav.is-open .nue-nav__toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nue-nav.is-open .nue-nav__toggle-bar:nth-child(2) {
    opacity: 0;
}
.nue-nav.is-open .nue-nav__toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}
.nue-nav.is-open .nue-nav__inner {
    position: relative;
    z-index: 4;
}
.nue-nav.is-open .nue-nav__toggle {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.12);
}
.nue-nav.is-open .nue-nav__toggle-bar {
    background: #fff;
}
.nue-nav__backdrop {
    position: fixed;
    inset: 0;
    z-index: 0;
    background: rgba(2, 8, 13, 0.55);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.nue-nav.is-open .nue-nav__backdrop {
    opacity: 1;
    pointer-events: auto;
}
.nue-nav__panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 8px 20px 24px;
    background: var(--teal-deep);
    border-bottom: 1px solid rgba(126, 233, 226, 0.2);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition:
        transform 0.3s ease,
        opacity 0.3s ease;
}
.nue-nav.is-open .nue-nav__panel {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}
.nue-nav__menu--mobile {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
}
.nue-nav__menu--mobile li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.nue-nav__menu--mobile a {
    display: block;
    padding: 16px 4px;
    font-size: 16px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.92);
}
.nue-nav__menu--mobile a:hover {
    color: var(--cyan-beam);
}
.nue-nav__panel-register {
    display: none;
    margin-top: 20px;
    padding: 14px 24px;
    border-radius: 999px;
    background: var(--cyan-beam);
    color: var(--teal-deep);
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
}
body.nue-nav-open {
    overflow: hidden;
}
.nue-nav .cta {
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    background: transparent;
    transition: all 0.25s ease;
}
.nue-nav.solid .cta {
    border-color: var(--ink);
    color: var(--ink);
}
.nue-nav .cta:hover {
    background: var(--cyan-beam);
    color: var(--teal-deep);
    border-color: var(--cyan-beam);
}

@media (max-width: 980px) {
    .nue-nav .nue-nav__inner {
        padding: 12px 16px;
    }
    .nue-nav.solid .nue-nav__inner {
        padding: 12px 16px;
    }
    .nue-nav__menu--desktop {
        display: none;
    }
    .nue-nav__toggle {
        display: inline-flex;
    }
    .nue-nav__actions .cta {
        display: none;
    }
    .nue-nav__panel-register {
        display: block;
    }
    .nue-nav.is-open {
        z-index: 10000;
        background: var(--teal-deep);
        border-bottom-color: rgba(126, 233, 226, 0.2);
    }
    .nue-nav.is-open .nue-nav__backdrop {
        z-index: 1;
    }
    .nue-nav.is-open .nue-nav__panel {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 2;
        padding: calc(72px + env(safe-area-inset-top, 0px)) 20px 32px;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
}

@media (max-width: 720px) {
    .nue-nav .brand img {
        max-height: 38px;
        padding: 6px 12px;
    }
}

/* ===== FOOTER (NUE) ===== */
.nue-footer {
    background: var(--teal-deep);
    color: rgba(255, 255, 255, 0.78);
    padding: 60px 8vw 32px;
}
.nue-footer .top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    max-width: 1320px;
    margin: 0 auto 36px;
}
.nue-footer .brand {
    font-family: "Fraunces", serif;
    font-size: 22px;
    color: #fff;
    margin-bottom: 12px;
}
.nue-footer .desc {
    font-size: 14px;
    line-height: 1.7;
    max-width: 42ch;
}
.nue-footer h4 {
    font-size: 11px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--cyan-beam);
    margin-bottom: 14px;
    font-weight: 600;
}
.nue-footer ul {
    list-style: none;
}
.nue-footer li {
    margin-bottom: 8px;
    font-size: 14px;
}
.nue-footer .bottom {
    max-width: 1320px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 980px) {
    .nue-footer .top {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ===== FOOTER (Legacy structure, NUE tone) ===== */
.nue-footer-legacy {
    position: relative;
    padding: 84px 8vw 44px;
    background-color: var(--teal-deep);
    background-image: var(--footer-bg);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.88);
}
.nue-footer-legacy__overlay {
    position: absolute;
    inset: 0;
    background: rgba(2, 24, 36, 0.93);
    backdrop-filter: saturate(120%) blur(1px);
}
.nue-footer-legacy__inner {
    position: relative;
    z-index: 1;
    max-width: 1320px;
    margin: 0 auto;
    text-align: center;
}
.nue-footer-legacy__brand {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.nue-footer-legacy__logo {
    display: block;
    height: auto;
    max-height: 72px;
    width: auto;
    max-width: min(420px, 92vw);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}
.nue-footer-legacy__brand h3 {
    margin: 18px 0 8px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}
.nue-footer-legacy__brand p {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    opacity: 0.9;
    letter-spacing: 0.06em;
}
.nue-footer-legacy__copy {
    margin-top: 56px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.nue-footer-legacy__copy p {
    margin: 0;
    font-size: 13px;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== REGISTER PAGE (NUE) ===== */
.nue-page-head {
    background: var(--teal-deep);
    color: #fff;
    padding: 160px 8vw 80px;
    position: relative;
    overflow: hidden;
}
.nue-page-head .bg-parallax {
    position: absolute;
    inset: -10% -2% -10% -2%;
    background-image: url("../assets/bali-melasti.webp");
    background-size: cover;
    background-position: center 50%;
    opacity: 0.28;
    filter: saturate(0.85) contrast(0.98);
    z-index: 0;
    will-change: transform;
    transform: translate3d(0, 0, 0);
    pointer-events: none;
}
.nue-page-head::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse at 50% 50%,
            rgba(2, 24, 36, 0.35) 0%,
            rgba(2, 24, 36, 0.85) 75%,
            var(--teal-deep) 100%
        ),
        linear-gradient(
            180deg,
            rgba(2, 24, 36, 0.6) 0%,
            rgba(2, 24, 36, 0.4) 50%,
            rgba(2, 24, 36, 0.7) 100%
        );
    z-index: 1;
    pointer-events: none;
}
.nue-page-head::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(126, 233, 226, 0.18) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
}
.nue-page-head .inner {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.nue-page-head .eyebrow {
    font-size: 12px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--cyan-beam);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.nue-page-head .eyebrow::before {
    content: "";
    width: 24px;
    height: 1px;
    background: var(--cyan-beam);
}
.nue-page-head h1 {
    font-family: "Fraunces", serif;
    font-weight: 400;
    font-size: clamp(40px, 5.5vw, 72px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    font-variation-settings: "opsz" 144;
    margin-bottom: 18px;
}
.nue-page-head p {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.78);
    max-width: 60ch;
}
.nue-period-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    padding: 10px 18px;
    background: rgba(126, 233, 226, 0.14);
    border: 1px solid rgba(126, 233, 226, 0.4);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--cyan-soft);
    letter-spacing: 0.04em;
}
.nue-period-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan-beam);
    box-shadow: 0 0 12px var(--cyan-beam);
}

.nue-main {
    padding: 80px 8vw 120px;
    max-width: 1320px;
    margin: 0 auto;
}
.nue-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 48px;
    align-items: start;
}
.nue-how-to {
    background: var(--cream);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 32px 36px;
    margin-bottom: 40px;
}
.nue-how-to h3 {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: 22px;
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.nue-how-to h3::before {
    content: "";
    width: 6px;
    height: 24px;
    background: var(--cyan-beam);
    border-radius: 3px;
}
.nue-how-to ol {
    padding-left: 20px;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.75;
}
.nue-how-to ol li {
    margin-bottom: 8px;
}

.nue-form-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}
.nue-form-card-head {
    background: var(--teal-deep);
    color: #fff;
    padding: 32px 36px;
}
.nue-form-card-head h2 {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: 28px;
    margin-bottom: 6px;
}
.nue-form-card-head p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}
.nue-form-card-body {
    padding: 36px;
}

.nue-section {
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}
.nue-section:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}
.nue-section:first-child {
    padding-top: 0;
}
.nue-section-title {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--teal-deep);
}
.nue-section-title .num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--teal-deep);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 13px;
}

.nue-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 14px;
}
.nue-row.full {
    grid-template-columns: 1fr;
}

.nue-label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink);
    margin-bottom: 6px;
    letter-spacing: 0.01em;
}
.nue-label .req {
    color: #c53b3b;
    margin-left: 3px;
}

.nue-input,
select.nue-input,
textarea.nue-input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    background: #fdfbf7;
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.nue-input:focus {
    outline: none;
    border-color: var(--teal-500);
    box-shadow: 0 0 0 3px rgba(28, 110, 125, 0.12);
    background: #fff;
}
textarea.nue-input {
    min-height: 100px;
    resize: vertical;
}

.nue-sub-title {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
    margin-bottom: 10px;
    text-transform: uppercase;
}
.nue-hint {
    display: block;
    font-size: 12px;
    color: var(--ink-soft);
    margin-top: 6px;
    line-height: 1.5;
}

.nue-check-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}
.nue-check-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    background: #fdfbf7;
    transition: all 0.2s;
    margin-bottom: 0;
}
.nue-check-group label:hover {
    border-color: var(--teal-500);
}
.nue-check-group input {
    accent-color: var(--teal-deep);
}

.nue-alert {
    border-radius: 12px;
    padding: 18px 22px;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
.nue-alert strong {
    color: var(--teal-deep);
}
.nue-alert.warn {
    background: #fff8e6;
    border: 1px solid #f5d682;
    color: #5a4400;
}
.nue-alert.warn strong {
    color: #5a4400;
}
.nue-alert.warn ol {
    margin: 10px 0 0 18px;
    padding: 0;
}
.nue-alert.warn li {
    margin-bottom: 6px;
}
.nue-alert.warn a {
    color: var(--teal-700);
    font-weight: 600;
    text-decoration: underline;
}
.nue-alert.info {
    background: rgba(126, 233, 226, 0.14);
    border: 1px solid rgba(126, 233, 226, 0.4);
    color: var(--teal-deep);
}

.nue-submit-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 0;
}
.nue-btn,
a.nue-btn,
button.nue-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    text-decoration: none;
    line-height: 1.2;
}
.nue-btn.primary,
button.nue-btn.primary {
    background: var(--teal-deep);
    color: #fff;
    border-color: var(--teal-deep);
}
.nue-btn.primary:hover,
button.nue-btn.primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-1px);
}
.nue-btn.secondary,
a.nue-btn.secondary,
button.nue-btn.secondary {
    background: #fff;
    color: #5b2a2a;
    border: 1px solid #bb2929;
    border-radius: 999px;
}
.nue-btn.secondary:hover,
a.nue-btn.secondary:hover,
button.nue-btn.secondary:hover {
    background: #bb2929;
    color: #fff;
    border-color: #bb2929;
    transform: translateY(-1px);
}

.nue-summary {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px;
    position: sticky;
    top: 90px;
    align-self: start;
}
.nue-summary h3 {
    font-family: "Fraunces", serif;
    font-weight: 500;
    font-size: 20px;
    margin-bottom: 18px;
    color: var(--teal-deep);
}
.nue-summary .row-line {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 14px 0;
    border-bottom: 1px dashed var(--line);
    font-size: 14px;
}
.nue-summary .row-line:last-of-type {
    border-bottom: 0;
}
.nue-summary .row-line .lab {
    color: var(--ink-soft);
}
.nue-summary .row-line .val {
    font-weight: 600;
    color: var(--ink);
    text-align: right;
}
.nue-summary .note {
    margin-top: 18px;
    padding: 14px;
    background: var(--cream);
    border-radius: 10px;
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.6;
}
.nue-summary .note strong {
    color: var(--teal-deep);
}

/* ===== TOTAL PRICE CARD (NUE) ===== */
.total-price-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 22px 22px;
}
.total-price-card .price-display {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 24px 16px;
    min-height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
}
.total-price-card #final_amount_display {
    font-family: "Fraunces", serif;
    color: var(--teal-deep);
    width: 100%;
}
.total-price-card #final_amount_display .final-amount-value {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.1;
}
.price-details-stack {
    display: grid;
    gap: 10px;
}
.price-details-row {
    display: grid;
    gap: 10px;
}
.price-details-row.org-row {
    grid-template-columns: 1fr;
}
.price-details-row.two-col-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.price-details-stack .detail-item {
    display: flex;
    gap: 10px;
    align-items: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    min-width: 0;
    width: 100%;
    overflow: hidden;
    box-sizing: border-box;
    min-height: 78px;
}
.price-details-stack .detail-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(126, 233, 226, 0.14);
    border: 1px solid rgba(126, 233, 226, 0.4);
    color: var(--teal-deep);
    flex: 0 0 auto;
}
.price-details-stack .detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}
.price-details-stack .detail-label {
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ink-soft);
    font-weight: 600;
    line-height: 1.1;
    white-space: normal;
    overflow: hidden;
    text-overflow: clip;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.price-details-stack .detail-value {
    font-size: 13px;
    color: var(--ink);
    font-weight: 600;
    line-height: 1.2;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    word-break: break-word;
}

#selected_org_type {
    font-size: 13px;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    text-overflow: ellipsis;
}

@media (max-width: 860px) {
    .nue-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .nue-summary {
        position: static;
    }
    .nue-page-head {
        padding: 130px 6vw 60px;
    }
    .nue-main {
        padding: 48px 6vw 80px;
    }
    .nue-form-card-body {
        padding: 24px;
    }
    .nue-how-to {
        padding: 24px;
    }
    .total-price-card {
        padding: 18px;
    }
}
@media (max-width: 640px) {
    .nue-row {
        grid-template-columns: 1fr;
    }
    .nue-form-card-head {
        padding: 24px;
    }
    .nue-form-card-head h2 {
        font-size: 22px;
    }
    .nue-submit-row {
        flex-direction: column;
        align-items: stretch;
    }
    .nue-submit-row .nue-btn {
        justify-content: center;
    }
    .nue-check-group label {
        padding: 8px 14px;
        font-size: 13px;
    }
    .nue-page-head h1 {
        font-size: 36px;
    }
    .nue-page-head p {
        font-size: 15px;
    }
    .price-details-row.two-col-row {
        grid-template-columns: 1fr;
    }
    .price-details-modern .detail-item {
        min-height: 64px;
    }
    .total-price-card .price-display {
        min-height: 104px;
        padding: 20px 14px;
    }
    .total-price-card #final_amount_display .final-amount-value {
        font-size: clamp(1.6rem, 8vw, 2.4rem);
    }
}

/* Select2 (nicer with nue inputs) */
.select2-container--default .select2-selection--single {
    border: 1px solid var(--line);
    border-radius: 10px;
    height: 44px;
    background: #fdfbf7;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    line-height: 44px;
    padding-left: 14px;
    color: var(--ink);
    font-size: 14px;
}
.select2-container--default
    .select2-selection--single
    .select2-selection__arrow {
    height: 42px;
}

.select2-container--default .select2-selection--single {
    position: relative;
}

.select2-container--default
    .select2-selection--single
    .select2-selection__rendered {
    padding-right: 46px;
    position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__clear,
.select2-container--default
    .select2-selection--single
    .select2-selection__rendered
    .select2-selection__clear,
.select2-selection__clear {
    cursor: pointer !important;
    color: #888888 !important;
    float: none !important;
    font-weight: bold !important;
    font-size: 12px !important;
    line-height: 1 !important;
    height: 12px !important;
    width: 12px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: absolute !important;
    right: 16px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 4 !important;
}
.select2-container {
    width: 100% !important;
}

/* ===== PAYMENT METHOD CARDS (NUE) ===== */
.payment-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-top: 6px;
}
.payment-method-card {
    border: 2px solid var(--line);
    border-radius: 14px;
    padding: 18px 20px;
    cursor: pointer;
    background: #fdfbf7;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease,
        background 0.2s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
}
.payment-method-card:hover {
    border-color: var(--teal-500);
    transform: translateY(-1px);
}
.payment-method-card.selected {
    border-color: var(--teal-deep);
    background: #fff;
    box-shadow: 0 10px 30px rgba(2, 24, 36, 0.1);
}
.payment-card-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}
.payment-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(2, 24, 36, 0.06);
    color: var(--teal-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.payment-method-card.selected .payment-method-icon {
    background: rgba(126, 233, 226, 0.18);
}
.selection-checkmark {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: transparent;
}
.payment-method-card.selected .selection-checkmark {
    border-color: var(--teal-deep);
    background: var(--teal-deep);
    color: var(--cyan-beam);
}
.payment-method-title {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    color: var(--teal-deep);
}
.payment-method-description {
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.payment-method-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}
.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: var(--cream);
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    color: var(--teal-deep);
    white-space: nowrap;
}
.payment-method-card.selected .feature-badge {
    background: rgba(126, 233, 226, 0.14);
    border-color: rgba(126, 233, 226, 0.38);
}

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

.registration-bank-details {
    margin-top: 18px;
    padding: 0;
    border: 1px solid rgba(2, 24, 36, 0.1);
    border-radius: 16px;
    background: linear-gradient(180deg, #fff 0%, var(--paper) 100%);
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(2, 24, 36, 0.06);
}

.registration-bank-details__header {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
    background: rgba(126, 233, 226, 0.08);
}

.registration-bank-details__icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--teal-deep);
    color: var(--cyan-beam);
    font-size: 18px;
}

.registration-bank-details__title {
    margin: 0 0 4px;
    font-family: "Fraunces", serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--teal-deep);
    line-height: 1.3;
}

.registration-bank-details__note {
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.registration-bank-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    padding: 16px;
}

.registration-bank-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.registration-bank-card__head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px 12px;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
}

.registration-bank-card__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--teal-deep);
    color: var(--cyan-beam);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.registration-bank-card__badge--usd {
    background: #1c4a6e;
    color: #b8dff5;
}

.registration-bank-card__title {
    margin: 0;
    font-family: "Fraunces", serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--teal-deep);
    line-height: 1.25;
}

.registration-bank-card__rows {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    flex: 1;
}

.registration-bank-card__row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(10, 20, 24, 0.06);
    font-size: 13px;
    line-height: 1.45;
}

.registration-bank-card__row:last-child {
    border-bottom: 0;
}

.registration-bank-card__label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ink-soft);
}

.registration-bank-card__value {
    width: 100%;
    color: var(--ink);
    font-weight: 500;
    word-break: break-word;
}

.registration-bank-card__row--account {
    background: rgba(126, 233, 226, 0.1);
}

.registration-bank-card__row--account .registration-bank-card__value {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.registration-bank-card__account,
.registration-bank-card__swift {
    font-family: ui-monospace, "SF Mono", Menlo, Monaco, Consolas, monospace;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--teal-deep);
    background: transparent;
    padding: 0;
}

.registration-bank-card__account {
    font-size: 15px;
}

.registration-bank-copy {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--teal-deep);
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition:
        background 0.15s ease,
        border-color 0.15s ease,
        color 0.15s ease;
}

.registration-bank-copy:hover {
    border-color: var(--teal-500);
    background: var(--cream);
}

.registration-bank-copy.is-copied {
    border-color: var(--teal-deep);
    background: var(--teal-deep);
    color: var(--cyan-beam);
}

.registration-bank-copy .fa {
    font-size: 12px;
}

@media (max-width: 768px) {
    .registration-bank-grid {
        grid-template-columns: 1fr;
    }
}
