﻿*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

#splashScreen {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    overflow: hidden;
}
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.promo-page .container-fluid {
    padding-left: clamp(20px, 4vw, 48px);
    padding-right: clamp(20px, 4vw, 48px);
}
.splash-content {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow: hidden;
}

.splash-image {
    max-width: 520px;
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
}

#splashScreen.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
    scroll-behavior: smooth;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

:root {
    --primary: #28166f;
    --primary-2: #3a2394;
    --primary-3: #5b42c7;
    --primary-4: #8e79ee;
    --primary-5: #cfc4ff;
    --bg-dark: #0d0920;
    --bg-dark-2: #171036;
    --bg-dark-3: #211653;
    --surface-1: rgba(255, 255, 255, 0.06);
    --surface-2: rgba(255, 255, 255, 0.03);
    --surface-3: rgba(255, 255, 255, 0.08);
    --border-soft: rgba(255, 255, 255, 0.10);
    --text-main: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.78);
    --text-muted: rgba(255, 255, 255, 0.62);
    --shadow-main: 0 20px 50px rgba(0, 0, 0, 0.22);
    --shadow-purple: 0 16px 36px rgba(40, 22, 111, 0.30);
    --glow-purple: rgba(91, 66, 199, 0.28);
}

.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
    box-shadow: 0 0 0 0.1rem #fff, 0 0 0 0.25rem rgba(91, 66, 199, 0.35);
}

body {
    margin: 0;
    background: var(--bg-dark);
    color: var(--text-main);
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* =========================
   PROMO PAGE
========================= */

    .promo-page {
        background: radial-gradient(circle at top left, rgba(91, 66, 199, 0.18), transparent 30%), radial-gradient(circle at bottom right, rgba(142, 121, 238, 0.14), transparent 32%), linear-gradient(180deg, #090613 0%, #120d2d 40%, #1b1242 100%);
        overflow: hidden;
    }

.hero-section {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
}

        .hero-section > .container,
        .hero-section > .dashboard-container {
            width: 100%;
        }

.hero-row {
    width: 100%;
}

    .hero-section > .container-fluid {
        flex: 1;
        display: flex;
        flex-direction: column;
        min-height: 0;
        position: relative;
        z-index: 2;
    }

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-1 {
    width: 320px;
    height: 320px;
    background: rgba(91, 66, 199, 0.24);
    top: 40px;
    left: -100px;
}

.hero-glow-2 {
    width: 420px;
    height: 420px;
    background: rgba(142, 121, 238, 0.18);
    right: -120px;
    top: 150px;
}

.brand-logo {
    height: 52px;
    width: auto;
    display: block;
    object-fit: contain;
}

.top-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 0 14px;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.brand {
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 0.04em;
}

.nav-links {
    display: flex;
    gap: 28px;
}

    .nav-links a,
    .footer-links a {
        color: rgba(255, 255, 255, 0.78);
        text-decoration: none;
        transition: 0.3s ease;
    }

        .nav-links a:hover,
        .footer-links a:hover {
            color: var(--primary-5);
        }

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    background: linear-gradient(90deg, var(--primary), var(--primary-3));
    box-shadow: 0 12px 30px rgba(40, 22, 111, 0.32);
    transition: 0.3s ease;
    white-space: nowrap;
}

.hero-row {
    flex: 1;
    min-height: 0;
    position: relative;
    z-index: 2;
    padding: 10px 0 22px;
    align-items: center;
}

    .hero-row > [class*="col-"] {
        display: flex;
        min-height: 0;
    }

.hero-content {
    max-width: 540px;
    padding: 0;
    margin: auto 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
}

.hero-badge,
.section-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid rgba(142, 121, 238, 0.35);
    background: rgba(255, 255, 255, 0.04);
    color: #ddd5ff;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    line-height: 1.3;
    margin-bottom: 18px;
    backdrop-filter: blur(8px);
}

