@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,500&display=swap');

:root {
    --nx-primary: #0ea5e9;
    --nx-primary-dark: #0284c7;
    --nx-secondary: #6366f1;
    --nx-accent: #14b8a6;
    --nx-dark: #0f172a;
    --nx-dark-soft: #1e293b;
    --nx-surface: #f8fafc;
    --nx-card: #ffffff;
    --nx-border: #e2e8f0;
    --nx-text: #0f172a;
    --nx-muted: #64748b;
    --nx-gradient: linear-gradient(135deg, #0ea5e9 0%, #6366f1 55%, #8b5cf6 100%);
    --nx-gradient-dark: linear-gradient(160deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    --nx-shadow: 0 4px 24px rgba(15, 23, 42, 0.08);
    --nx-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --nx-radius: 14px;
    --nx-radius-sm: 10px;
}

* { box-sizing: border-box; }

body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    color: var(--nx-text);
    -webkit-font-smoothing: antialiased;
}

/* ─── Login (modern) ─── */
html.login-html,
html.login-html body.login-page {
    height: 100%;
    overflow: hidden;
}

.login-page {
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    align-items: stretch;
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.login-bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.login-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: login-float 12s ease-in-out infinite;
}

.login-orb-1 {
    width: 420px;
    height: 420px;
    background: rgba(14, 165, 233, 0.35);
    top: -10%;
    left: -5%;
}

.login-orb-2 {
    width: 360px;
    height: 360px;
    background: rgba(99, 102, 241, 0.3);
    bottom: 10%;
    left: 25%;
    animation-delay: -4s;
}

.login-orb-3 {
    width: 280px;
    height: 280px;
    background: rgba(139, 92, 246, 0.25);
    top: 40%;
    right: 35%;
    animation-delay: -8s;
}

@keyframes login-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -30px) scale(1.05); }
}

.login-wrap {
    display: flex;
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    min-height: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.login-brand-panel {
    flex: 1;
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem 2.5rem;
    color: #fff;
    height: 100%;
    min-height: 0;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.75) 100%);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    overflow: hidden;
}

@media (min-width: 992px) {
    .login-brand-panel { display: flex; }
}

.login-brand-inner { max-width: 440px; }

.login-brand-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.login-brand-text { min-width: 0; }

.login-brand-panel .brand-logo {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: var(--nx-gradient);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 0;
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.35);
    transform: rotate(-3deg);
}

.login-brand-panel h1 {
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.03em;
    margin-bottom: 0.15rem;
    line-height: 1.15;
    background: linear-gradient(135deg, #fff 0%, #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.login-tagline {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 0;
    line-height: 1.35;
}

.login-powered-badge {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    margin-bottom: 1rem;
}

.login-powered-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(14, 165, 233, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
}

.login-powered-badge strong {
    color: #fff;
    font-weight: 600;
}

.login-powered-name {
    display: block;
    margin-top: 0.4rem;
    font-weight: 800;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #7dd3fc;
}

.login-feature-list li {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.login-feature-list li:last-child { margin-bottom: 0; }

.login-feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    font-size: 0.85rem;
}

.login-side-contact {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1rem;
    flex-shrink: 0;
}

.login-side-contact .contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

.contact-phone-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    color: rgba(255, 255, 255, 0.88) !important;
    text-decoration: none !important;
    font-size: 0.92rem;
    font-weight: 500;
    margin-bottom: 0.45rem;
    padding: 0.35rem 0;
    transition: transform 0.2s, color 0.2s;
}

.contact-phone-link:hover {
    color: #fff !important;
    transform: translateX(4px);
}

.contact-phone-link i { color: #38bdf8; width: 1rem; }

.login-form-panel {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 0;
    padding: 1rem 1.25rem;
    background: rgba(248, 250, 252, 0.97);
    overflow: hidden;
}

@media (min-width: 992px) {
    .login-form-panel {
        flex: 0 0 440px;
        background: #f1f5f9;
        box-shadow: -32px 0 80px rgba(0, 0, 0, 0.25);
    }
}

.login-animate-in {
    animation: login-slide-up 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes login-slide-up {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.login-card-box {
    width: 100%;
    max-width: 380px;
    max-height: calc(100dvh - 1.5rem);
    background: #fff;
    border-radius: 20px;
    padding: 1.35rem 1.35rem 1.15rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--nx-gradient);
}

.login-eyebrow {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-primary);
    margin-bottom: 0.35rem !important;
}

.login-card-header {
    margin-bottom: 1rem;
}

.login-card-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.2rem !important;
}

.login-field {
    margin-bottom: 0.65rem;
}

.login-field-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--nx-text);
    margin-bottom: 0.35rem;
}

.login-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.login-input-icon {
    position: absolute;
    left: 1rem;
    color: var(--nx-muted);
    font-size: 0.9rem;
    z-index: 2;
    pointer-events: none;
    transition: color 0.2s;
}

.login-input {
    border: 1.5px solid var(--nx-border);
    border-radius: 12px !important;
    padding: 0.65rem 1rem 0.65rem 2.5rem !important;
    font-size: 0.9rem;
    background: var(--nx-surface) !important;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.login-input:focus {
    border-color: var(--nx-primary) !important;
    background: #fff !important;
    box-shadow: 0 0 0 4px rgba(14, 165, 233, 0.12) !important;
}

.login-input-wrap:focus-within .login-input-icon {
    color: var(--nx-primary);
}

.login-recover-row {
    margin-bottom: 0.75rem;
}

.login-recover-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--nx-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.login-recover-link:hover { color: var(--nx-primary-dark); }

.login-submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: 12px !important;
    letter-spacing: 0.02em;
    transition: transform 0.2s, box-shadow 0.2s;
}

.login-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(14, 165, 233, 0.35);
}

.login-footer-actions {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid var(--nx-border);
    text-align: center;
}

.login-back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--nx-muted);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: color 0.2s, background 0.2s;
}

.login-back-link:hover {
    color: var(--nx-primary-dark);
    background: rgba(14, 165, 233, 0.08);
}

.login-alert {
    border-radius: 10px;
    font-size: 0.82rem;
    padding: 0.55rem 0.85rem;
    border: none;
    margin-bottom: 0.75rem;
}

.login-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: var(--nx-shadow-lg);
}

.login-modal-header {
    background: var(--nx-gradient);
    color: #fff;
    padding: 1.75rem 1.5rem 1.5rem;
    text-align: center;
    position: relative;
}

.login-modal-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    font-size: 1.2rem;
}

.login-mobile-head {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    text-align: left;
    margin-bottom: 1rem;
}

.login-mobile-head .login-icon {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
    background: var(--nx-gradient);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.login-mobile-head h3 {
    font-size: 1.05rem;
    line-height: 1.2;
}

.login-mobile-tagline {
    font-size: 0.72rem;
    color: var(--nx-muted);
    line-height: 1.3;
    margin-top: 0.1rem;
}

.login-mobile-contact {
    margin-top: 1.5rem;
    padding: 1rem 1.15rem;
    background: rgba(14, 165, 233, 0.06);
    border: 1px solid rgba(14, 165, 233, 0.12);
    border-radius: 14px;
    text-align: center;
}

.login-mobile-contact .contact-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--nx-muted);
    margin-bottom: 0.5rem;
}

