:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --dark: #0f172a;
    --muted: #64748b;
    --light: #f8fafc;
    --soft-blue: #eff6ff;
    --border: rgba(15, 23, 42, .1);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dark);
    background: #fff;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.navbar {
    min-height: 76px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    color: var(--dark);
    font-size: 1.38rem;
    text-decoration: none;
}

    .brand:hover {
        color: var(--dark);
    }

.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(37, 99, 235, .22);
}

.nav-link {
    font-size: 17px;
    font-weight: 750;
    color: #334155;
    margin-left: 12px;
}

    .nav-link:hover {
        color: var(--primary);
    }

.btn-primary {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 16px 30px rgba(37, 99, 235, .22);
}

    .btn-primary:hover {
        background: var(--primary-dark);
        border-color: var(--primary-dark);
    }

.hero {
    padding: 96px 0 82px;
    background: radial-gradient(circle at 15% 15%, rgba(37,99,235,.14), transparent 30%), radial-gradient(circle at 88% 8%, rgba(15,23,42,.07), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

.eyebrow {
    color: var(--primary);
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 13px;
}

.hero h1 {
    font-size: clamp(42px, 6vw, 72px);
    line-height: 1.02;
    letter-spacing: -2.4px;
    font-weight: 900;
    margin: 16px 0 22px;
}

.hero-text,
.section-text {
    font-size: 19px;
    color: var(--muted);
    line-height: 1.7;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-points {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 22px;
    color: #475569;
    font-weight: 700;
}

.screenshot-frame {
    position: relative;
    border-radius: 28px;
    padding: 10px;
    background: rgba(255,255,255,.72);
    border: 1px solid rgba(15,23,42,.08);
    box-shadow: 0 30px 80px rgba(15,23,42,.16);
}

.hero-screen {
    transform: perspective(1100px) rotateY(-4deg) rotateX(2deg);
    transform-origin: center;
}

.product-screenshot {
    width: 100%;
    display: block;
    border-radius: 20px;
    border: 1px solid rgba(15,23,42,.08);
    background: #fff;
}

.trust-bar {
    padding: 22px 0;
    background: #fff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.trust-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 26px;
    color: #475569;
}

    .trust-wrap span {
        color: var(--muted);
        font-weight: 700;
    }

    .trust-wrap b {
        font-weight: 850;
    }

.section {
    padding: 86px 0;
}

.screenshot-section {
    background: #fff;
}

.alt-section,
.feature-grid-section,
.pricing-section {
    background: var(--light);
}

.section h2 {
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: -1.5px;
    font-weight: 900;
    margin: 14px 0 18px;
}

.section-heading {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 42px;
}

    .section-heading h2 {
        font-size: clamp(32px, 4vw, 50px);
        letter-spacing: -1.4px;
        font-weight: 900;
        margin-top: 12px;
    }

    .section-heading p {
        color: var(--muted);
        font-size: 17px;
    }

.feature-checks {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 26px;
}

    .feature-checks span {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 9px 14px;
        background: var(--soft-blue);
        color: #1e3a8a;
        font-weight: 750;
        border: 1px solid rgba(37, 99, 235, .12);
    }

.feature-card,
.price-card {
    height: 100%;
    padding: 28px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .06);
}

    .feature-card h3,
    .price-card h3 {
        font-weight: 850;
        margin-bottom: 10px;
    }

    .feature-card p,
    .price-card p {
        color: var(--muted);
    }

.pricing-note {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: -18px 0 32px;
}

    .pricing-note span {
        padding: 9px 14px;
        border-radius: 999px;
        background: #fff;
        border: 1px solid var(--border);
        color: #334155;
        font-weight: 750;
    }

.price-card {
    position: relative;
}

    .price-card.featured {
        border-color: rgba(37,99,235,.45);
        transform: translateY(-8px);
    }

.popular {
    position: absolute;
    top: 18px;
    right: 18px;
    background: var(--primary);
    color: white;
    padding: 5px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 850;
}

.price {
    font-size: 42px;
    font-weight: 900;
    margin: 18px 0 8px;
}

    .price span {
        font-size: 16px;
        color: var(--muted);
    }

.price-card ul {
    padding-left: 18px;
    color: #475569;
    line-height: 1.9;
}

.demo-section {
    background: #fff;
}

.demo-video-placeholder {
    position: relative;
    max-width: 980px;
    margin: 0 auto;
    border-radius: 30px;
    padding: 10px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: 0 30px 80px rgba(15, 23, 42, .16);
}

.play-badge {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: rgba(37, 99, 235, .92);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 18px 40px rgba(37, 99, 235, .28);
}

.cta-section {
    padding-top: 40px;
}

.cta-card {
    text-align: center;
    color: white;
    border-radius: 30px;
    padding: 62px 24px;
    background: radial-gradient(circle at 20% 20%, rgba(255,255,255,.18), transparent 26%), linear-gradient(135deg, #0f172a, #2563eb);
}

    .cta-card h2 {
        font-size: clamp(32px, 4vw, 52px);
        font-weight: 900;
    }

    .cta-card p {
        opacity: .86;
        font-size: 18px;
    }

.contact-box {
    max-width: 540px;
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    background: var(--light);
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--border);
    color: var(--muted);
}

@media (max-width: 991px) {
    .hero-screen {
        transform: none;
    }

    .nav-link {
        margin-left: 0;
        padding: 10px 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding-top: 58px;
    }

    .section {
        padding: 62px 0;
    }

    .price-card.featured {
        transform: none;
    }

    .hero h1 {
        letter-spacing: -1.4px;
    }

    .screenshot-frame {
        border-radius: 20px;
        padding: 7px;
    }

    .product-screenshot {
        border-radius: 15px;
    }
}


/* Hero product screenshot slideshow */
.hero-carousel {
    position: relative;
}

    .hero-carousel .screenshot-frame {
        overflow: hidden;
    }

    .hero-carousel .carousel-item {
        transition: opacity .8s ease-in-out;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 44px;
        height: 44px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 999px;
        background: rgba(15, 23, 42, .55);
        opacity: .95;
    }

    .hero-carousel .carousel-control-prev {
        left: 18px;
    }

    .hero-carousel .carousel-control-next {
        right: 18px;
    }

    .hero-carousel .carousel-control-prev-icon,
    .hero-carousel .carousel-control-next-icon {
        width: 18px;
        height: 18px;
    }

.hero-carousel-labels {
    margin-top: 18px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

    .hero-carousel-labels span {
        padding: 7px 12px;
        border-radius: 999px;
        background: #ffffff;
        border: 1px solid rgba(15, 23, 42, .10);
        color: #475569;
        font-size: 13px;
        font-weight: 700;
        box-shadow: 0 8px 20px rgba(15, 23, 42, .06);
    }

@media (max-width: 768px) {
    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 38px;
        height: 38px;
    }

    .hero-carousel .carousel-control-prev {
        left: 10px;
    }

    .hero-carousel .carousel-control-next {
        right: 10px;
    }
}


/* Hero slideshow large rectangular slide style */
.hero .container {
    max-width: 1320px;
}

.hero-row {
    min-height: 620px;
}

.hero-carousel {
    width: min(780px, 100%);
    margin-left: auto;
}

    .hero-carousel .hero-screen {
        transform: none;
        border-radius: 18px;
        padding: 8px;
        background: #ffffff;
        overflow: hidden;
    }

    .hero-carousel .carousel-inner {
        aspect-ratio: 16 / 10;
    }

    .hero-carousel .carousel-item {
        height: 100%;
        transition: transform .65s ease-in-out;
    }

    .hero-carousel .product-screenshot {
        width: 100%;
        height: 100%;
        object-fit: contain;
        border-radius: 10px;
        background: #ffffff;
    }

    .hero-carousel .carousel-control-prev,
    .hero-carousel .carousel-control-next {
        width: 46px;
        height: 46px;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 999px;
        background: rgba(15, 23, 42, .62);
        opacity: .95;
    }

    .hero-carousel .carousel-control-prev {
        left: 16px;
    }

    .hero-carousel .carousel-control-next {
        right: 16px;
    }

.hero-carousel-labels {
    margin-top: 18px;
}

@media (max-width: 991.98px) {
    .hero-row {
        min-height: auto;
    }

    .hero-carousel {
        width: 100%;
        margin-left: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-carousel .carousel-inner {
        aspect-ratio: 4 / 3;
    }
}

.page-hero {
    padding: 88px 0 70px;
    background: radial-gradient(circle at 12% 20%, rgba(37,99,235,.12), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.compact-hero {
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 850;
    max-width: 850px;
    margin: 14px auto 18px;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.large-feature-card {
    min-height: 250px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    font-size: 24px;
    margin-bottom: 18px;
}

.price-page-card {
    min-height: 100%;
}

.pricing-faq {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

    .pricing-faq h2 {
        text-align: center;
        font-weight: 850;
        letter-spacing: -1px;
    }

.faq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    height: 100%;
}

    .faq-card h3 {
        font-size: 20px;
        font-weight: 800;
    }

    .faq-card p {
        color: var(--muted);
        margin-bottom: 0;
    }

.salon-page-hero {
    padding-top: 76px;
}

.contact-panel,
.beta-form {
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
    height: 100%;
}

    .contact-panel h2,
    .beta-form h2 {
        font-weight: 850;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .contact-panel p {
        color: var(--muted);
        line-height: 1.7;
    }

.contact-method {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

    .contact-method span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .07em;
        font-weight: 800;
        margin-bottom: 5px;
    }

.beta-form .form-control,
.beta-form .form-select {
    min-height: 48px;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 56px 0 44px;
    }
}

.page-hero {
    padding: 88px 0 70px;
    background: radial-gradient(circle at 12% 20%, rgba(37,99,235,.12), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.compact-hero {
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 850;
    max-width: 850px;
    margin: 14px auto 18px;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.large-feature-card {
    min-height: 250px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    font-size: 24px;
    margin-bottom: 18px;
}

.price-page-card {
    min-height: 100%;
}

.pricing-faq {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

    .pricing-faq h2 {
        text-align: center;
        font-weight: 850;
        letter-spacing: -1px;
    }

.faq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    height: 100%;
}

    .faq-card h3 {
        font-size: 20px;
        font-weight: 800;
    }

    .faq-card p {
        color: var(--muted);
        margin-bottom: 0;
    }

.salon-page-hero {
    padding-top: 76px;
}

.contact-panel,
.beta-form {
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
    height: 100%;
}

    .contact-panel h2,
    .beta-form h2 {
        font-weight: 850;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .contact-panel p {
        color: var(--muted);
        line-height: 1.7;
    }

.contact-method {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

    .contact-method span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .07em;
        font-weight: 800;
        margin-bottom: 5px;
    }

.beta-form .form-control,
.beta-form .form-select {
    min-height: 48px;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 56px 0 44px;
    }
}


/* Request Beta page */
.beta-hero {
    padding-bottom: 58px;
}

.request-beta-section {
    padding-top: 54px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.request-info-card {
    border-radius: 30px;
    padding: 34px;
    color: #ffffff;
    background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.18), transparent 28%), linear-gradient(135deg, #0f172a, #2563eb);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

    .request-info-card .eyebrow {
        color: #bfdbfe;
    }

    .request-info-card h2 {
        font-size: clamp(30px, 4vw, 44px);
        font-weight: 850;
        letter-spacing: -1.2px;
        margin: 14px 0 14px;
    }

    .request-info-card p {
        color: rgba(255,255,255,.82);
        line-height: 1.7;
    }

.next-step-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

    .next-step-list div {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 15px;
        border-radius: 18px;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.12);
    }

    .next-step-list b {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .next-step-list span {
        color: rgba(255,255,255,.86);
    }

.request-note {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
}

.request-beta-form {
    height: auto;
}

.form-intro {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.request-beta-form .form-label {
    font-weight: 700;
    color: #334155;
}

.request-beta-form textarea.form-control {
    min-height: 120px;
}

.form-small-text {
    color: var(--muted);
    font-weight: 600;
}

.page-hero {
    padding: 88px 0 70px;
    background: radial-gradient(circle at 12% 20%, rgba(37,99,235,.12), transparent 28%), linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.compact-hero {
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.05;
    letter-spacing: -1.8px;
    font-weight: 850;
    max-width: 850px;
    margin: 14px auto 18px;
}

.page-hero p {
    max-width: 760px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.large-feature-card {
    min-height: 250px;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #eff6ff;
    font-size: 24px;
    margin-bottom: 18px;
}

.price-page-card {
    min-height: 100%;
}

.pricing-faq {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

    .pricing-faq h2 {
        text-align: center;
        font-weight: 850;
        letter-spacing: -1px;
    }

.faq-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 24px;
    height: 100%;
}

    .faq-card h3 {
        font-size: 20px;
        font-weight: 800;
    }

    .faq-card p {
        color: var(--muted);
        margin-bottom: 0;
    }

.salon-page-hero {
    padding-top: 76px;
}

.contact-panel,
.beta-form {
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px;
    background: #fff;
    box-shadow: 0 18px 48px rgba(15, 23, 42, .07);
    height: 100%;
}

    .contact-panel h2,
    .beta-form h2 {
        font-weight: 850;
        letter-spacing: -1px;
        margin-bottom: 14px;
    }

    .contact-panel p {
        color: var(--muted);
        line-height: 1.7;
    }

.contact-method {
    padding: 18px 0;
    border-top: 1px solid var(--border);
}

    .contact-method span {
        display: block;
        color: var(--muted);
        font-size: 13px;
        text-transform: uppercase;
        letter-spacing: .07em;
        font-weight: 800;
        margin-bottom: 5px;
    }

.beta-form .form-control,
.beta-form .form-select {
    min-height: 48px;
    border-radius: 14px;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 56px 0 44px;
    }
}


/* Request Beta page */
.beta-hero {
    padding-bottom: 58px;
}

.request-beta-section {
    padding-top: 54px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.request-info-card {
    border-radius: 30px;
    padding: 34px;
    color: #ffffff;
    background: radial-gradient(circle at 20% 15%, rgba(255,255,255,.18), transparent 28%), linear-gradient(135deg, #0f172a, #2563eb);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

    .request-info-card .eyebrow {
        color: #bfdbfe;
    }

    .request-info-card h2 {
        font-size: clamp(30px, 4vw, 44px);
        font-weight: 850;
        letter-spacing: -1.2px;
        margin: 14px 0 14px;
    }

    .request-info-card p {
        color: rgba(255,255,255,.82);
        line-height: 1.7;
    }

.next-step-list {
    display: grid;
    gap: 14px;
    margin: 26px 0;
}

    .next-step-list div {
        display: flex;
        gap: 14px;
        align-items: flex-start;
        padding: 15px;
        border-radius: 18px;
        background: rgba(255,255,255,.1);
        border: 1px solid rgba(255,255,255,.12);
    }

    .next-step-list b {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        background: rgba(255,255,255,.18);
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex: 0 0 auto;
    }

    .next-step-list span {
        color: rgba(255,255,255,.86);
    }

.request-note {
    border-radius: 18px;
    padding: 16px;
    background: rgba(255,255,255,.12);
    color: rgba(255,255,255,.9);
}

.request-beta-form {
    height: auto;
}

.form-intro {
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 22px;
}

.request-beta-form .form-label {
    font-weight: 700;
    color: #334155;
}

.request-beta-form textarea.form-control {
    min-height: 120px;
}

.form-small-text {
    color: var(--muted);
    font-weight: 600;
}


/* Contact vs Request Beta clarification */
.simple-contact-card {
    height: 100%;
}

    .simple-contact-card a {
        color: var(--primary);
        text-decoration: none;
    }

        .simple-contact-card a:hover {
            text-decoration: underline;
        }

.contact-beta-line {
    display: inline-block;
    margin-top: 8px;
    color: var(--muted);
}

    .contact-beta-line a {
        color: var(--primary);
        font-weight: 800;
        text-decoration: none;
    }

        .contact-beta-line a:hover {
            text-decoration: underline;
        }


/* Request Beta wizard polish */
.registration-style-section {
    position: relative;
}

.wizard-form-card {
    padding: 38px !important;
    border-radius: 30px !important;
    overflow: hidden;
}

.registration-form-header {
    padding-bottom: 22px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
}

    .registration-form-header h2 {
        margin-top: 8px;
        margin-bottom: 8px;
        font-weight: 850;
        letter-spacing: -1px;
    }

    .registration-form-header p {
        color: var(--muted);
        margin-bottom: 0;
        line-height: 1.7;
    }

.polished-guide-card {
    position: sticky;
    top: 96px;
    padding: 36px !important;
    overflow: hidden;
}

    .polished-guide-card:before {
        content: "";
        position: absolute;
        inset: -80px auto auto -80px;
        width: 190px;
        height: 190px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .16);
    }

.guide-timeline {
    display: grid;
    gap: 16px;
    margin: 28px 0;
    position: relative;
}

.guide-item {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: rgba(255,255,255,.11);
    border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(10px);
}

.guide-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.16);
    font-size: 22px;
}

.guide-item h3 {
    color: #fff;
    font-size: 16px;
    font-weight: 850;
    margin: 0 0 5px;
}

.guide-item p {
    color: rgba(255,255,255,.78);
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
}

.guide-highlight {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
}

.wizard-progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 10px;
    border-radius: 999px;
    background: #f1f5f9;
    margin-bottom: 28px;
}

.wizard-dot {
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #64748b;
    padding: 10px 12px;
    font-weight: 800;
    transition: all .2s ease;
}

    .wizard-dot.active {
        background: #fff;
        color: var(--primary);
        box-shadow: 0 8px 20px rgba(15, 23, 42, .08);
    }

.wizard-panel {
    display: none;
    animation: wizardSlide .22s ease;
}

    .wizard-panel.active {
        display: block;
    }

@keyframes wizardSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wizard-step-heading {
    margin-bottom: 22px;
}

    .wizard-step-heading h3 {
        font-size: 24px;
        font-weight: 850;
        letter-spacing: -.5px;
        margin-bottom: 6px;
    }

    .wizard-step-heading p {
        color: var(--muted);
        margin-bottom: 0;
    }

.request-beta-form .form-label {
    font-weight: 800;
    color: #334155;
    margin-bottom: 7px;
}

.request-beta-form .form-control,
.request-beta-form .form-select {
    min-height: 52px;
    border-radius: 16px;
    border-color: rgba(15, 23, 42, .13);
    padding-left: 16px;
    padding-right: 16px;
}

    .request-beta-form .form-control:focus,
    .request-beta-form .form-select:focus {
        border-color: rgba(37, 99, 235, .7);
        box-shadow: 0 0 0 .25rem rgba(37, 99, 235, .12);
    }

.currency-preview {
    min-height: 52px;
    border-radius: 16px;
    padding: 14px 16px;
    font-weight: 900;
    color: #1d4ed8;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, .18);
}

.wizard-summary-card {
    border-radius: 20px;
    padding: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

    .wizard-summary-card p {
        color: var(--muted);
        line-height: 1.65;
        margin: 8px 0 0;
    }

.wizard-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 26px;
    margin-top: 28px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

@media (max-width: 991.98px) {
    .polished-guide-card {
        position: relative;
        top: auto;
    }
}

@media (max-width: 575.98px) {
    .wizard-form-card {
        padding: 24px !important;
    }

    .wizard-progress {
        grid-template-columns: repeat(2, 1fr);
        border-radius: 22px;
    }

    .wizard-actions {
        flex-direction: column;
        align-items: stretch;
    }

        .wizard-actions .btn {
            width: 100%;
        }
}

/* Request Beta full form polish - visible all fields */
.request-beta-full-card {
    padding: 42px !important;
    border-radius: 30px !important;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.beta-guide-v2 {
    padding: 34px !important;
    border-radius: 30px !important;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .10), transparent 30%), #ffffff;
}

.beta-guide-steps {
    display: grid;
    gap: 16px;
    margin: 26px 0;
}

.beta-guide-step {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 14px;
    padding: 16px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

.guide-step-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(135deg, #2563eb, #0f172a);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.beta-guide-step h3 {
    margin: 0 0 4px;
    font-size: 17px;
    font-weight: 850;
}

.beta-guide-step p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.owner-login-mini-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px;
    border-radius: 18px;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, .16);
    color: #1e293b;
}

    .owner-login-mini-card a {
        font-weight: 850;
        color: #1d4ed8;
        text-decoration: none;
    }

.beta-form-section {
    padding: 26px 0;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

    .beta-form-section:first-of-type {
        border-top: 0;
        padding-top: 8px;
    }

.beta-form-section-last {
    padding-bottom: 10px;
}

.beta-section-heading {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px;
}

.beta-section-icon {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #f1f5f9;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex: 0 0 auto;
}

.beta-section-heading h3 {
    font-size: 23px;
    line-height: 1.15;
    font-weight: 850;
    letter-spacing: -.4px;
    margin: 0 0 5px;
}

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

.request-submit-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 28px;
    padding-top: 28px;
    border-top: 1px solid rgba(15, 23, 42, .08);
}

.request-beta-form .form-label {
    font-weight: 800;
    color: #334155;
    margin-bottom: 7px;
}

.request-beta-form .form-control,
.request-beta-form .form-select {
    min-height: 52px;
    border-radius: 16px;
    border-color: rgba(15, 23, 42, .13);
    padding-left: 16px;
    padding-right: 16px;
}

.request-beta-form textarea.form-control {
    min-height: 120px;
    padding-top: 14px;
}

.request-beta-form .form-control:focus,
.request-beta-form .form-select:focus {
    border-color: rgba(37, 99, 235, .7);
    box-shadow: 0 0 0 .25rem rgba(37, 99, 235, .12);
}

@media (max-width: 575.98px) {
    .request-beta-full-card,
    .beta-guide-v2 {
        padding: 24px !important;
    }

    .owner-login-mini-card,
    .request-submit-bar {
        flex-direction: column;
        align-items: flex-start;
    }

        .request-submit-bar .btn {
            width: 100%;
        }
}

/* Final public site spacing + Request Beta wizard polish */
main {
    padding-top: 24px;
}

.page-hero {
    margin-top: 18px;
    padding-top: 108px;
    padding-bottom: 74px;
}

.compact-hero {
    text-align: center;
}

@media (max-width: 767.98px) {
    main {
        padding-top: 12px;
    }

    .page-hero {
        margin-top: 10px;
        padding-top: 78px;
        padding-bottom: 56px;
    }
}

/* Remove emoji/icon boxes from feature cards */
.feature-icon {
    display: none !important;
}

/* Request Beta wizard - keep styling outside Razor page */
.request-beta-wizard-card {
    padding: 38px !important;
    border-radius: 30px !important;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10);
}

.simple-guide-list {
    display: grid;
    gap: 14px;
    margin: 24px 0;
}

.simple-guide-item {
    padding: 16px 18px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

    .simple-guide-item h3 {
        margin: 0 0 4px;
        font-size: 16px;
        font-weight: 850;
        color: #0f172a;
    }

    .simple-guide-item p {
        margin: 0;
        color: #64748b;
        line-height: 1.55;
    }

.wizard-progress-numbered {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 14px;
    margin-bottom: 30px;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

.wizard-step {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 11px 8px;
    border-radius: 18px;
    color: #64748b;
    text-align: center;
    transition: all .18s ease;
}

    .wizard-step span {
        width: 31px;
        height: 31px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #e2e8f0;
        color: #334155;
        font-weight: 900;
        flex: 0 0 auto;
    }

    .wizard-step b {
        font-size: 13px;
        line-height: 1.15;
        font-weight: 850;
    }

    .wizard-step.active {
        background: #0f172a;
        color: #fff;
        box-shadow: 0 14px 30px rgba(15, 23, 42, .12);
    }

        .wizard-step.active span {
            background: #fff;
            color: #0f172a;
        }

    .wizard-step.done span {
        background: #22c55e;
        color: #fff;
    }

.wizard-panel {
    min-height: 285px;
}

.no-icon-heading {
    display: block;
    margin-bottom: 22px;
}

    .no-icon-heading h3 {
        margin-bottom: 4px;
        font-size: 24px;
        font-weight: 850;
        letter-spacing: -.4px;
    }

    .no-icon-heading p {
        color: var(--muted);
        margin-bottom: 0;
    }

.wizard-button-bar {
    margin-top: 34px;
    padding-top: 24px;
    border-top: 1px solid rgba(15, 23, 42, .08);
    align-items: center;
    justify-content: space-between;
}

.wizard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .08);
}

.beta-success-card {
    padding: 34px;
    border-radius: 26px;
    background: radial-gradient(circle at 12% 12%, rgba(37, 99, 235, .11), transparent 30%), #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
}

.beta-success-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 7px 13px;
    background: #dcfce7;
    color: #166534;
    font-weight: 850;
    font-size: 13px;
    margin-bottom: 16px;
}

.beta-success-card h2 {
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 900;
    letter-spacing: -1.3px;
    margin-bottom: 12px;
}

.beta-success-card p {
    color: #64748b;
    line-height: 1.7;
}

.beta-success-summary {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 24px 0;
}

    .beta-success-summary div {
        padding: 15px;
        border-radius: 18px;
        background: #fff;
        border: 1px solid rgba(15, 23, 42, .08);
    }

    .beta-success-summary span {
        display: block;
        color: #64748b;
        font-size: 13px;
        font-weight: 750;
        margin-bottom: 4px;
    }

    .beta-success-summary strong {
        display: block;
        color: #0f172a;
        overflow-wrap: anywhere;
    }

.beta-success-next {
    padding: 18px;
    border-radius: 20px;
    background: #eff6ff;
    border: 1px solid rgba(37, 99, 235, .13);
}

    .beta-success-next h3 {
        font-size: 18px;
        font-weight: 850;
        margin-bottom: 6px;
    }

    .beta-success-next p {
        margin-bottom: 0;
    }

.beta-success-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

@media (max-width: 767.98px) {
    .request-beta-wizard-card {
        padding: 24px !important;
    }

    .wizard-progress-numbered {
        grid-template-columns: 1fr 1fr;
        border-radius: 22px;
    }

    .wizard-step {
        justify-content: flex-start;
    }

    .wizard-button-bar {
        align-items: stretch;
    }

    .wizard-actions,
    .wizard-actions .btn,
    .beta-success-actions .btn {
        width: 100%;
    }

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


/* =========================================================
   Final public-site polish fixes
   ========================================================= */

/* Remove the visual white gap under the sticky top bar on inner pages. */
.site-header {
    margin-bottom: 0 !important;
}

main {
    margin-top: 0 !important;
}

.page-hero {
    margin-top: 0 !important;
    padding-top: 50px !important;
    padding-bottom: 56px !important;
    background: radial-gradient(circle at 12% 18%, rgba(37, 99, 235, .10), transparent 30%), linear-gradient(180deg, #f8fafc 0%, #f8fafc 100%) !important;
}

/* Keep the request beta section close to the hero, without an extra white band. */
.request-beta-section {
    padding-top: 42px !important;
}

/* Request Beta left panel: make the text readable on the light guide card. */
.beta-guide-v2,
.request-info-card.beta-guide-v2,
.registration-info-card.beta-guide-v2,
.polished-guide-card.beta-guide-v2 {
    color: #0f172a !important;
    background: radial-gradient(circle at 10% 10%, rgba(37, 99, 235, .10), transparent 32%), #ffffff !important;
    border: 1px solid rgba(15, 23, 42, .08) !important;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .10) !important;
}

    .beta-guide-v2 .eyebrow {
        color: var(--primary) !important;
    }

    .beta-guide-v2 h2,
    .beta-guide-v2 h3 {
        color: #0f172a !important;
    }

    .beta-guide-v2 p {
        color: #64748b !important;
    }

    .beta-guide-v2 .simple-guide-item {
        background: #f8fafc !important;
        border: 1px solid rgba(15, 23, 42, .08) !important;
    }

    .beta-guide-v2 .request-note,
    .beta-guide-v2 .guide-highlight {
        color: #334155 !important;
        background: #eff6ff !important;
        border: 1px solid rgba(37, 99, 235, .16) !important;
    }

        .beta-guide-v2 .request-note strong,
        .beta-guide-v2 .guide-highlight strong {
            color: #0f172a !important;
        }

/* Fix wizard fields disappearing: this page uses .d-none to hide steps, not display:none/active. */
.request-beta-wizard-card .wizard-panel {
    display: block !important;
    animation: none !important;
}

    .request-beta-wizard-card .wizard-panel.d-none {
        display: none !important;
    }

/* Keep the wizard progress polished and compact. */
.request-beta-wizard-card .wizard-progress-numbered {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 22px;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, .08);
    margin-bottom: 28px !important;
}

.request-beta-wizard-card .wizard-step {
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border-radius: 16px;
    color: #64748b;
    text-align: left;
    transition: .2s ease;
}

    .request-beta-wizard-card .wizard-step span {
        width: 30px;
        height: 30px;
        border-radius: 999px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        background: #e2e8f0;
        color: #334155;
        font-weight: 850;
        flex: 0 0 auto;
    }

    .request-beta-wizard-card .wizard-step b {
        font-size: 13px;
        line-height: 1.2;
    }

    .request-beta-wizard-card .wizard-step.active {
        background: #0f172a;
        color: #ffffff;
    }

        .request-beta-wizard-card .wizard-step.active span {
            background: #ffffff;
            color: #0f172a;
        }

    .request-beta-wizard-card .wizard-step.done span {
        background: #22c55e;
        color: #ffffff;
    }

/* Button spacing under fields. */
.request-beta-wizard-card .wizard-button-bar {
    margin-top: 34px !important;
    padding-top: 24px !important;
    border-top: 1px solid rgba(15, 23, 42, .08);
    justify-content: flex-start;
}

.request-beta-wizard-card .wizard-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Make validation clear. */
.request-beta-wizard-card .form-control.is-invalid,
.request-beta-wizard-card .form-select.is-invalid {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .08);
}

@media (max-width: 991.98px) {
    .page-hero {
        padding-top: 38px !important;
        padding-bottom: 44px !important;
    }

    .request-beta-wizard-card .wizard-progress-numbered {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .request-beta-wizard-card {
        padding: 24px !important;
    }

        .request-beta-wizard-card .wizard-progress-numbered {
            grid-template-columns: 1fr;
        }

        .request-beta-wizard-card .wizard-actions,
        .request-beta-wizard-card .wizard-actions .btn {
            width: 100%;
        }
}

/* Self-registration email verification flow */
.verification-actions {
    padding-bottom: 2px;
}

.verified-email-banner {
    border: 1px solid rgba(34, 197, 94, .25);
    background: rgba(34, 197, 94, .08);
    color: #166534;
    border-radius: 16px;
    padding: 12px 16px;
    font-weight: 700;
}

.beta-success-card {
    border-radius: 26px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    padding: 34px;
}

.beta-success-kicker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(37, 99, 235, .09);
    color: #1d4ed8;
    padding: 6px 12px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 14px;
}

.beta-success-steps {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

    .beta-success-steps div {
        border: 1px solid rgba(15, 23, 42, .08);
        border-radius: 16px;
        padding: 14px 16px;
        background: white;
    }

    .beta-success-steps b {
        display: block;
        margin-bottom: 4px;
    }

    .beta-success-steps span {
        color: #64748b;
    }


/* Public update: cleaner beta registration + balanced wizard buttons */
.compact-registration-header {
    padding-bottom: 18px;
    margin-bottom: 22px;
}

    .compact-registration-header h2 {
        margin-bottom: 0;
    }

.request-beta-wizard-card .wizard-button-bar {
    justify-content: stretch !important;
}

.request-beta-wizard-card .wizard-actions {
    width: 100%;
    justify-content: space-between;
}

.request-beta-wizard-card #wizardBackButton.d-none,
.request-beta-wizard-card #wizardNextButton.d-none,
.request-beta-wizard-card #wizardSubmitButton.d-none {
    display: none !important;
}

@media (max-width: 575.98px) {
    .request-beta-wizard-card .wizard-actions {
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px;
    }

        .request-beta-wizard-card .wizard-actions .btn {
            width: auto !important;
            flex: 1 1 0;
            padding-left: 14px !important;
            padding-right: 14px !important;
        }

        .request-beta-wizard-card .wizard-actions #wizardSubmitButton {
            flex-basis: 100%;
        }
}

/* Nubis Salon branding and legal/support pages */
.brand-logo {
    width: 220px;
    height: auto;
    display: block;
    border-radius: 12px;
}

.legal-hero,
.support-hero {
    padding: 78px 0 56px;
    background:
        radial-gradient(circle at 12% 15%, rgba(216, 169, 63, .14), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(54, 22, 76, .12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #faf8fc 100%);
    border-bottom: 1px solid var(--border);
}

.legal-shell {
    max-width: 920px;
}

.legal-hero h1,
.support-hero h1 {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 12px 0 12px;
}

.legal-updated {
    color: #7c6f86;
    font-weight: 700;
    margin-bottom: 22px;
}

.legal-lead,
.support-hero p {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.75;
    max-width: 760px;
}

.support-hero p {
    margin: 0 auto;
}

.legal-section {
    padding: 52px 0 86px;
    background: #f8fafc;
}

.legal-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: clamp(28px, 5vw, 58px);
    box-shadow: 0 24px 64px rgba(15, 23, 42, .08);
}

.legal-card h2 {
    font-size: 24px;
    font-weight: 850;
    margin: 34px 0 12px;
    color: #24132f;
}

.legal-card h2:first-child {
    margin-top: 0;
}

.legal-card p,
.legal-card li {
    color: #475569;
    line-height: 1.75;
    font-size: 16px;
}

.legal-card li + li {
    margin-top: 7px;
}

.legal-card a,
.support-section a {
    color: #6b2d8c;
    font-weight: 750;
}

.support-section {
    background: #f8fafc;
}

.support-card {
    height: 100%;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 16px 42px rgba(15, 23, 42, .06);
}

.support-card h2 {
    font-size: 22px;
    font-weight: 850;
    margin: 18px 0 10px;
}

.support-card p {
    color: var(--muted);
    line-height: 1.65;
    margin: 0;
}

.support-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #35134a, #6b2d8c);
    color: #f5d37a;
    font-weight: 900;
    box-shadow: 0 14px 28px rgba(53, 19, 74, .18);
}

.support-contact-panel {
    background: linear-gradient(135deg, #21102d, #42195a);
    color: white;
    border-radius: 28px;
    padding: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 24px 64px rgba(33, 16, 45, .2);
}

.support-contact-panel h2 {
    font-weight: 900;
    margin: 8px 0 10px;
}

.support-contact-panel p {
    color: rgba(255,255,255,.78);
    margin: 0;
    max-width: 700px;
}

.support-contact-panel a:not(.btn) {
    color: #f5d37a;
}

.support-list-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px 20px;
    height: 100%;
}

.support-list-item b,
.support-list-item span {
    display: block;
}

.support-list-item span {
    color: var(--muted);
    margin-top: 4px;
}

.support-security-note {
    background: #fff8e7;
    border: 1px solid rgba(216, 169, 63, .35);
    border-radius: 18px;
    padding: 18px 20px;
    color: #5d481a;
}

.site-footer {
    background: #160b1f;
    color: rgba(255,255,255,.72);
    padding: 42px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(260px, 1fr) auto;
    gap: 28px 50px;
    align-items: start;
}

.footer-logo {
    width: 230px;
    height: auto;
    margin-bottom: 14px;
    border-radius: 14px;
}

.site-footer p {
    max-width: 470px;
    margin: 0;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    justify-content: flex-end;
}

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 750;
}

.footer-links a:hover {
    color: #f5d37a;
}

.footer-copy {
    grid-column: 1 / -1;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 14px;
}

@media (max-width: 767.98px) {
    .brand-logo {
        width: 190px;
    }

    .legal-hero,
    .support-hero {
        padding: 54px 0 42px;
    }

    .support-contact-panel {
        align-items: flex-start;
        flex-direction: column;
    }

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

    .footer-links {
        justify-content: flex-start;
    }
}


/* 2026 public-site polish */
.brand-logo{width:auto;max-width:220px;height:52px;object-fit:contain}.footer-logo{width:auto;max-width:230px;height:58px;object-fit:contain}.legal-card-intro{font-size:1.08rem;line-height:1.8;color:#475569;background:linear-gradient(135deg,#f8fafc,#eff6ff);border:1px solid rgba(37,99,235,.12);border-radius:18px;padding:22px 24px;margin:-4px 0 30px}.register-layout{max-width:1180px;margin-inline:auto}.register-benefits-card{height:100%;border-radius:28px;padding:38px;background:radial-gradient(circle at 15% 0%,rgba(96,165,250,.28),transparent 35%),linear-gradient(145deg,#0f172a,#172554);color:#fff;box-shadow:0 30px 70px rgba(15,23,42,.18);position:relative;overflow:hidden}.register-benefits-card .eyebrow{color:#93c5fd}.register-benefits-card h2{font-size:clamp(1.8rem,3vw,2.5rem);font-weight:850;margin:14px 0}.register-benefits-card>p{color:#cbd5e1;line-height:1.75}.register-benefit{display:flex;gap:15px;padding:20px 0;border-top:1px solid rgba(255,255,255,.12)}.register-benefit>span{display:grid;place-items:center;width:40px;height:40px;flex:0 0 40px;border-radius:13px;background:linear-gradient(135deg,#38bdf8,#8b5cf6);font-weight:800}.register-benefit b,.register-benefit small{display:block}.register-benefit small{color:#cbd5e1;margin-top:4px;line-height:1.5}.register-help{margin-top:24px;padding:18px;border-radius:16px;background:rgba(255,255,255,.08);color:#cbd5e1}.register-help a{color:#fff;font-weight:700}.registration-form-card{border-radius:28px!important;box-shadow:0 30px 70px rgba(15,23,42,.12)!important}.pricing-hero-modern{background:radial-gradient(circle at 50% 0%,rgba(37,99,235,.17),transparent 45%),linear-gradient(180deg,#fff,#f8fafc)}.plan-label{font-size:1.55rem;font-weight:850;margin-bottom:8px}.pricing-detail-panel{display:grid;grid-template-columns:minmax(260px,.8fr) 1.2fr;gap:32px;align-items:center;border-radius:26px;padding:34px;background:#0f172a;color:white}.pricing-detail-panel h2{font-weight:850}.pricing-included-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px}.pricing-included-grid span{padding:13px 15px;border:1px solid rgba(255,255,255,.12);border-radius:13px;background:rgba(255,255,255,.06)}.support-hero-modern{padding:92px 0;background:radial-gradient(circle at 10% 10%,rgba(37,99,235,.18),transparent 35%),radial-gradient(circle at 90% 0%,rgba(139,92,246,.12),transparent 35%),linear-gradient(180deg,#fff,#f8fafc)}.support-hero-grid{display:grid;grid-template-columns:1.4fr .7fr;gap:48px;align-items:center}.support-hero-grid h1{font-size:clamp(2.6rem,5vw,4.7rem);line-height:1.02;font-weight:900;letter-spacing:-.045em;margin:14px 0 22px}.support-hero-grid>div>p{font-size:1.15rem;line-height:1.8;color:#64748b;max-width:720px}.support-status-card{padding:30px;border-radius:24px;background:#0f172a;color:white;box-shadow:0 28px 65px rgba(15,23,42,.2)}.support-status-card .status-dot{display:inline-block;width:11px;height:11px;border-radius:50%;background:#22c55e;box-shadow:0 0 0 7px rgba(34,197,94,.14);margin-right:12px}.support-status-card p{margin:18px 0;color:#cbd5e1}.support-status-card a{color:white;font-weight:700}.support-status-card small{display:block;color:#94a3b8;line-height:1.6}.support-card-modern{height:100%;transition:.25s ease}.support-card-modern:hover{transform:translateY(-6px);box-shadow:0 26px 55px rgba(15,23,42,.12)}.support-card-modern a{font-weight:800;text-decoration:none}.support-contact-panel-modern{border-radius:26px;background:linear-gradient(135deg,#eff6ff,#f5f3ff);border:1px solid rgba(37,99,235,.13)}.support-contact-actions{display:flex;gap:12px;flex-wrap:wrap}.contact-method a{color:inherit;text-decoration:none}.contact-method a:hover{text-decoration:underline}
@media(max-width:991.98px){.support-hero-grid,.pricing-detail-panel{grid-template-columns:1fr}.register-benefits-card{height:auto}.brand-logo{max-width:190px;height:46px}}
@media(max-width:575.98px){.brand-logo{max-width:165px;height:42px}.pricing-included-grid{grid-template-columns:1fr}.register-benefits-card{padding:28px}.support-hero-modern{padding:68px 0}.support-contact-actions{width:100%}.support-contact-actions .btn{width:100%}}


/* 2026-07 final public-site refinements */
.site-header .navbar{min-height:64px;padding-top:6px;padding-bottom:6px}
.brand-logo{max-width:174px!important;height:38px!important;object-fit:contain!important;object-position:left center;border-radius:0!important}
.footer-logo{max-width:190px!important;height:46px!important;object-fit:contain!important;border-radius:0!important}
main>section:first-child{margin-top:0!important}
.page-hero,.hero,.support-hero,.legal-section{margin-top:0!important}
.page-hero{padding-top:54px!important;padding-bottom:48px!important}
.hero{padding-top:72px!important}
.hero h1,.page-hero h1,.support-hero-grid h1{font-weight:700!important;letter-spacing:-.035em!important}
.section h2,.section-heading h2,.cta-card h2,.pricing-detail-panel h2{font-weight:700!important}
.feature-card h3,.price-card h3,.plan-label,.support-card h2,.faq-card h3{font-weight:700!important}
.eyebrow{font-weight:700!important}
.support-contact-panel-modern{color:#0f172a!important}
.support-contact-panel-modern h2{color:#0f172a!important;font-weight:700!important}
.support-contact-panel-modern p{color:#475569!important}
.support-contact-panel-modern .eyebrow{color:#2563eb!important}
.support-contact-panel-modern .btn-outline-dark{color:#0f172a!important;border-color:#0f172a!important}
.legal-section{padding:46px 0 80px!important;background:#f8fafc}
.legal-document-card{padding-top:44px!important}
.legal-document-header{padding-bottom:8px;border-bottom:1px solid var(--border);margin-bottom:30px}
.legal-document-header h1{font-size:clamp(2.25rem,5vw,3.65rem);font-weight:700;letter-spacing:-.035em;margin:10px 0 8px;color:#0f172a}
.legal-document-header .legal-updated{margin-bottom:22px}
.legal-document-header .legal-card-intro{margin:0 0 26px;background:transparent;border:0;border-radius:0;padding:0;max-width:none}
.price-page-card{display:flex;flex-direction:column}
.price-page-card ul{flex-grow:1}
.price-contact{font-size:1.85rem;line-height:1.15;margin-top:24px;margin-bottom:18px}
.franchise-card{border-color:rgba(15,23,42,.24);background:linear-gradient(180deg,#fff,#f8fafc)}
.registration-consent{padding:18px 20px;border:1px solid rgba(37,99,235,.18);border-radius:16px;background:#f8fbff}
.registration-consent .form-check-label{color:#334155;line-height:1.6}
.registration-consent a{font-weight:700}
@media(max-width:991.98px){.brand-logo{max-width:160px!important;height:36px!important}.hero{padding-top:58px!important}.page-hero{padding-top:46px!important}}
@media(max-width:575.98px){.brand-logo{max-width:146px!important;height:34px!important}.navbar{min-height:58px!important}.hero{padding-top:46px!important}.page-hero{padding-top:38px!important;padding-bottom:38px!important}.legal-section{padding-top:28px!important}.legal-card{border-radius:20px!important;padding:26px 20px!important}}


/* 2026-07-17 verified layout corrections */
html, body { margin: 0 !important; padding: 0 !important; }
body > .site-header { margin: 0 !important; }
main { margin: 0 !important; padding: 0 !important; }
main > section:first-child { margin-top: 0 !important; }
.site-header .navbar { min-height: 62px !important; padding: 5px 0 !important; }
.navbar-brand.brand { margin: 0 !important; padding: 0 !important; overflow: visible !important; }
.brand-logo {
    display: block !important;
    width: auto !important;
    height: 34px !important;
    max-width: 158px !important;
    object-fit: contain !important;
    object-position: center !important;
    overflow: visible !important;
}
.footer-logo {
    width: auto !important;
    height: 44px !important;
    max-width: 190px !important;
    object-fit: contain !important;
}
.hero, .page-hero, .support-hero, .legal-section {
    margin-top: 0 !important;
}
.hero { padding-top: 66px !important; }
.page-hero { padding-top: 48px !important; }
.support-hero-modern { padding-top: 68px !important; }

/* Keep all Contact Support copy readable on its light card. */
body .support-contact-panel-modern,
body .support-contact-panel-modern div,
body .support-contact-panel-modern h1,
body .support-contact-panel-modern h2,
body .support-contact-panel-modern h3,
body .support-contact-panel-modern p,
body .support-contact-panel-modern span,
body .support-contact-panel-modern strong {
    color: #0f172a !important;
}
body .support-contact-panel-modern .eyebrow { color: #2563eb !important; }
body .support-contact-panel-modern .btn-primary { color: #ffffff !important; }
body .support-contact-panel-modern .btn-outline-dark {
    color: #0f172a !important;
    border-color: #0f172a !important;
    background: transparent !important;
}
body .support-contact-panel-modern .btn-outline-dark:hover {
    color: #ffffff !important;
    background: #0f172a !important;
}

/* Shared pricing cards render identically on Home and Pricing. */
.pricing-plan-grid .price-card { display: flex; flex-direction: column; }
.pricing-plan-grid .price-card ul { flex-grow: 1; }
.pricing-plan-grid .plan-label { font-size: 1.55rem; font-weight: 700 !important; }
.pricing-plan-grid .price { margin-top: 12px; }

@media (max-width: 991.98px) {
    .brand-logo { height: 32px !important; max-width: 148px !important; }
    .hero { padding-top: 54px !important; }
    .page-hero { padding-top: 42px !important; }
    .support-hero-modern { padding-top: 54px !important; }
}
@media (max-width: 575.98px) {
    .site-header .navbar { min-height: 56px !important; }
    .brand-logo { height: 29px !important; max-width: 134px !important; }
    .hero { padding-top: 42px !important; }
    .page-hero { padding-top: 34px !important; }
    .support-hero-modern { padding-top: 42px !important; }
}


/* Salon workflow feature cards */
.workflow-section {
    background: linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
}

.workflow-card-grid {
    margin-top: 1rem;
}

.workflow-card {
    padding: 2rem;
    border: 1px solid rgba(28, 45, 90, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 20px 50px rgba(22, 36, 76, .08);
}

.workflow-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border-radius: 14px;
    background: linear-gradient(135deg, #2477ff, #8a4dff);
    color: #fff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .08em;
}

.workflow-card h3 {
    margin-bottom: .75rem;
    font-size: 1.25rem;
    font-weight: 650;
}

.workflow-card p {
    margin: 0;
    color: #5b6478;
    line-height: 1.75;
}

.featured-workflow-card {
    border-color: rgba(82, 91, 255, .20);
    background: linear-gradient(180deg, rgba(247, 249, 255, .98), #fff);
}

/* 2026-07: larger header logo and tabbed product video showcase */
.site-header .navbar {
    min-height: 72px !important;
    padding: 7px 0 !important;
}

.brand-logo {
    height: 48px !important;
    max-width: 230px !important;
    width: auto !important;
    object-fit: contain !important;
    object-position: left center !important;
}

.demo-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.demo-showcase {
    max-width: 1040px;
    margin: 0 auto;
}

.demo-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 0 auto 24px;
    padding: 7px;
    width: fit-content;
    max-width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .08);
}

.demo-tab {
    appearance: none;
    border: 0;
    border-radius: 999px;
    padding: 12px 22px;
    background: transparent;
    color: #475569;
    font-family: inherit;
    font-size: .96rem;
    font-weight: 650;
    line-height: 1.2;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.demo-tab:hover {
    color: #0f172a;
    background: #f1f5f9;
    transform: translateY(-1px);
}

.demo-tab.active,
.demo-tab[aria-selected="true"] {
    color: #ffffff;
    background: #0f172a;
    box-shadow: 0 10px 22px rgba(15, 23, 42, .20);
}

.demo-tab-content {
    min-height: 0;
}

.demo-video-card {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .14);
}

.demo-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    background: #0f172a;
}

.demo-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f172a;
}

.demo-video-label {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 13px;
    max-width: 650px;
    padding: 14px 17px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    color: #ffffff;
    background: rgba(15, 23, 42, .86);
    backdrop-filter: blur(12px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .22);
    pointer-events: none;
}

.demo-video-icon {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    padding-left: 2px;
    border-radius: 50%;
    background: #ffffff;
    color: #0f172a;
    font-size: .9rem;
}

.demo-video-label strong,
.demo-video-label small {
    display: block;
}

.demo-video-label strong {
    margin-bottom: 3px;
    font-size: 1rem;
    font-weight: 700;
}

.demo-video-label small {
    color: #cbd5e1;
    font-size: .84rem;
    line-height: 1.45;
}

@media (max-width: 991.98px) {
    .site-header .navbar { min-height: 66px !important; }
    .brand-logo { height: 43px !important; max-width: 210px !important; }
}

@media (max-width: 575.98px) {
    .site-header .navbar { min-height: 62px !important; }
    .brand-logo { height: 38px !important; max-width: 185px !important; }
    .demo-tabs {
        width: 100%;
        border-radius: 20px;
    }
    .demo-tab {
        flex: 1 1 100%;
        width: 100%;
        padding: 11px 15px;
    }
    .demo-video-card { border-radius: 20px; padding: 7px; }
    .demo-video-frame { border-radius: 15px; }
    .demo-video-label {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 11px 12px;
    }
    .demo-video-label small { display: none; }
}


/* Contact page heading and social-link refinements */
.contact-page-section .simple-contact-card h2 {
    font-size: clamp(1.18rem, 1.5vw, 1.42rem);
    font-weight: 650;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

.contact-social-section {
    padding-top: 0;
}

.contact-social-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 30px 34px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(25, 16, 35, .08);
}

.contact-social-card h2 {
    margin: 7px 0 8px;
    font-size: clamp(1.3rem, 2vw, 1.7rem);
    font-weight: 650;
}

.contact-social-card p {
    color: var(--muted);
    margin: 0;
    max-width: 720px;
}

.contact-social-card .btn {
    flex: 0 0 auto;
}

@media (max-width: 767.98px) {
    .contact-social-card {
        align-items: flex-start;
        flex-direction: column;
        padding: 24px;
    }
}

/* Contact page spacing polish */
.page-hero.compact-hero h1 {
    font-size: clamp(2rem, 4.2vw, 3.35rem);
    line-height: 1.08;
}

.contact-social-section {
    padding-top: 56px;
    padding-bottom: 22px;
}

.contact-page-section {
    padding-top: 18px;
}

@media (max-width: 767.98px) {
    .page-hero.compact-hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.5rem);
    }

    .contact-social-section {
        padding-top: 42px;
        padding-bottom: 16px;
    }

    .contact-page-section {
        padding-top: 12px;
    }
}


/* Nubis Salon custom vector illustrations */
.illustration-frame {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fbfaf8;
    box-shadow: 0 24px 62px rgba(25, 16, 35, .09);
}
.illustration-frame img { display: block; width: 100%; height: auto; }
.illustration-frame-large { max-width: 680px; }
.illustration-frame-portrait { max-width: 620px; margin-left: auto; }
.salon-story-section { background: linear-gradient(180deg, #fff 0%, #fcfaf6 100%); }
.feature-visual-intro { padding-top: 26px; padding-bottom: 34px; }
.feature-visual-intro .illustration-frame { box-shadow: none; }
.salon-booking-story { background: #fff; }
.support-visual-card {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 22px 55px rgba(25, 16, 35, .10);
}
.support-visual-card > img { display:block; width:100%; height:auto; }
.support-visual-contact {
    display:flex; align-items:center; gap:12px;
    padding: 15px 20px 18px;
    border-top:1px solid var(--border);
}
.support-visual-contact b, .support-visual-contact p { display:block; margin:0; }
.support-visual-contact p { margin-top:3px; color:var(--muted); font-size:.9rem; }
.contact-social-card-illustrated { padding: 24px 28px; }
.contact-social-copy { flex: 1 1 48%; }
.contact-social-visual { flex: 0 1 300px; max-width: 300px; }
.contact-social-visual img { display:block; width:100%; height:auto; }
.contact-social-card-illustrated .btn { align-self:center; }
@media (max-width: 991.98px) {
    .contact-social-card-illustrated { flex-wrap: wrap; }
    .contact-social-copy { flex-basis: 60%; }
    .contact-social-visual { flex-basis: 220px; max-width:220px; }
}
@media (max-width: 767.98px) {
    .illustration-frame { border-radius: 22px; }
    .feature-visual-intro { padding-top: 10px; }
    .contact-social-visual { order: 2; max-width: 240px; }
    .contact-social-card-illustrated .btn { order: 3; align-self:flex-start; }
}

.region-selector{min-width:190px;border-radius:999px;background-color:#fff;font-weight:600}

/* Registration plan cards */
.registration-plan-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:16px}.registration-plan-card{width:100%;text-align:left;border:1px solid #dbe3ee;background:#fff;border-radius:20px;padding:22px;transition:.2s ease;box-shadow:0 10px 26px rgba(15,23,42,.05)}.registration-plan-card:hover{transform:translateY(-2px);border-color:#94a3b8;box-shadow:0 16px 34px rgba(15,23,42,.1)}.registration-plan-card.selected{border-color:#0f172a;box-shadow:0 0 0 3px rgba(15,23,42,.1),0 18px 38px rgba(15,23,42,.12)}.registration-plan-card-top{display:flex;justify-content:space-between;gap:16px;align-items:flex-start}.registration-plan-card strong{display:block;font-size:1.18rem;color:#0f172a}.registration-plan-card small{display:block;color:#64748b;line-height:1.5;margin-top:5px}.registration-plan-check{display:grid;place-items:center;width:28px;height:28px;border-radius:50%;background:#e2e8f0;color:transparent;font-weight:900;flex:0 0 28px}.registration-plan-card.selected .registration-plan-check{background:#0f172a;color:#fff}.registration-plan-price{font-size:2rem;font-weight:900;color:#0f172a;margin:20px 0 14px}.registration-plan-price span{font-size:.9rem;font-weight:600;color:#64748b;margin-left:4px}.registration-plan-card ul{margin:0;padding-left:20px;color:#475569;display:grid;gap:7px}.registration-plan-loading{grid-column:1/-1;padding:28px;border:1px dashed #cbd5e1;border-radius:18px;text-align:center;color:#64748b;background:#f8fafc}@media(max-width:767.98px){.registration-plan-grid{grid-template-columns:1fr}}


/* Cookie and privacy consent */
.footer-cookie-link{border:0;background:transparent;padding:0;color:inherit;text-decoration:none;cursor:pointer;font:inherit}.footer-cookie-link:hover{text-decoration:underline}
.cookie-consent[hidden]{display:none!important}.cookie-consent{position:fixed;z-index:2000;left:18px;right:18px;bottom:18px;display:flex;justify-content:center;pointer-events:none}.cookie-consent-card{width:min(980px,100%);pointer-events:auto;background:#fff;border:1px solid rgba(20,20,20,.12);border-radius:22px;box-shadow:0 24px 70px rgba(0,0,0,.22);padding:24px;display:grid;gap:18px}.cookie-consent-copy h2{font-size:1.4rem;margin:.15rem 0 .45rem}.cookie-consent-copy p{margin:0;color:var(--muted);line-height:1.6}.cookie-consent-copy a{font-weight:700}.cookie-consent-preferences{display:grid;gap:10px;padding-top:4px}.cookie-consent-option{display:flex;align-items:center;justify-content:space-between;gap:20px;padding:12px 14px;border:1px solid var(--border);border-radius:14px;background:#fbfaf8}.cookie-consent-option span{display:grid;gap:2px}.cookie-consent-option small{color:var(--muted)}.cookie-consent-option input{width:20px;height:20px;flex:0 0 auto;accent-color:#111}.cookie-consent-option-required{background:#f5f3ef}.cookie-consent-actions{display:flex;flex-wrap:wrap;justify-content:flex-end;gap:10px}.cookie-consent-actions .btn{white-space:nowrap}.cookie-consent-open body{padding-bottom:0}
@media(max-width:767.98px){.cookie-consent{left:10px;right:10px;bottom:10px}.cookie-consent-card{padding:18px;border-radius:18px;max-height:calc(100vh - 20px);overflow:auto}.cookie-consent-actions{display:grid;grid-template-columns:1fr}.cookie-consent-actions .btn{width:100%;white-space:normal}.cookie-consent-option{align-items:flex-start}}


/* Smooth regional pricing refresh */
.catalog-value,
[data-plan-price],
[data-additional-location-from] {
    transition: opacity .22s ease, transform .22s ease;
}

.catalog-updating {
    opacity: .42;
    transform: translateY(1px);
}

.region-selector {
    transition: opacity .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.region-selector.catalog-selector-updating {
    opacity: .72;
    cursor: wait;
}


/* Country/currency selector with real flag artwork. */
.country-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    min-width: 180px;
    justify-content: flex-start;
    border: 1px solid rgba(20,20,20,.16);
    background: #fff;
    color: #202020;
    border-radius: .6rem;
    padding: .42rem .7rem;
}
.country-dropdown-toggle::after { margin-left: auto; }
.country-dropdown-toggle:hover,
.country-dropdown-toggle:focus {
    background: #fff;
    color: #202020;
    border-color: rgba(20,20,20,.28);
    box-shadow: 0 0 0 .18rem rgba(0,0,0,.06);
}
.country-dropdown-menu {
    min-width: 220px;
    padding: .4rem;
    border-radius: .75rem;
    box-shadow: 0 12px 30px rgba(0,0,0,.12);
}
.country-option {
    display: flex;
    align-items: center;
    gap: .6rem;
    border-radius: .5rem;
    padding: .5rem .65rem;
}
.country-flag {
    width: 24px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(0,0,0,.12);
    flex: 0 0 auto;
}
@media (max-width: 991.98px) {
    .country-dropdown-toggle { width: 100%; min-width: 0; }
    .country-dropdown-menu { width: 100%; }
}


/* Mobile navigation redesign: floating panel rather than page-pushing collapse. */
@media (max-width: 991.98px) {
    .mobile-nav-host {
        position: sticky;
        top: 0;
        z-index: 1040;
        background: rgba(255,255,255,.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border-bottom: 1px solid rgba(20,20,20,.08);
    }

    .mobile-nav-host .navbar {
        position: relative;
        padding-top: .7rem;
        padding-bottom: .7rem;
    }

    .mobile-nav-host .navbar-brand {
        margin-right: 1rem;
    }

    .mobile-nav-host .brand-logo {
        max-height: 46px;
        width: auto;
    }

    .mobile-menu-toggle {
        margin-left: auto;
        border: 1px solid rgba(20,20,20,.14);
        border-radius: .8rem;
        padding: .45rem .58rem;
        box-shadow: none;
    }

    .mobile-menu-toggle:focus {
        box-shadow: 0 0 0 .2rem rgba(20,20,20,.08);
    }

    .mobile-nav-panel {
        position: absolute;
        top: calc(100% + .5rem);
        left: .75rem;
        right: .75rem;
        z-index: 1050;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        background: #fffdf8;
        border: 1px solid rgba(20,20,20,.10);
        border-radius: 1rem;
        padding: .85rem;
        box-shadow: 0 18px 50px rgba(0,0,0,.16);
    }

    .mobile-nav-panel.collapsing {
        position: absolute;
        height: auto !important;
        overflow: hidden;
        transition: opacity .18s ease, transform .18s ease;
    }

    .mobile-nav-panel:not(.show) {
        display: none;
    }

    .mobile-nav-panel.show {
        display: block;
        animation: nubisMobileMenuIn .18s ease-out;
    }

    @keyframes nubisMobileMenuIn {
        from { opacity: 0; transform: translateY(-6px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    .mobile-nav-list {
        align-items: stretch !important;
        gap: .15rem;
    }

    .mobile-nav-link-item {
        width: 100%;
    }

    .mobile-nav-link {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 44px;
        padding: .65rem .75rem !important;
        border-radius: .65rem;
        font-weight: 600;
    }

    .mobile-nav-link:hover,
    .mobile-nav-link:focus {
        background: rgba(20,20,20,.05);
    }

    .mobile-nav-panel .country-dropdown {
        width: 100%;
        margin-top: .75rem;
        padding-top: .75rem;
        border-top: 1px solid rgba(20,20,20,.08);
    }

    .mobile-nav-panel .country-dropdown-toggle {
        width: 100%;
        min-height: 46px;
        padding: .65rem .75rem;
        background: #fff;
    }

    .mobile-nav-panel .country-dropdown-menu {
        width: 100%;
        position: static !important;
        transform: none !important;
        margin-top: .4rem !important;
        box-shadow: 0 10px 24px rgba(0,0,0,.10);
    }

    .mobile-nav-action {
        width: 100%;
        margin-left: 0 !important;
    }

    .mobile-owner-login {
        margin-top: .9rem;
    }

    .mobile-register {
        margin-top: .6rem;
    }

    .mobile-nav-action .btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 46px;
        padding: .7rem 1rem !important;
    }
}

@media (max-width: 420px) {
    .mobile-nav-panel {
        left: .5rem;
        right: .5rem;
        border-radius: .9rem;
    }

    .mobile-nav-host .brand-logo {
        max-height: 42px;
    }
}


/* =========================================================
   Simple mobile-first Nubis Salon registration wizard
   ========================================================= */
.simple-registration-page {
    min-height: calc(100vh - 76px);
    padding: 42px 0 56px;
    background:
        radial-gradient(circle at 15% 0%, rgba(37,99,235,.09), transparent 34%),
        radial-gradient(circle at 88% 8%, rgba(139,92,246,.07), transparent 30%),
        #f8fafc;
}

.simple-registration-shell {
    width: min(100%, 780px);
    margin: 0 auto;
    padding: 30px;
    border: 1px solid rgba(15,23,42,.09);
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 24px 65px rgba(15,23,42,.10);
    scroll-margin-top: 88px;
    overflow-anchor: none;
}

.simple-registration-header {
    text-align: center;
    margin-bottom: 22px;
}

.simple-registration-header .eyebrow {
    margin-bottom: 7px;
}

.simple-registration-header h1 {
    margin: 0;
    color: #0f172a;
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    font-weight: 900;
    letter-spacing: -.035em;
}

.simple-registration-header p {
    margin: 8px 0 0;
    color: #64748b;
    font-weight: 650;
}

.simple-registration-alert {
    margin: 0 0 18px;
}

.simple-wizard-progress {
    display: grid;
    grid-template-columns: auto 1fr auto 1fr auto 1fr auto;
    align-items: center;
    gap: 8px;
    margin: 0 0 24px;
    padding: 13px 16px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid rgba(15,23,42,.07);
}

.simple-wizard-line {
    height: 2px;
    border-radius: 99px;
    background: #e2e8f0;
}

.simple-wizard-step {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #94a3b8;
    white-space: nowrap;
}

.simple-wizard-step span {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #475569;
    font-weight: 850;
    font-size: .85rem;
}

.simple-wizard-step b {
    font-size: .82rem;
    font-weight: 800;
}

.simple-wizard-step.active {
    color: #0f172a;
}

.simple-wizard-step.active span {
    background: #0f172a;
    color: #fff;
}

.simple-wizard-step.done span {
    background: #22c55e;
    color: #fff;
}

.simple-wizard-body {
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.simple-wizard-panel {
    display: block !important;
    animation: none !important;
    width: 100%;
}

.simple-wizard-panel.d-none {
    display: none !important;
}

.simple-step-heading {
    margin-bottom: 20px;
}

.simple-step-heading h2 {
    margin: 0;
    color: #0f172a;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: -.02em;
}

.simple-step-heading p {
    margin: 5px 0 0;
    color: #64748b;
    line-height: 1.5;
}

.simple-form-grid {
    display: grid;
    gap: 16px;
}

.simple-form-grid.two-column {
    grid-template-columns: repeat(2, minmax(0,1fr));
}

.simple-grid-full {
    grid-column: 1 / -1;
}

.simple-registration-shell .form-field {
    min-width: 0;
}

.simple-registration-shell .form-label {
    margin-bottom: 6px;
    color: #334155;
    font-size: .9rem;
    font-weight: 800;
}

.simple-registration-shell .form-control,
.simple-registration-shell .form-select {
    min-height: 48px;
    border-radius: 13px;
    border-color: #d8e0ea;
    font-size: 1rem;
}

.simple-registration-shell .form-control:focus,
.simple-registration-shell .form-select:focus {
    border-color: #64748b;
    box-shadow: 0 0 0 .2rem rgba(15,23,42,.07);
}

.simple-field-action {
    margin-top: -4px;
}

.simple-full-button {
    width: 100%;
    min-height: 48px;
    border-radius: 13px;
    font-weight: 800;
}

.simple-verified-banner {
    padding: 11px 14px;
    border-radius: 13px;
}

.simple-currency-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 10px;
    padding: 12px 14px;
    border-radius: 13px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.simple-currency-row span {
    color: #64748b;
    font-size: .88rem;
    font-weight: 700;
}

.simple-currency-row strong {
    color: #0f172a;
}

.simple-currency-row small {
    margin-left: auto;
    color: #94a3b8;
}

.simple-plan-grid {
    grid-template-columns: repeat(3, minmax(0,1fr)) !important;
    gap: 10px !important;
    margin-bottom: 18px;
}

.simple-plan-grid .registration-plan-card {
    min-height: 112px;
    padding: 14px !important;
    border-radius: 15px !important;
    box-shadow: none !important;
}

.simple-plan-grid .registration-plan-card:hover {
    transform: none;
}

.simple-plan-grid .registration-plan-card strong {
    font-size: .98rem;
}

.simple-plan-grid .registration-plan-price {
    margin: 13px 0 0;
    font-size: 1.45rem;
}

.simple-plan-grid .registration-plan-price span {
    font-size: .75rem;
}

.simple-plan-grid .registration-plan-check {
    width: 23px;
    height: 23px;
    flex-basis: 23px;
}

.simple-password-grid {
    margin-top: 4px;
}

.simple-registration-consent {
    padding: 12px 14px !important;
    border-radius: 13px !important;
}

.simple-registration-consent .form-check-label {
    font-size: .9rem;
    line-height: 1.45;
}

.simple-wizard-actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    min-height: 48px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid #e8edf3;
}

.simple-wizard-actions .btn {
    min-width: 112px;
    min-height: 46px;
    padding: 9px 22px;
    font-weight: 800;
}

.simple-wizard-actions #wizardNextButton,
.simple-wizard-actions #wizardSubmitButton {
    margin-left: auto;
}

.simple-wizard-actions .d-none {
    display: none !important;
}

.simple-registration-help {
    margin-top: 18px;
    text-align: center;
    color: #94a3b8;
    font-size: .88rem;
}

.simple-registration-help a {
    color: #475569;
    font-weight: 750;
}

.simple-registration-success {
    text-align: center;
    padding: 12px 6px 4px;
}

.simple-success-icon {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: #22c55e;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 900;
}

.simple-registration-success h1 {
    margin: 5px 0 9px;
    font-size: clamp(1.8rem,4vw,2.4rem);
    font-weight: 900;
}

.simple-registration-success > p {
    color: #64748b;
    font-size: 1.05rem;
}

.simple-success-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin: 24px 0;
}

.simple-success-note {
    padding: 12px 14px;
    border-radius: 13px;
    background: #f0fdf4;
    color: #166534;
    font-weight: 700;
}

.simple-download-card {
    margin-top: 22px;
    text-align: left;
}

@media (max-width: 767.98px) {
    .simple-registration-page {
        padding: 20px 0 36px;
    }

    .simple-registration-page .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .simple-registration-shell {
        padding: 20px 16px 18px;
        border-radius: 20px;
        scroll-margin-top: 74px;
    }

    .simple-registration-header {
        margin-bottom: 16px;
    }

    .simple-registration-header h1 {
        font-size: 1.75rem;
    }

    .simple-wizard-progress {
        gap: 5px;
        padding: 10px;
        margin-bottom: 18px;
    }

    .simple-wizard-step {
        gap: 0;
    }

    .simple-wizard-step b {
        display: none;
    }

    .simple-wizard-step span {
        width: 31px;
        height: 31px;
    }

    .simple-wizard-body {
        min-height: 555px;
    }

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

    .simple-grid-full {
        grid-column: auto;
    }

    .simple-step-heading {
        margin-bottom: 15px;
    }

    .simple-step-heading h2 {
        font-size: 1.25rem;
    }

    .simple-step-heading p {
        font-size: .92rem;
    }

    .simple-plan-grid {
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .simple-plan-grid .registration-plan-card {
        min-height: 72px;
        padding: 11px 13px !important;
        display: grid;
        grid-template-columns: 1fr auto;
        align-items: center;
        column-gap: 10px;
    }

    .simple-plan-grid .registration-plan-card-top {
        display: contents;
    }

    .simple-plan-grid .registration-plan-card-top > div {
        grid-column: 1;
        grid-row: 1;
    }

    .simple-plan-grid .registration-plan-check {
        grid-column: 2;
        grid-row: 1 / span 2;
    }

    .simple-plan-grid .registration-plan-price {
        grid-column: 1;
        grid-row: 2;
        margin: 2px 0 0;
        font-size: 1.15rem;
    }

    .simple-currency-row small {
        width: 100%;
        margin-left: 0;
    }

    .simple-wizard-actions {
        position: relative;
        margin-top: 14px;
        padding-top: 14px;
    }

    .simple-wizard-actions .btn {
        min-width: 100px;
        min-height: 46px;
        padding: 9px 17px;
    }

    .simple-wizard-actions #wizardSubmitButton {
        flex: 1;
    }
}

@media (max-width: 390px) {
    .simple-registration-shell {
        padding-left: 13px;
        padding-right: 13px;
    }

    .simple-wizard-body {
        min-height: 575px;
    }

    .simple-wizard-progress {
        padding-left: 8px;
        padding-right: 8px;
    }

    .simple-wizard-step span {
        width: 29px;
        height: 29px;
        font-size: .8rem;
    }

    .simple-wizard-actions {
        gap: 8px;
    }

    .simple-wizard-actions .btn {
        min-width: 0;
        padding-left: 14px;
        padding-right: 14px;
    }
}


/* Microsoft Store badge: keep it inside the viewport on every page. */
ms-store-badge {
    display: inline-block;
    max-width: 100%;
    vertical-align: middle;
}

.registration-download-card,
.microsoft-store-card,
.store-download-card {
    max-width: 100%;
    overflow: hidden;
}

@media (max-width: 575.98px) {
    ms-store-badge {
        width: min(100%, 260px);
        max-width: 260px;
    }

    .registration-download-card ms-store-badge,
    .microsoft-store-card ms-store-badge,
    .store-download-card ms-store-badge {
        display: block;
        margin-left: auto;
        margin-right: auto;
    }
}