.hero-title {
    font-size: clamp(2.65rem, 3.4vw, 4.35rem);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.03em;
    margin: 0 0 16px;
    max-width: 8.6ch;
}

    .hero-title span {
        background: linear-gradient(90deg, #f0ebff 0%, #b4a1ff 45%, #d8ceff 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.hero-subtext {
    font-size: 1rem;
    line-height: 1.68;
    color: var(--text-soft);
    margin: 0 0 18px;
    max-width: 52ch;
}

.hero-feature-list {
    display: grid;
    gap: 10px;
    margin-bottom: 18px;
}

    .customer-fields {
    display: none;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

        .customer-fields.show {
            display: flex;
            flex-wrap: wrap;
            opacity: 1;
            transform: translateY(0);
            animation: fadeSlideDown 0.4s ease;
        }

.hero-feature,
.info-card,
.prize-card,
.faq-item,
.form-card,
.signup-copy {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, var(--surface-1), var(--surface-2));
    box-shadow: var(--shadow-main);
    backdrop-filter: blur(12px);
}
.form-prompt {
    display: none;
    margin-top: 6px;
    margin-bottom: 6px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(142, 121, 238, 0.35);
    background: rgba(91, 66, 199, 0.16);
    color: #f3efff;
    font-weight: 700;
    line-height: 1.5;
    animation: fadeSlideDown 0.25s ease;
}

    .form-prompt.show {
        display: block;
    }

.hero-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 16px;
}

.icon-circle,
.prize-icon-wrap {
    width: 42px;
    height: 42px;
    min-width: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-4));
    color: #fff;
    font-weight: 800;
    box-shadow: 0 0 24px rgba(91, 66, 199, 0.32);
}

.hero-feature h6 {
    margin: 0 0 4px;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}

.hero-feature p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.55;
    font-size: 0.92rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 0;
}

.btn-primary-custom,
.btn-secondary-custom,
.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 0 24px;
    border-radius: 14px;
    font-weight: 800;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    letter-spacing: 0.01em;
}

.btn-primary-custom,
.submit-btn {
    background: linear-gradient(90deg, var(--primary), var(--primary-3));
    color: #fff;
    box-shadow: var(--shadow-purple);
}

.btn-secondary-custom {
    border: 1px solid rgba(142, 121, 238, 0.45);
    color: #ddd5ff;
    background: rgba(255, 255, 255, 0.02);
}

    .btn-primary-custom:hover,
    .btn-secondary-custom:hover,
    .submit-btn:hover,
    .nav-cta:hover {
        transform: translateY(-2px);
        color: #fff;
    }

.showcase-wrap {
    position: relative;
    padding-top: 20px;
    margin: auto 0;
    width: 100%;
}

.floating-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
    padding: 10px 16px;
    border-radius: 999px;
    background: linear-gradient(90deg, #8e79ee, #d8ceff);
    color: #201050;
    font-size: 0.84rem;
    font-weight: 800;
    box-shadow: 0 10px 30px rgba(91, 66, 199, 0.25);
    white-space: nowrap;
}

.showcase-panel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.showcase-main {
    position: relative;
    width: 100%;
    max-width: 740px;
    height: clamp(420px, 55vh, 560px);
    border-radius: 32px;
    padding: 28px 18px 88px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)), radial-gradient(circle at center, rgba(91, 66, 199, 0.18), transparent 55%);
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.32);
}

.showcase-ring {
    position: absolute;
    inset: 10% 12% 24%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(142, 121, 238, 0.30), transparent 65%);
    filter: blur(25px);
    animation: pulsePurple 4s ease-in-out infinite;
}

@keyframes pulsePurple {
    0%, 100% {
        transform: scale(1);
        opacity: 0.88;
    }

    50% {
        transform: scale(1.08);
        opacity: 1;
    }
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(0.94) translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    padding: 20px 10px;
}

    .slide.active {
        opacity: 1;
        transform: scale(1) translateY(0);
        pointer-events: auto;
    }

.slide-image-wrap {
    position: relative;
    width: min(100%, 500px);
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

    .slide-image-wrap::before {
        content: "";
        position: absolute;
        width: 72%;
        height: 72%;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(142, 121, 238, 0.35), transparent 70%);
        filter: blur(25px);
        z-index: 0;
    }

.slide-image {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 280px;
    object-fit: contain;
    animation: floatItem 3.5s ease-in-out infinite;
    filter: drop-shadow(0 24px 30px rgba(0, 0, 0, 0.42));
}