.login-mobile-contact .contact-phone-link {
    color: var(--nx-text) !important;
    justify-content: center;
    font-size: 0.85rem;
}

.login-mobile-contact .contact-phone-link i { color: var(--nx-primary); }

.login-input-toggle {
    position: absolute;
    right: 0.85rem;
    background: none;
    border: none;
    color: var(--nx-muted);
    padding: 0.35rem;
    cursor: pointer;
    z-index: 2;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.login-input-toggle:hover {
    color: var(--nx-primary);
    background: rgba(14, 165, 233, 0.08);
}

.login-input.has-toggle {
    padding-right: 2.75rem !important;
}

@media (max-width: 991px) {
    .login-form-panel {
        background: transparent;
        padding: 0.75rem 1rem;
    }

    .login-card-box {
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow:
            0 8px 32px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.6);
    }
}

@media (max-height: 700px) {
    .login-brand-panel { padding: 1.25rem 2rem; gap: 0.85rem; }
    .login-brand-head { margin-bottom: 0.85rem; }
    .login-powered-badge { margin-bottom: 0.65rem; padding: 0.65rem 0.85rem; }
    .login-feature-list li { margin-bottom: 0.35rem; font-size: 0.8rem; }
    .login-card-box { padding: 1rem 1.15rem 0.85rem; }
    .login-card-header { margin-bottom: 0.65rem; }
    .login-field { margin-bottom: 0.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .login-orb,
    .login-animate-in { animation: none; }
}

.btn-nx-primary {
    background: var(--nx-gradient);
    border: none;
    color: #fff;
    font-weight: 600;
    border-radius: var(--nx-radius-sm);
    padding: 0.75rem 1.5rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-nx-primary:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

/* ─── Login — match public website (landing) theme ─── */
.login-page {
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(160deg, #0a1622 0%, #0f1f33 45%, #0a1622 100%);
}

.login-page .login-orb-1 {
    background: rgba(255, 179, 71, 0.28);
}

.login-page .login-orb-2 {
    background: rgba(255, 140, 46, 0.22);
}

.login-page .login-orb-3 {
    background: rgba(14, 165, 233, 0.12);
}

.login-page .login-brand-panel {
    background: linear-gradient(135deg, rgba(10, 25, 45, 0.96) 0%, rgba(15, 31, 51, 0.88) 100%);
    border-right-color: rgba(255, 179, 71, 0.12);
}

.login-page .login-brand-panel .brand-logo {
    background: linear-gradient(105deg, #FFB347, #FF8C42);
    box-shadow: 0 12px 32px rgba(255, 140, 46, 0.35);
    color: #1e2a3a;
}

.login-page .login-brand-panel h1 {
    background: linear-gradient(135deg, #fff 0%, #ffe6c7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-page .login-trust-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.login-page .login-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 179, 71, 0.25);
    color: rgba(255, 255, 255, 0.9);
}

.login-page .login-trust-pill i {
    color: #ffc857;
    font-size: 0.72rem;
}

.login-page .login-powered-icon {
    background: rgba(255, 179, 71, 0.18);
    color: #ffc857;
}

.login-page .login-powered-name {
    color: #ffd966;
}

.login-page .login-trust-copy {
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.55;
    margin-bottom: 0;
}

.login-page .login-trust-copy a {
    color: #ffc857;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 200, 87, 0.35);
}

.login-page .login-trust-copy a:hover {
    color: #ffe6a8;
    border-bottom-color: #ffe6a8;
}

.login-page .login-feature-icon {
    color: #ffc857;
    background: rgba(255, 179, 71, 0.12);
}

.login-page .contact-phone-link i {
    color: #ffc857;
}

.login-page .login-form-panel {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 992px) {
    .login-page .login-form-panel {
        background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
        box-shadow: -32px 0 80px rgba(0, 0, 0, 0.35);
    }
}

.login-page .login-card-accent {
    background: linear-gradient(90deg, #FFB347, #FF8C42, #FFB347);
    height: 5px;
}

.login-page .login-eyebrow {
    color: #ea580c;
}

.login-page .login-input:focus {
    border-color: #FF8C42 !important;
    box-shadow: 0 0 0 4px rgba(255, 140, 46, 0.15) !important;
}

.login-page .login-input-wrap:focus-within .login-input-icon {
    color: #ea580c;
}

.login-page .login-recover-link {
    color: #c2410c;
}

.login-page .login-recover-link:hover {
    color: #ea580c;
}

.login-page .login-back-link:hover {
    color: #c2410c;
    background: rgba(255, 179, 71, 0.1);
}

.login-page .login-input-toggle:hover {
    color: #ea580c;
    background: rgba(255, 179, 71, 0.1);
}

.login-page .btn-nx-primary {
    background: linear-gradient(105deg, #FFB347, #FF8C42);
    color: #1e2a3a;
    border-radius: 12px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 140, 46, 0.3);
}

.login-page .btn-nx-primary:hover {
    color: #1e2a3a;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 140, 46, 0.4);
}

.login-page .login-submit-btn:hover {
    box-shadow: 0 12px 32px rgba(255, 140, 46, 0.38);
}

.login-page .login-mobile-head .login-icon {
    background: linear-gradient(105deg, #FFB347, #FF8C42);
    color: #1e2a3a;
    box-shadow: 0 6px 20px rgba(255, 140, 46, 0.35);
}

.login-page .login-mobile-product {
    background: linear-gradient(135deg, #0f172a, #334155);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.login-page .login-mobile-trust {
    color: #64748b;
}

.login-page .login-mobile-trust i {
    color: #ea580c;
}

.login-page .login-modal-header {
    background: linear-gradient(105deg, #FFB347, #FF8C42);
    color: #1e2a3a;
}

.login-page .login-modal-header .opacity-75 {
    opacity: 0.85 !important;
}

.login-page .login-modal-icon {
    background: rgba(30, 42, 58, 0.12);
    color: #1e2a3a;
}

.login-page .login-brand-inner {
    max-width: 440px;
}

.login-page .login-brand-head {
    margin-bottom: 0.75rem;
}

.login-page .login-powered-badge {
    margin-bottom: 0.65rem;
    padding: 0.65rem 0.85rem;
}

.login-page .login-trust-copy {
    margin-bottom: 0.65rem !important;
    font-size: 0.72rem;
    line-height: 1.4;
}

.login-showcase-row {
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    width: 100%;
    max-width: 420px;
    flex-shrink: 1;
    min-height: 0;
    position: relative;
}

.login-feature-list--side {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    padding-right: 0.35rem;
}

.login-feature-list--side li {
    margin-bottom: 0;
}

.login-page .login-showcase-wrap {
    width: 100%;
    max-width: 360px;
    margin: 0.5rem auto;
    flex-shrink: 1;
    min-height: 0;
}

@media (min-width: 992px) {
    .login-page .login-brand-panel {
        justify-content: flex-start;
        align-items: stretch;
        gap: 0.35rem;
        padding: 1.25rem 1.75rem 1rem;
        overflow: hidden;
    }

    .login-page .login-brand-inner {
        flex-shrink: 0;
        width: 100%;
        max-width: 400px;
    }

    .login-page .login-brand-head {
        margin-bottom: 0.5rem;
    }

    .login-page .login-trust-pills {
        margin-bottom: 0.5rem !important;
    }

    .login-page .login-powered-badge {
        margin-bottom: 0.45rem;
        padding: 0.55rem 0.75rem;
        font-size: 0.74rem;
    }

    .login-page .login-trust-copy {
        margin-bottom: 0.35rem !important;
        font-size: 0.68rem;
        line-height: 1.35;
    }

    .login-page .login-showcase-row {
        flex: 1;
        align-self: stretch;
        max-width: 100%;
        margin: 0;
        min-height: 180px;
    }

    .login-page .login-feature-list--side {
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 2;
        max-width: 42%;
    }

    .login-page .login-feature-list--side li {
        font-size: 0.72rem;
        gap: 0.5rem;
        line-height: 1.35;
        color: rgba(255, 255, 255, 0.88);
    }

    .login-page .login-feature-list--side .login-feature-icon {
        width: 26px;
        height: 26px;
        font-size: 0.7rem;
        border-radius: 8px;
    }

    .login-page .login-side-contact {
        flex-shrink: 0;
        margin-top: auto;
        padding-top: 0.5rem;
        width: 100%;
        max-width: 400px;
        align-self: flex-start;
        position: relative;
        z-index: 2;
    }

    .login-page .login-showcase-row .login-showcase-wrap {
        margin: 0 auto;
        max-width: 260px;
        flex-shrink: 0;
        align-self: center;
        position: relative;
        z-index: 1;
    }

    .invite-showcase--login {
        padding: 0.35rem 0 0;
        transform: scale(0.78);
        transform-origin: center center;
    }

    .invite-showcase--login .invite-showcase-float {
        display: none;
    }

    .invite-showcase--login .invite-phone-mockup { width: 130px; }
    .invite-showcase--login .invite-phone-mockup .phone-mockup-screen { min-height: 195px; }
    .invite-showcase--login .invite-wedding-card { width: 150px; }
}

@media (min-width: 992px) and (max-height: 900px) {
    .login-page .login-brand-panel {
        gap: 0.3rem;
        padding: 1rem 1.5rem;
    }

    .login-page .login-feature-list--side li {
        font-size: 0.66rem;
        gap: 0.4rem;
    }

    .login-page .login-feature-list--side .login-feature-icon {
        width: 22px;
        height: 22px;
        font-size: 0.62rem;
    }

    .login-page .login-feature-list--side {
        gap: 0.3rem;
    }

    .login-page .login-brand-panel .brand-logo {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .login-page .login-brand-panel h1 {
        font-size: 1.35rem;
    }

    .login-page .login-tagline {
        font-size: 0.75rem;
    }

    .invite-showcase--login {
        transform: scale(0.68);
        padding-top: 0.35rem;
    }
}

@media (min-width: 992px) and (max-height: 720px) {
    .invite-showcase--login {
        transform: scale(0.58);
        padding-top: 0.25rem;
    }

    .login-page .login-side-contact {
        font-size: 0.85rem;
    }
}

/* ─── Invite showcase (phone + wedding card) ─── */
.invite-showcase {
    position: relative;
    flex-shrink: 0;
    pointer-events: none;
    user-select: none;
}

.invite-showcase-tag {
    position: absolute;
    z-index: 5;
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.3rem 0.65rem;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.invite-showcase-tag-sms { top: 0; left: 2%; }
.invite-showcase-tag-card { top: 0; right: 0; }

.invite-showcase-phone {
    position: absolute;
    left: 0;
    z-index: 2;
    transform: rotate(-7deg);
    transition: transform 0.35s ease;
}

.invite-showcase:hover .invite-showcase-phone {
    transform: rotate(-4deg) translateY(-4px);
}

.invite-showcase .invite-phone-mockup {
    box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45), inset 0 0 0 2px #333;
}

.invite-showcase .phone-mockup-bubble {
    line-height: 1.4;
}

.invite-showcase .phone-mockup-link {
    display: block;
    margin-top: 6px;
    color: #007aff;
    word-break: break-all;
}

.invite-wedding-card {
    position: absolute;
    right: 0;
    z-index: 3;
    transform: rotate(5deg);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.invite-showcase:hover .invite-wedding-card {
    transform: rotate(2deg) translateY(-6px);
}

.hwc-shell {
    background: #fffef7;
    border-radius: 28px 28px 34px 34px;
    padding: 14px 12px 16px;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.38), 0 0 0 6px rgba(212, 175, 55, 0.28), 0 0 0 9px #f7e9c3;
    position: relative;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    color: #2c2416;
}

.hwc-shell::before {
    content: '';
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(212, 175, 55, 0.45);
    border-radius: 22px;
    pointer-events: none;
}

.hwc-badge {
    position: absolute;
    top: -8px;
    right: 14px;
    z-index: 2;
    background: linear-gradient(120deg, #d4af37, #f5d060);
    color: #2c2416;
    font-size: 7px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 3px 10px;
    border-radius: 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hwc-bloom {
    position: absolute;
    border-radius: 50%;
    opacity: 0.45;
    pointer-events: none;
}

.hwc-bloom-1 {
    width: 90px;
    height: 90px;
    top: -20px;
    left: -25px;
    background: radial-gradient(circle, #ffb347 15%, transparent 70%);
}

.hwc-bloom-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -20px;
    background: radial-gradient(circle, #e8b86b 10%, transparent 72%);
}

.hwc-heading {
    font-family: 'Playfair Display', serif;
    font-size: 13px;
    font-weight: 800;
    color: #b8860b;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.hwc-family {
    font-size: 8px;
    color: #8b6914;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.hwc-photo {
    width: 58px;
    height: 58px;
    margin: 0 auto 8px;
    border-radius: 50%;
    border: 2px solid #d4af37;
    background: linear-gradient(135deg, #e8d5b5, #d4b87a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a67c2e;
    font-size: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.hwc-invite {
    font-size: 7.5px;
    color: #6b5a3e;
    margin-bottom: 2px;
    position: relative;
    z-index: 1;
}

.hwc-guest {
    font-size: 11px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.hwc-couple {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.hwc-couple span {
    display: block;
    font-size: 11px;
    color: #c2943b;
    font-weight: 600;
}

.hwc-details {
    font-size: 7px;
    color: #5c4d32;
    line-height: 1.55;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.hwc-details i {
    color: #c2943b;
    width: 12px;
}

.hwc-qr {
    position: relative;
    z-index: 1;
}

.hwc-qr-box {
    width: 44px;
    height: 44px;
    margin: 0 auto 4px;
    background: #fff;
    border: 1px solid #e8d5b5;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #64748b;
}

.hwc-qr small {
    font-size: 6.5px;
    color: #8b7355;
    display: block;
}

.invite-showcase-float {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.45rem 0.75rem;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #0f172a;
    animation: mockupFloat 4s ease-in-out infinite;
    z-index: 6;
}

.invite-showcase-float-1 { color: #0284c7; }
.invite-showcase-float-2 { color: #059669; animation-delay: -2s; }

/* Hero size (landing) */
.invite-showcase--hero {
    width: 100%;
    max-width: 420px;
    min-height: 500px;
    padding: 1rem 0 2rem;
    margin: 0 auto;
    overflow: visible;
}

.invite-showcase--hero .invite-showcase-phone { top: 2.5rem; }
.invite-showcase--hero .invite-phone-mockup { width: 228px; }
.invite-showcase--hero .invite-phone-mockup .phone-mockup-screen { min-height: 380px; }
.invite-showcase--hero .phone-mockup-bubble { font-size: 11.5px; }
.invite-showcase--hero .phone-mockup-link { font-size: 11px; }
.invite-showcase--hero .invite-wedding-card { top: 3.5rem; width: 252px; }
.invite-showcase--hero .invite-showcase-float-1 { top: 58%; left: 8%; }
.invite-showcase--hero .invite-showcase-float-2 { bottom: 6%; right: 6%; }

@media (min-width: 768px) and (max-width: 991.98px) {
    .invite-showcase--hero {
        min-height: 380px;
        transform: scale(0.88);
        transform-origin: center top;
    }
}

/* Login panel size — side-by-side so phone + card both stay visible */
.invite-showcase--login {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    max-width: 360px;
    min-height: 0;
    padding: 2rem 0 0.5rem;
    margin: 0 auto;
    overflow: visible;
}

.invite-showcase--login .invite-showcase-phone,
.invite-showcase--login .invite-wedding-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex-shrink: 0;
}

.invite-showcase--login .invite-showcase-phone { transform: rotate(-6deg); z-index: 2; }
.invite-showcase--login .invite-wedding-card { transform: rotate(4deg); z-index: 3; margin-top: 0.35rem; }
.invite-showcase--login:hover .invite-showcase-phone { transform: rotate(-3deg) translateY(-3px); }
.invite-showcase--login:hover .invite-wedding-card { transform: rotate(2deg) translateY(-4px); }

.invite-showcase--login .invite-phone-mockup { width: 148px; }
.invite-showcase--login .invite-phone-mockup .phone-mockup-screen { min-height: 250px; }
.invite-showcase--login .phone-mockup-bubble { font-size: 8.5px; }
.invite-showcase--login .phone-mockup-link { font-size: 7.5px; }
.invite-showcase--login .phone-mockup-status,
.invite-showcase--login .phone-mockup-header { font-size: 9px; }
.invite-showcase--login .invite-wedding-card { width: 168px; }
.invite-showcase--login .hwc-heading { font-size: 10px; }
.invite-showcase--login .hwc-photo { width: 42px; height: 42px; font-size: 15px; }
.invite-showcase--login .hwc-couple { font-size: 12px; }
.invite-showcase--login .hwc-guest { font-size: 8.5px; }
.invite-showcase--login .hwc-details { font-size: 5.5px; }
.invite-showcase--login .hwc-qr-box { width: 32px; height: 32px; font-size: 16px; }
.invite-showcase--login .invite-showcase-tag { font-size: 0.5rem; padding: 0.2rem 0.45rem; }
.invite-showcase--login .invite-showcase-tag-sms { top: 0; left: 0; }
.invite-showcase--login .invite-showcase-tag-card { top: 0; right: 0; }
.invite-showcase--login .invite-showcase-float { font-size: 0.55rem; padding: 0.3rem 0.5rem; }
.invite-showcase--login .invite-showcase-float-1 { top: auto; bottom: 0; left: 4%; }
.invite-showcase--login .invite-showcase-float-2 { bottom: 0; right: 2%; }

/* Mobile login peek */
.invite-showcase--mobile {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    max-width: 300px;
    min-height: 0;
    padding: 1.75rem 0 0.25rem;
    margin: 0 auto 1rem;
    overflow: visible;
}

.invite-showcase--mobile .invite-showcase-phone,
.invite-showcase--mobile .invite-wedding-card {
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    flex-shrink: 0;
}

.invite-showcase--mobile .invite-showcase-phone { transform: rotate(-5deg); }
.invite-showcase--mobile .invite-wedding-card { transform: rotate(3deg); margin-top: 0.25rem; }

.invite-showcase--mobile .invite-phone-mockup { width: 128px; }
.invite-showcase--mobile .invite-phone-mockup .phone-mockup-screen { min-height: 210px; }
.invite-showcase--mobile .phone-mockup-bubble { font-size: 7.5px; }
.invite-showcase--mobile .invite-wedding-card { width: 142px; }
.invite-showcase--mobile .hwc-photo { width: 36px; height: 36px; font-size: 13px; }
.invite-showcase--mobile .hwc-heading { font-size: 9px; }
.invite-showcase--mobile .hwc-couple { font-size: 11px; }
.invite-showcase--mobile .invite-showcase-float { display: none; }
.invite-showcase--mobile .invite-showcase-tag { font-size: 0.48rem; }
.invite-showcase--mobile .invite-showcase-tag-sms { left: 0; }
.invite-showcase--mobile .invite-showcase-tag-card { right: 0; }

/* ─── Landing (single-page) ─── */
.landing-page {
    background: var(--nx-surface);
    scroll-behavior: smooth;
}

.landing-nav {
    background: rgba(15, 23, 42, 0.72) !important;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}

.landing-nav-scrolled {
    background: rgba(15, 23, 42, 0.95) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    padding: 0.55rem 0 !important;
}

.landing-nav .navbar-brand {
    font-size: 1.05rem;
    letter-spacing: -0.02em;
}

.brand-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--nx-gradient);
    border-radius: 10px;
    margin-right: 0.5rem;
    font-size: 0.85rem;
    vertical-align: middle;
}

.landing-nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75) !important;
    padding: 0.4rem 0.85rem !important;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}

.landing-nav-link:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
}

/* Hero */
.hero-section {
    background: #0b1120;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: visible;
    padding-top: 5.5rem;
    padding-bottom: 3rem;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 30%, rgba(14, 165, 233, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 70% 50% at 80% 70%, rgba(99, 102, 241, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 50% 40% at 50% 100%, rgba(139, 92, 246, 0.15) 0%, transparent 45%);
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    animation: heroOrbFloat 12s ease-in-out infinite;
}

.hero-orb-1 { width: 320px; height: 320px; background: rgba(14, 165, 233, 0.18); top: 10%; left: -5%; }
.hero-orb-2 { width: 280px; height: 280px; background: rgba(99, 102, 241, 0.16); bottom: 15%; right: -3%; animation-delay: -4s; }
.hero-orb-3 { width: 200px; height: 200px; background: rgba(20, 184, 166, 0.12); top: 50%; left: 45%; animation-delay: -8s; }

@keyframes heroOrbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -24px) scale(1.05); }
}

.hero-inner { position: relative; z-index: 2; overflow: visible; }

.hero-showcase-col {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    overflow: visible;
    padding-top: 0.5rem;
}

@media (max-width: 991.98px) {
    .hero-showcase-col {
        margin-top: 0.5rem;
        padding-bottom: 1rem;
    }

    .hero-showcase-col .invite-showcase--hero {
        min-height: 260px;
        max-width: 300px;
        margin: 0 auto;
        transform: scale(0.78);
        transform-origin: center top;
    }

    .hero-showcase-col .invite-showcase--hero .invite-phone-mockup { width: 180px; }
    .hero-showcase-col .invite-showcase--hero .invite-phone-mockup .phone-mockup-screen { min-height: 300px; }
    .hero-showcase-col .invite-showcase--hero .invite-wedding-card { width: 200px; top: 2.75rem; }
}

@media (max-width: 575.98px) {
    .hero-showcase-col .invite-showcase--hero {
        min-height: 220px;
        max-width: 270px;
        transform: scale(0.68);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-gradient-text {
    background: linear-gradient(135deg, #38bdf8 0%, #818cf8 50%, #c084fc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.78);
    max-width: 540px;
}

.btn-hero-primary {
    background: var(--nx-gradient);
    border: none;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 8px 28px rgba(14, 165, 233, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(99, 102, 241, 0.45);
}

.btn-hero-outline {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
    backdrop-filter: blur(8px);
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.85rem 0.5rem;
    text-align: center;
}

.hero-stat-num {
    display: block;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.04em;
}

.hero-stat-label {
    display: block;
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.15rem;
}

/* Hero mockup card */
.hero-mockup {
    position: relative;
    padding: 2rem 1rem;
}

.hero-mockup-card {
    background: linear-gradient(165deg, #fffef9 0%, #fff 40%, #f8fafc 100%);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.1);
    color: #1e293b;
    text-align: center;
    transform: perspective(800px) rotateY(-6deg) rotateX(4deg);
    transition: transform 0.4s;
}

.hero-mockup:hover .hero-mockup-card {
    transform: perspective(800px) rotateY(-2deg) rotateX(2deg);
}

.mockup-chip {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #be185d;
    background: #fdf2f8;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.mockup-guest {
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.35rem;
}

.mockup-event {
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
    margin-bottom: 1rem;
}

.mockup-meta {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1.25rem;
}

.mockup-qr {
    width: 72px;
    height: 72px;
    margin: 0 auto;
    background: #f1f5f9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #94a3b8;
}

.hero-mockup-float {
    position: absolute;
    background: #fff;
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
    font-weight: 700;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
    color: #0f172a;
    animation: mockupFloat 4s ease-in-out infinite;
}

.hero-mockup-float-1 { top: 8%; right: 0; color: #0284c7; }
.hero-mockup-float-2 { bottom: 12%; left: -5%; color: #059669; animation-delay: -2s; }

@keyframes mockupFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Section headers */
.section-head { margin-bottom: 2.5rem; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--nx-primary);
    background: rgba(14, 165, 233, 0.1);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    margin-bottom: 0.85rem;
}

.section-eyebrow-light {
    color: #7dd3fc;
    background: rgba(14, 165, 233, 0.15);
    border: 1px solid rgba(125, 211, 252, 0.2);
}

.section-title {
    font-size: clamp(1.75rem, 3.5vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.75rem;
}

.section-sub {
    color: var(--nx-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.section-sub-light { color: rgba(255, 255, 255, 0.65); }

/* Features v2 */
.feature-card-v2 {
    background: var(--nx-card);
    border: 1px solid var(--nx-border);
    border-radius: 18px;
    padding: 1.75rem 1.5rem;
    box-shadow: var(--nx-shadow);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.feature-card-v2:hover {
    transform: translateY(-8px);
    box-shadow: var(--nx-shadow-lg);
    border-color: rgba(14, 165, 233, 0.25);
}

.feature-icon-v2 {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.15rem;
}

.feature-icon-indigo { background: linear-gradient(135deg, #6366f1, #8b5cf6); }
.feature-icon-sky { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.feature-icon-teal { background: linear-gradient(135deg, #14b8a6, #2dd4bf); }
.feature-icon-violet { background: linear-gradient(135deg, #7c3aed, #a78bfa); }

/* Pricing section (embedded) */
.pricing-section {
    background: #0b1120;
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 50% 0%, rgba(99, 102, 241, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 90% 80%, rgba(14, 165, 233, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-section > .container { position: relative; z-index: 1; }

.pricing-card-v2 {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    padding: 2rem 1.75rem;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card-v2:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.18);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.pricing-card-v2-featured {
    background: linear-gradient(165deg, rgba(99, 102, 241, 0.18) 0%, rgba(14, 165, 233, 0.1) 100%);
    border-color: rgba(125, 211, 252, 0.35);
    box-shadow: 0 20px 50px rgba(99, 102, 241, 0.2);
    transform: scale(1.02);
}

.pricing-card-v2-featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.pricing-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--nx-gradient);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(99, 102, 241, 0.4);
}

.pricing-plan-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.35rem;
    letter-spacing: -0.02em;
}

.pricing-plan-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.pricing-plan-price { margin-bottom: 1.5rem; }

.pricing-amount {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.03em;
}

.pricing-period {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin-left: 0.15rem;
}

.pricing-plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem;
    flex-grow: 1;
}

.pricing-plan-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-plan-features li:last-child { border-bottom: none; }

.pricing-plan-features li small {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.75rem;
}

.pf-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: #7dd3fc;
}

.btn-pricing-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    font-weight: 600;
}

.btn-pricing-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.pricing-custom-link {
    color: #7dd3fc;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.pricing-custom-link:hover { color: #bae6fd; }

.pricing-empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.btn-contact-pill {
    background: #fff;
    border: 1px solid var(--nx-border);
    border-radius: 50px;
    padding: 0.6rem 1.35rem;
    font-weight: 600;
    color: var(--nx-text);
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s;
}

.btn-contact-pill:hover {
    box-shadow: var(--nx-shadow);
    transform: translateY(-2px);
    color: var(--nx-text);
}

.landing-footer {
    background: var(--nx-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 2.5rem 0;
}

.landing-footer strong { color: #fff; }

/* Agent section */
.agent-section {
    background: linear-gradient(160deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.agent-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 50%, rgba(14, 165, 233, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.agent-banner-v2 {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem 2.75rem;
    backdrop-filter: blur(10px);
}

.agent-badge {
    display: inline-block;
    background: rgba(14, 165, 233, 0.2);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: #7dd3fc;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
}

.lead-sm { font-size: 1.05rem; line-height: 1.65; }

@media (max-width: 991.98px) {
    .hero-section { min-height: auto; padding-top: 6rem; padding-bottom: 4rem; }
    .pricing-card-v2-featured { transform: none; }
    .pricing-card-v2-featured:hover { transform: translateY(-6px); }
}

/* ─── Register / extended auth forms (full page scroll, no clipped form) ─── */
html.login-html.login-html--extended,
html.login-html--extended,
html.login-html--extended body.login-page--extended,
html.login-html.login-html--extended body.register-page {
    height: auto !important;
    min-height: 100%;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overflow: auto !important;
}

.login-page--extended {
    height: auto !important;
    min-height: 100dvh;
    max-height: none !important;
    overflow: visible !important;
}

.login-page--extended .login-wrap {
    height: auto !important;
    min-height: 100dvh;
    max-height: none !important;
    overflow: visible !important;
}

.login-page--extended .login-form-panel,
.login-page--extended .login-form-panel--scroll {
    flex: 1 1 auto;
    width: 100%;
    height: auto !important;
    min-height: auto;
    max-height: none !important;
    overflow: visible !important;
    align-items: stretch;
    justify-content: flex-start;
    padding: 1rem 1.25rem 3rem;
}

@media (min-width: 992px) {
    .login-page--extended .login-form-panel--scroll {
        flex: 0 0 50%;
        min-width: 380px;
        max-width: 520px;
        padding: 1.5rem 1.75rem 3rem;
    }

    .login-page--extended .login-brand-panel {
        position: sticky;
        top: 0;
        align-self: flex-start;
        min-height: 100dvh;
        max-height: 100dvh;
        overflow-y: auto;
    }
}

.login-page--extended .login-card-box,
.login-page--extended .login-card-box--extended {
    width: 100%;
    max-width: 100%;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    justify-content: flex-start;
    padding: 1.25rem 1.35rem 1.5rem;
    margin: 0;
}

@media (max-width: 991.98px) {
    .login-page--extended .login-wrap {
        flex-direction: column;
    }

    .login-page--extended .login-form-panel--scroll {
        padding: 0.75rem 1rem 3rem;
    }
}

/* Register page — standalone (not locked to login 100dvh / overflow:hidden) */
html.register-html,
html.register-html body.register-page {
    height: auto !important;
    min-height: 100%;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
}

body.register-page.login-page {
    display: block !important;
    align-items: stretch !important;
    margin: 0;
    min-height: 100dvh;
    height: auto !important;
    max-height: none !important;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    background: #0b1120;
    position: relative;
    padding-bottom: 2rem;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    -webkit-font-smoothing: antialiased;
}

.register-page .login-bg-shapes {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.register-page .register-wrap {
    display: block !important;
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    position: relative;
    z-index: 1;
}

.register-page .register-form-panel {
    display: flex !important;
    flex-direction: column;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
    justify-content: flex-start !important;
    padding: 1rem 1rem 2.5rem !important;
    background: transparent !important;
    box-shadow: none !important;
}

@media (min-width: 768px) {
    .register-page .register-form-panel {
        padding: 1.5rem 2rem 3rem !important;
    }
}

.register-page .login-card-box,
.register-page .login-card-box--extended {
    width: 100%;
    max-width: 680px !important;
    margin: 0 auto !important;
    max-height: none !important;
    height: auto !important;
    overflow: visible !important;
    justify-content: flex-start;
    border-radius: 16px;
    background: #fff;
    padding: 1.25rem 1.35rem 1.5rem;
    box-shadow:
        0 4px 6px rgba(15, 23, 42, 0.04),
        0 24px 48px rgba(15, 23, 42, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
}

.register-page .login-card-header {
    margin-bottom: 0.75rem;
}

.register-page .login-card-header h3 {
    font-size: 1.35rem;
}

.register-page .register-section {
    margin-bottom: 0.85rem;
}

.register-page .register-section-title {
    margin-bottom: 0.45rem;
}

.register-page .register-mobile-head {
    display: flex !important;
    margin-bottom: 0.75rem;
}

@media (min-width: 992px) {
    .register-page .register-package-list {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0.55rem;
    }

    .register-page .register-package-row {
        flex-direction: column;
        align-items: stretch;
        padding: 0.65rem 0.75rem;
        min-height: 100%;
    }

    .register-page .register-package-row-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.2rem;
    }

    .register-page .register-package-row-price {
        text-align: left;
    }

    .register-page .register-package-row-meta {
        margin-top: 0.35rem;
    }
}

.register-page .register-package-row-name,
.register-page .register-package-row-desc,
.register-page .register-package-row-meta {
    display: block;
    line-height: 1.3;
}

.register-page .register-package-row-body {
    min-width: 0;
}

.register-steps {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.register-step {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.register-step-active {
    color: #c2410c;
}

.register-step-done {
    color: #16a34a;
}

.register-step-num {
    width: 1.35rem;
    height: 1.35rem;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    background: #e2e8f0;
    color: #64748b;
}

.register-step-active .register-step-num {
    background: linear-gradient(105deg, #FFB347, #FF8C42);
    color: #1e2a3a;
}

.register-step-done .register-step-num {
    background: #dcfce7;
    color: #16a34a;
}

.register-step-line {
    flex: 1;
    min-width: 1.5rem;
    height: 2px;
    background: #e2e8f0;
    border-radius: 1px;
}

.register-step-line.is-done {
    background: linear-gradient(90deg, #86efac, #FF8C42);
}

.register-section {
    margin-bottom: 1rem;
}

.register-section-title {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 0.6rem;
}

.register-package-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.register-package-row {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    cursor: pointer;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.55rem 0.7rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.register-package-row:hover {
    border-color: #fdba74;
}

.register-package-row.is-selected {
    border-color: #FF8C42;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.12), #fff);
    box-shadow: 0 4px 14px rgba(255, 140, 46, 0.15);
}

.register-package-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.register-package-row-check {
    margin-top: 0.15rem;
    width: 1.15rem;
    height: 1.15rem;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: transparent;
    flex-shrink: 0;
}

.register-package-row.is-selected .register-package-row-check {
    border-color: #FF8C42;
    background: linear-gradient(105deg, #FFB347, #FF8C42);
    color: #1e2a3a;
}

.register-package-row-body {
    flex: 1;
    min-width: 0;
}

.register-package-row-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.register-package-row-name {
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
    line-height: 1.2;
}

.register-package-row-desc {
    display: block;
    font-size: 0.68rem;
    color: #64748b;
    line-height: 1.25;
    margin-top: 0.1rem;
}

.register-package-row-price {
    font-weight: 800;
    font-size: 0.82rem;
    color: #16a34a;
    text-align: right;
    white-space: nowrap;
    flex-shrink: 0;
}

.register-package-row-price small {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: #94a3b8;
}

.register-package-row-meta {
    display: block;
    font-size: 0.65rem;
    color: #94a3b8;
    margin-top: 0.15rem;
}

.register-package-row-meta i {
    color: #ea580c;
    margin-right: 0.1rem;
}

.register-form .login-field {
    margin-bottom: 0.5rem;
}

.register-form .register-section {
    margin-bottom: 0.85rem;
}

.register-info-note {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    font-size: 0.78rem;
    line-height: 1.45;
    color: #475569;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 0.65rem 0.75rem;
    margin-top: 0.5rem;
}

.register-info-note i {
    color: #ea580c;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

.register-payment-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f0fdf4, #fff7ed);
    border: 1px solid #bbf7d0;
    border-radius: 14px;
    padding: 1rem 1.1rem;
    margin-bottom: 1rem;
}

.register-payment-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748b;
}

.register-payment-amount {
    display: block;
    font-size: 1.35rem;
    font-weight: 800;
    color: #16a34a;
}

.register-payment-ref {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.7);
    padding: 0.2rem 0.45rem;
    border-radius: 6px;
}

.register-bank-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1rem;
    margin-top: 0.5rem;
    font-size: 0.85rem;
}

.register-selcom-alert {
    background: linear-gradient(135deg, #f0fdf4, #ecfdf5) !important;
    border-left: 4px solid #16a34a !important;
}

.login-page--extended .login-form .form-select.login-input {
    padding-left: 0.85rem;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    min-height: 42px;
}

/* ─── Admin shell ─── */
.wrapper { background: var(--nx-surface); }

.main-sidebar {
    background: var(--nx-gradient-dark) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.06) !important;
    display: flex !important;
    flex-direction: column !important;
    height: 100vh !important;
    max-width: 100%;
    overflow-x: hidden !important;
    overflow-y: hidden !important;
}

.main-sidebar::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.main-sidebar .sidebar.sidebar-modern {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    padding: 0 !important;
    position: relative;
    z-index: 1;
}

.sidebar-nav-scroll {
    flex: 1 1 auto;
    min-height: 0;
    max-width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0.5rem 0 0.75rem;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
}

.main-sidebar .sidebar-nav,
.sidebar-dark-primary .nav-sidebar {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.sidebar-nav-scroll::-webkit-scrollbar {
    width: 5px;
}

.sidebar-nav-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.sidebar-nav-scroll::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}

.sidebar-nav-scroll::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.32);
}

.sidebar-nav-heading {
    margin: 1rem 1.25rem 0.35rem;
    padding: 0;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.48);
}

.sidebar-nav-heading:first-child {
    margin-top: 0.25rem;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active {
    background: var(--nx-gradient) !important;
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
    border-radius: var(--nx-radius-sm);
    margin: 0 0.65rem;
    width: calc(100% - 1.3rem);
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link.active .nav-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.sidebar-dark-primary .nav-sidebar > .nav-item {
    max-width: 100%;
    overflow: hidden;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link {
    border-radius: var(--nx-radius-sm);
    margin: 2px 0.65rem;
    width: calc(100% - 1.3rem);
    max-width: calc(100% - 1.3rem);
    box-sizing: border-box;
    padding: 0.55rem 0.75rem;
    transition: background 0.2s, transform 0.15s;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.sidebar-dark-primary .nav-sidebar > .nav-item > .nav-link:hover .nav-icon {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
}

.sidebar-dark-primary .nav-sidebar .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.85rem;
    height: 1.85rem;
    margin-right: 0.65rem !important;
    margin-left: 0 !important;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    transition: background 0.2s, color 0.2s;
}

.sidebar-dark-primary .nav-sidebar .nav-link p {
    flex: 1;
    min-width: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.35rem;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    overflow: hidden;
}

.sidebar-dark-primary .nav-sidebar .nav-link p .badge {
    position: static;
    float: none !important;
    flex-shrink: 0;
    margin-left: auto;
}

.brand-link {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 1.1rem 1rem 1.25rem !important;
    text-decoration: none !important;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.brand-link .brand-logo-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.5rem;
    border-radius: 12px;
    background: var(--nx-gradient);
    box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.brand-link .brand-logo-icon {
    font-size: 1.1rem;
    color: #fff;
}

.brand-link .brand-product {
    display: block;
    font-weight: 800;
    font-size: 1.05rem;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.brand-link .brand-company {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.42);
    margin-top: 0.3rem;
    line-height: 1.35;
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.sidebar-company-footer {
    flex-shrink: 0;
    position: static;
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
    text-align: center;
    line-height: 1.35;
}

.sidebar-footer-year {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.3);
}

.sidebar-footer-company {
    display: block;
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.15rem;
}

.sidebar-mini.sidebar-collapse .sidebar-nav-heading,
.sidebar-mini.sidebar-collapse .sidebar-footer-company,
.sidebar-mini.sidebar-collapse .brand-company,
.sidebar-mini.sidebar-collapse .brand-product {
    display: none;
}

.sidebar-mini.sidebar-collapse .brand-logo-wrap {
    margin-bottom: 0;
}

.sidebar-mini.sidebar-collapse .sidebar-company-footer {
    padding: 0.5rem 0.25rem;
}

.main-header.navbar {
    background: #fff !important;
    border-bottom: 1px solid var(--nx-border) !important;
    box-shadow: 0 1px 8px rgba(15, 23, 42, 0.04) !important;
}

.main-header .nav-link { color: var(--nx-muted) !important; font-weight: 500; }

.navbar-info-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.15rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
}

.navbar-info-pill--package {
    background: rgba(15, 23, 42, 0.06);
    color: var(--nx-text);
    border: 1px solid var(--nx-border);
}

.navbar-info-pill--credits {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border: 1px solid rgba(34, 197, 94, 0.25);
}

.navbar-info-pill--credits:hover {
    background: rgba(34, 197, 94, 0.16);
    color: #166534;
}

.navbar-credits-pulse {
    animation: navbarCreditsPulse 0.55s ease;
}

@keyframes navbarCreditsPulse {
    0% { opacity: 1; transform: scale(1); }
    40% { opacity: 0.65; transform: scale(1.04); }
    100% { opacity: 1; transform: scale(1); }
}

@media (max-width: 575.98px) {
    .navbar-info-pill {
        padding: 0.3rem 0.55rem;
        font-size: 0.75rem;
    }
}

.content-wrapper {
    background: var(--nx-surface) !important;
}

.content-header {
    background: transparent;
    padding: 1.25rem 0 0.5rem;
}

.content-header h1 {
    font-weight: 800;
    font-size: 1.65rem;
    letter-spacing: -0.02em;
    color: var(--nx-text);
}

.page-subtitle {
    font-size: 0.875rem;
    color: var(--nx-muted);
    margin-top: 0.15rem;
}

.main-footer {
    background: #fff;
    border-top: 1px solid var(--nx-border);
    color: var(--nx-muted);
    font-size: 0.85rem;
    padding: 1rem;
}

.main-footer .footer-company {
    font-weight: 700;
    color: var(--nx-text);
    font-size: 0.75rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* ─── Cards & components ─── */
.card {
    border-radius: var(--nx-radius);
    border: 1px solid var(--nx-border);
    box-shadow: var(--nx-shadow);
    overflow: hidden;
}

.card-header {
    background: #fff;
    border-bottom: 1px solid var(--nx-border);
    font-weight: 700;
}

.card-outline.card-primary { border-top: 3px solid var(--nx-primary) !important; }
.card-outline.card-info { border-top: 3px solid var(--nx-secondary) !important; }
.card-outline.card-success { border-top: 3px solid var(--nx-accent) !important; }
.card-outline.card-warning { border-top: 3px solid #f59e0b !important; }

.small-box {
    border-radius: var(--nx-radius);
    overflow: hidden;
    border: none;
    box-shadow: var(--nx-shadow);
    transition: transform 0.2s;
}

.small-box:hover { transform: translateY(-2px); }

.small-box .inner h3 {
    font-weight: 800;
    letter-spacing: -0.02em;
}

.info-box {
    border-radius: var(--nx-radius);
    box-shadow: var(--nx-shadow);
    border: 1px solid var(--nx-border);
    background: #fff;
}

.btn-primary {
    background: var(--nx-gradient);
    border: none;
    font-weight: 600;
    border-radius: var(--nx-radius-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0284c7 0%, #4f46e5 100%);
    border: none;
}

.btn-outline-primary {
    border-color: var(--nx-primary);
    color: var(--nx-primary-dark);
    border-radius: var(--nx-radius-sm);
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: var(--nx-primary);
    border-color: var(--nx-primary);
}

.alert {
    border-radius: var(--nx-radius-sm);
    border: none;
    font-weight: 500;
}

.alert-success { background: #ecfdf5; color: #065f46; }
.alert-danger { background: #fef2f2; color: #991b1b; }
.alert-warning { background: #fffbeb; color: #92400e; }
.alert-info { background: #eff6ff; color: #1e40af; }

.badge { font-weight: 600; border-radius: 6px; padding: 0.35em 0.65em; }

.table { --bs-table-bg: transparent; }
.table thead th {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--nx-muted);
    border-bottom-width: 1px;
}

.datatable { width: 100% !important; }

/* Admin customers table — compact to avoid horizontal scroll */
.admin-customers-table {
    font-size: 0.78rem;
}
.admin-customers-table thead th {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;
    padding: 0.4rem 0.45rem;
}
.admin-customers-table tbody td {
    padding: 0.35rem 0.45rem;
    vertical-align: middle;
}
.admin-customers-table .col-email {
    max-width: 11rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.admin-customers-table .badge {
    font-size: 0.65rem;
    font-weight: 600;
}
.admin-customers-actions .btn {
    padding: 0.2rem 0.4rem;
    font-size: 0.72rem;
    line-height: 1.2;
}
.admin-customers-table + .dataTables_wrapper,
.card-body:has(.admin-customers-table) .dataTables_wrapper {
    font-size: 0.78rem;
}
.card-body:has(.admin-customers-table) .dataTables_wrapper .dataTables_length,
.card-body:has(.admin-customers-table) .dataTables_wrapper .dataTables_filter,
.card-body:has(.admin-customers-table) .dataTables_wrapper .dataTables_info,
.card-body:has(.admin-customers-table) .dataTables_wrapper .dataTables_paginate {
    font-size: 0.78rem;
}

/* SMS phone preview mockup */
.phone-mockup {
    width: 260px;
    background: #1a1a1a;
    border-radius: 36px;
    padding: 12px 10px 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25), inset 0 0 0 2px #333;
    position: relative;
}
.phone-mockup-notch {
    width: 90px;
    height: 22px;
    background: #1a1a1a;
    border-radius: 0 0 16px 16px;
    margin: -4px auto 8px;
    position: relative;
    z-index: 2;
}
.phone-mockup-screen {
    background: #f2f2f7;
    border-radius: 24px;
    overflow: hidden;
    min-height: 420px;
    display: flex;
    flex-direction: column;
}
.phone-mockup-status {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 16px 4px;
    font-size: 11px;
    font-weight: 600;
    color: #111;
}
.phone-mockup-icons { font-size: 10px; color: #333; }
.phone-mockup-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 12px;
    background: #f8f8f8;
    border-bottom: 1px solid #e5e5ea;
    font-size: 13px;
}
.phone-mockup-header .fa-chevron-left { color: #007aff; font-size: 12px; }
.phone-mockup-contact { line-height: 1.2; }
.phone-mockup-contact strong { display: block; font-size: 14px; }
.phone-mockup-contact small { color: #8e8e93; font-size: 11px; }
.phone-mockup-messages {
    flex: 1;
    padding: 16px 14px;
    overflow-y: auto;
}
.phone-mockup-date {
    text-align: center;
    font-size: 11px;
    color: #8e8e93;
    margin-bottom: 12px;
}
.phone-mockup-bubble {
    background: #e5e5ea;
    color: #111;
    border-radius: 18px 18px 18px 4px;
    padding: 10px 14px;
    font-size: 13px;
    line-height: 1.45;
    white-space: pre-wrap;
    word-break: break-word;
    max-width: 92%;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.sms-confirm-details {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1.25rem;
}

.guest-picker-table thead th { white-space: nowrap; }
.guest-picker-table .dataTables_wrapper .row:first-child { padding: 0.75rem 1rem 0; }
.guest-picker-table + .dataTables_wrapper,
.table-responsive .dataTables_wrapper { padding: 0 1rem 0.75rem; }

.modal-content {
    border-radius: var(--nx-radius);
    border: none;
    box-shadow: var(--nx-shadow-lg);
}

.modal-header {
    border-bottom: 1px solid var(--nx-border);
    background: var(--nx-surface);
}

.form-control, .form-select {
    border-radius: var(--nx-radius-sm);
    border-color: var(--nx-border);
}

.form-control:focus, .form-select:focus {
    border-color: var(--nx-primary);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.bg-purple { background: linear-gradient(135deg, #6366f1, #8b5cf6) !important; color: #fff; }
.bg-teal { background: linear-gradient(135deg, #14b8a6, #0ea5e9) !important; color: #fff; }

/* Sample gallery (keep) */
.sample-card .sample-preview,
.sample-pick-card .sample-preview {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sample-card .sample-preview img,
.sample-pick-card .sample-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-pick-card {
    border: 2px solid var(--nx-border);
    border-radius: var(--nx-radius);
    overflow: hidden;
    transition: border-color 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.sample-pick-card:hover {
    border-color: var(--nx-primary);
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.2);
}

.event-sample-option {
    border: 2px solid var(--nx-border);
    border-radius: var(--nx-radius-sm);
    padding: 8px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}

.event-sample-option:hover,
.event-sample-option.selected {
    border-color: var(--nx-primary);
    background: rgba(14, 165, 233, 0.06);
}

.sample-preview-sm {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--nx-surface);
    border-radius: 6px;
    overflow: hidden;
}

.sample-preview-sm img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sample-gallery-min { min-height: 100px; }

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-pill.active { background: #dcfce7; color: #166534; }
.status-pill.inactive { background: #f1f5f9; color: #64748b; }

@media (max-width: 768px) {
    .small-box .inner h3 { font-size: 1.5rem; }
    .content-header h1 { font-size: 1.35rem; }
}

/* ─── WhatsApp floating chat ─── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25d366;
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50%;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    animation: wa-pulse 2.5s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 1.85rem;
    line-height: 1;
}

.whatsapp-float:hover {
    color: #fff !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
    animation: none;
}

@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45); }
    50% { box-shadow: 0 6px 32px rgba(37, 211, 102, 0.65), 0 0 0 8px rgba(37, 211, 102, 0.15); }
}

@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 52px;
        height: 52px;
    }
    .whatsapp-float i { font-size: 1.75rem; }
}