@keyframes floatItem {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.slide-content {
    text-align: center;
    max-width: 520px;
    padding: 0 10px;
}

.slide-count {
    color: #d7cdff;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}

.slide-content h3 {
    margin: 0 0 10px;
    font-size: clamp(1.65rem, 2.4vw, 2.2rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.slide-content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-soft);
}

.showcase-stage {
    position: absolute;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%);
    width: min(90%, 430px);
}

.stage-top {
    height: 30px;
    border-radius: 999px;
    background: linear-gradient(180deg, #d9d0ff 0%, #7a64e8 100%);
    border: 4px solid rgba(255, 255, 255, 0.24);
    box-shadow: 0 12px 35px rgba(91, 66, 199, 0.34);
}

.stage-base {
    width: 88%;
    height: 20px;
    margin: -5px auto 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #40298f 0%, #1d114d 100%);
}

.showcase-arrow {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 50%;
    border: none;
    color: #fff;
    font-size: 1.15rem;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(10px);
    transition: 0.3s ease;
    z-index: 4;
}

    .showcase-arrow:hover {
        background: linear-gradient(135deg, var(--primary), var(--primary-4));
        transform: scale(1.05);
    }

.showcase-controls {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 18px;
}

.dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.24);
    transition: 0.3s ease;
}

    .dot.active {
        width: 34px;
        border-radius: 999px;
        background: linear-gradient(90deg, var(--primary-3), var(--primary-5));
        box-shadow: 0 0 20px rgba(91, 66, 199, 0.26);
    }

.progress-track {
    width: min(260px, 85%);
    height: 5px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.10);
    overflow: hidden;
}

.progress-line {
    width: 0%;
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-5));
    transition: width 0.2s linear;
}

.pattern-divider {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: min(90%, 1100px);
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.content-section {
    padding: 90px 0;
}

.alt-section {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
}

.section-heading {
    max-width: 760px;
    margin: 0 auto 46px;
}

    .section-heading h2 {
        font-size: clamp(2rem, 4vw, 3rem);
        font-weight: 900;
        margin: 0 0 12px;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .section-heading p {
        color: var(--text-soft);
        font-size: 1rem;
        line-height: 1.72;
        margin: 0 auto;
        max-width: 62ch;
    }

.info-card,
.prize-card,
.faq-item {
    border-radius: 24px;
    padding: 28px 24px;
    height: 100%;
}

.step-card {
    position: relative;
    overflow: hidden;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: rgba(207, 196, 255, 0.22);
    margin-bottom: 10px;
}

.info-card h4,
.prize-card h4,
.faq-item h4 {
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 0 10px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.info-card p,
.prize-card p,
.faq-item p,
.signup-copy p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
    font-size: 0.96rem;
}

.prize-card {
    text-align: left;
}

    .prize-card p {
        margin-bottom: 8px;
        color: rgba(255, 255, 255, 0.78);
    }

    .prize-card strong {
        color: #e4dcff;
    }

    .prize-card h4 {
        margin-bottom: 14px;
    }

.prize-icon-wrap {
    margin-bottom: 18px;
    font-size: 1rem;
}

.grand-card {
    background: linear-gradient(180deg, rgba(91, 66, 199, 0.24), rgba(255, 255, 255, 0.04));
}

.signup-copy,
.form-card {
    border-radius: 28px;
    padding: 30px 26px;
    height: 100%;
}

    .signup-copy h2 {
        font-size: clamp(2rem, 4vw, 2.8rem);
        font-weight: 900;
        margin: 0 0 14px;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

.signup-benefits {
    display: grid;
    gap: 10px;
    margin-top: 24px;
}

.signup-benefit {
    color: rgba(255, 255, 255, 0.82);
}

.form-label {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 700;
    margin-bottom: 8px;
}

.custom-input {
    min-height: 52px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    box-shadow: none !important;
}

    .custom-input:focus {
        border-color: rgba(142, 121, 238, 0.60);
        background: rgba(255, 255, 255, 0.08);
        color: #fff;
    }

textarea.custom-input {
    min-height: auto;
    padding-top: 12px;
}

.custom-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.submit-btn {
    width: 100%;
    min-height: 56px;
    font-size: 1rem;
}

.faq-list {
    display: grid;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.site-footer {
    padding: 32px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 6px;
}

.footer-text {
    margin: 0;
    color: rgba(255, 255, 255, 0.62);
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* =========================
   PRODUCT FORM
========================= */

.product-stack {
    display: grid;
    gap: 18px;
}

.product-item {
    border-radius: 24px;
}

.product-card,
.plan-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: 0.3s ease;
}

    .product-card:hover,
    .plan-card:hover {
        transform: translateY(-2px);
        border-color: rgba(142, 121, 238, 0.45);
        background: rgba(255, 255, 255, 0.07);
    }

    .product-card input,
    .plan-card input {
        position: absolute;
        opacity: 0;
        inset: 0;
        width: 100%;
        height: 100%;
        cursor: pointer;
    }

    .product-item.active > .product-card,
    .plan-card.active {
        border-color: #b19cff;
        background: linear-gradient(180deg, rgba(91, 66, 199, 0.20), rgba(255, 255, 255, 0.05));
        box-shadow: 0 16px 36px rgba(40, 22, 111, 0.18);
    }

.product-icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--primary), var(--primary-4));
    box-shadow: 0 12px 25px rgba(91, 66, 199, 0.25);
}

.product-title,
.plan-title {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.35;
}

.product-text,
.plan-text {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.65;
    font-size: 0.92rem;
}

.product-plans {
    display: none;
    padding: 16px 0 0;
}

.product-head {
    display: grid;
    gap: 12px;
}

.plan-toggle-btn {
    min-height: 46px;
    padding: 0 16px;
    border-radius: 14px;
    border: 1px solid rgba(142, 121, 238, 0.35);
    background: rgba(255, 255, 255, 0.04);
    color: #f3efff;
    font-weight: 700;
    transition: 0.3s ease;
}

    .plan-toggle-btn:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(142, 121, 238, 0.55);
    }

.form-prompt {
    display: none;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(142, 121, 238, 0.35);
    background: rgba(91, 66, 199, 0.16);
    color: #f3efff;
    font-weight: 700;
    line-height: 1.5;
    animation: fadeSlideDown 0.25s ease;
}

    .form-prompt.show {
        display: block;
    }

.product-item.active .product-plans {
    display: block;
    animation: fadeSlideDown 0.3s ease;
}

.plan-grid {
    display: grid;
    /*grid-template-columns: repeat(2, minmax(0, 1fr));*/
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 14px;
    padding: 6px 4px 0;
}

@keyframes fadeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media (min-width: 1200px) {
    .hero-section {
        min-height: 100vh;
        min-height: 100dvh;
    }
}

@media (min-width: 1400px) {
    .hero-content {
        max-width: 500px;
    }

    .hero-title {
        font-size: clamp(2.7rem, 3vw, 4rem);
        max-width: 8.4ch;
        margin-bottom: 14px;
    }

    .hero-subtext {
        max-width: 48ch;
        margin-bottom: 16px;
    }

    .hero-feature-list {
        gap: 8px;
        margin-bottom: 16px;
    }

    .hero-feature {
        padding: 11px 13px;
    }

    .showcase-main {
        max-width: 700px;
        height: clamp(430px, 52vh, 540px);
    }

    .slide-image {
        max-height: 270px;
    }

    .slide-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 1199.98px) {
    .showcase-main {
        height: clamp(400px, 50vh, 500px);
    }

    .slide-image {
        max-height: 250px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 4vw, 4rem);
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        min-height: unset;
        overflow: visible;
    }

    .top-nav {
        flex-wrap: wrap;
        padding-bottom: 18px;
    }

    .hero-row {
        padding-top: 10px;
        padding-bottom: 34px;
    }

        .hero-row > [class*="col-"] {
            min-height: auto;
        }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 26px;
    }

    .hero-title {
        max-width: 100%;
        font-size: clamp(2.4rem, 7vw, 3.8rem);
    }

    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
        max-width: 60ch;
    }

    .hero-actions {
        justify-content: center;
    }

    .showcase-wrap {
        margin: 0 auto;
    }

    .showcase-main {
        height: clamp(380px, 48vh, 470px);
        padding: 28px 16px 88px;
    }

    .content-section {
        padding: 72px 0;
    }
}

@media (max-width: 767.98px) {
    .brand-logo {
        height: 42px;
    }

    .brand {
        font-size: 1.8rem;
    }

    .top-nav {
        gap: 14px;
        padding-top: 22px;
    }

    .hero-title {
        font-size: clamp(2.15rem, 10vw, 3.2rem);
        line-height: 1.1;
        letter-spacing: -0.025em;
    }

    .hero-subtext {
        font-size: 0.97rem;
        line-height: 1.68;
    }

    .hero-feature-list {
        gap: 10px;
    }

    .hero-feature {
        padding: 12px 13px;
    }

        .hero-feature h6 {
            font-size: 0.97rem;
        }

        .hero-feature p {
            font-size: 0.9rem;
        }

    .showcase-panel {
        gap: 8px;
    }

    .showcase-main {
        height: 400px;
        border-radius: 24px;
        padding: 24px 12px 78px;
    }

    .slide {
        padding: 18px 8px;
    }

    .slide-image {
        max-height: 190px;
    }

    .slide-content h3 {
        font-size: 1.6rem;
    }

    .slide-content p {
        font-size: 0.92rem;
        line-height: 1.6;
    }

    .showcase-arrow {
        width: 42px;
        height: 42px;
        min-width: 42px;
    }

    .stage-top {
        height: 24px;
    }

    .stage-base {
        height: 16px;
    }

    .info-card,
    .prize-card,
    .faq-item,
    .signup-copy,
    .form-card {
        border-radius: 20px;
        padding: 22px 18px;
    }

        .section-heading h2,
        .signup-copy h2 {
            line-height: 1.18;
        }

        .section-heading p,
        .info-card p,
        .prize-card p,
        .faq-item p,
        .signup-copy p,
        .product-text,
        .plan-text {
            font-size: 0.94rem;
            line-height: 1.68;
        }

    .plan-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .promo-page .container-fluid {
        padding-left: 18px !important;
        padding-right: 18px !important;
    }

    .top-nav {
        padding-top: 20px;
    }

    .nav-links {
        gap: 18px;
        width: 100%;
        justify-content: center;
        order: 3;
    }

    .nav-cta {
        width: 100%;
    }

    .hero-actions .btn-primary-custom,
    .hero-actions .btn-secondary-custom {
        width: 100%;
    }

    .showcase-panel {
        flex-direction: column;
    }

    .showcase-main {
        height: 360px;
        width: 100%;
    }

    .floating-badge {
        font-size: 0.76rem;
        padding: 8px 12px;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================
   DASHBOARD PAGE
========================= */

.dashboard-page {
    min-height: calc(100vh - 0px);
    padding: 40px 0;
}

.dashboard-header {
    /*    display: flex;
    flex-direction: column;
    gap: 8px;*/

    max-width: 1200px;
    margin: 0 auto 20px auto;
}

.dashboard-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin: 0;
}

.dashboard-subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

.dashboard-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    overflow: hidden;
    max-width: 100%;
    overflow-x: auto;
}

.table-responsive {
    overflow-x: auto;
}

.dashboard-table {
    color: #fff;
    margin: 0;
}

    .dashboard-table thead th {
        background: rgba(255, 255, 255, 0.06);
        color: #ddd5ff;
        font-weight: 800;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        white-space: nowrap;
        padding: 16px;
    }

    .dashboard-table thead th {
        border-top: 1px solid rgba(255, 255, 255, 0.06);
        padding: 12px 14px;
        color: rgba(255, 255, 255, 0.86);
        vertical-align: middle;
    }

    .dashboard-table tbody tr:hover {
        background: rgba(255, 255, 255, 0.03);
    }

.pagination-wrap {
    display: flex;
    justify-content: flex-end;
}

.custom-pagination .page-link {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    margin-left: 6px;
    border-radius: 10px;
}

.custom-pagination .page-item.active .page-link {
    background: linear-gradient(90deg, var(--primary), var(--primary-3));
    border-color: transparent;
    color: #fff;
}

.custom-pagination .page-item.disabled .page-link {
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.4);
    border-color: rgba(255, 255, 255, 0.05);
}
