/* =========================================================
   STAR BOOKING AGENCY
   DARK MODE ONLY
   ========================================================= */

:root {
    --purple: #8b5cf6;
    --purple2: #c026d3;
    --purple3: #a855f7;

    --ink: #ffffff;
    --muted: #b7aeca;
    --white: #ffffff;

    --soft: #100a18;

    --body-bg:
        radial-gradient(
            circle at 10% 10%,
            rgba(109, 40, 217, 0.16),
            transparent 30%
        ),
        radial-gradient(
            circle at 90% 20%,
            rgba(192, 38, 211, 0.12),
            transparent 30%
        ),
        linear-gradient(
            135deg,
            #09060d 0%,
            #100a18 50%,
            #160c21 100%
        );

    --surface: rgba(24, 16, 36, 0.72);
    --surface-solid: #181023;
    --surface-soft: rgba(22, 14, 32, 0.72);

    --header-bg: rgba(10, 7, 15, 0.90);

    --text: #ffffff;
    --text-soft: #d0c6dc;
    --text-muted: #a99db9;

    --border: rgba(255, 255, 255, 0.09);
    --border-strong: rgba(168, 85, 247, 0.35);

    --shadow:
        0 25px 75px rgba(0, 0, 0, 0.42);

    --shadow-soft:
        0 15px 40px rgba(0, 0, 0, 0.28);

    --radius-sm: 10px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 25px;

    --transition-fast: 0.2s ease;
    --transition: 0.3s ease;

    color-scheme: dark;
}


/* =========================================================
   RESET
   ========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;

    background: #09060d;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family:
        Inter,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;

    color: var(--text);

    background: var(--body-bg);

    line-height: 1.65;

    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

button,
input,
textarea,
select {
    font: inherit;
}

button {
    border: 0;
}

a {
    color: inherit;
}

::selection {
    background: rgba(139, 92, 246, 0.35);
    color: #ffffff;
}


/* =========================================================
   CONTAINER
   ========================================================= */

.sb-container {
    width: min(1180px, calc(100% - 36px));
    margin: 0 auto;
}


/* =========================================================
   HEADER
   ========================================================= */

.sb-header {
    position: sticky;
    top: 0;
    z-index: 1000;

    background: var(--header-bg);

    border-bottom: 1px solid var(--border);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.12);
}

.sb-header-inner {
    min-height: 78px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 25px;
}


/* =========================================================
   BRAND
   ========================================================= */

.sb-brand {
    display: flex;
    align-items: center;

    gap: 11px;

    text-decoration: none;

    color: var(--text);

    flex-shrink: 0;
}

.sb-brand-logo {
    width: 47px;
    height: 47px;

    object-fit: contain;

    border-radius: 12px;
}

.sb-brand-text {
    display: flex;
    flex-direction: column;

    line-height: 1.15;
}

.sb-brand-text strong {
    font-size: 15px;
    font-weight: 900;
}

.sb-brand-text small {
    margin-top: 4px;

    font-size: 9px;

    color: var(--text-muted);

    letter-spacing: 0.04em;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.sb-desktop-nav {
    display: flex;
    align-items: center;

    gap: 5px;
}

.sb-desktop-nav a {
    padding: 10px 12px;

    border-radius: 10px;

    text-decoration: none;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 700;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.sb-desktop-nav a:hover {
    color: #c4a8ff;

    background:
        rgba(139, 92, 246, 0.13);

    transform: translateY(-1px);
}

.sb-desktop-nav a.active {
    color: #c4a8ff;

    background:
        rgba(139, 92, 246, 0.14);
}

.sb-desktop-nav .sb-nav-login {
    margin-left: 8px;

    border: 1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.025);
}

.sb-desktop-nav .sb-nav-register {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple2)
        );

    box-shadow:
        0 8px 25px rgba(109, 40, 217, 0.25);
}

.sb-desktop-nav .sb-nav-register:hover {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #7c3aed,
            #a21caf
        );
}


/* =========================================================
   MOBILE MENU
   ========================================================= */

.sb-menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.04);

    border-radius: 11px;

    align-items: center;
    justify-content: center;

    flex-direction: column;

    gap: 4px;

    cursor: pointer;
}

.sb-menu-toggle span {
    width: 18px;
    height: 2px;

    border-radius: 5px;

    background: var(--purple);

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}

.sb-menu-toggle.active span:nth-child(1) {
    transform:
        translateY(6px)
        rotate(45deg);
}

.sb-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.sb-menu-toggle.active span:nth-child(3) {
    transform:
        translateY(-6px)
        rotate(-45deg);
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

.sb-mobile-menu {
    display: none;

    max-height: 0;

    overflow: hidden;

    background:
        rgba(10, 7, 15, 0.97);

    border-top:
        1px solid transparent;

    transition:
        max-height 0.35s ease,
        border-color 0.35s ease;
}

.sb-mobile-menu.open,
.sb-mobile-menu.is-open {
    max-height: 650px;

    border-top-color:
        var(--border);
}

.sb-mobile-menu-inner {
    padding:
        10px 0 18px;
}

.sb-mobile-menu a {
    display: block;

    padding: 12px 10px;

    border-radius: 9px;

    text-decoration: none;

    color: var(--text-soft);

    font-size: 12px;
    font-weight: 800;

    transition:
        color var(--transition-fast),
        background var(--transition-fast),
        padding-left var(--transition-fast);
}

.sb-mobile-menu a:hover {
    color: #c4a8ff;

    background:
        rgba(139, 92, 246, 0.10);

    padding-left: 14px;
}

.sb-mobile-menu a.active {
    color: #c4a8ff;

    background:
        rgba(139, 92, 246, 0.14);
}

.sb-mobile-actions {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9px;

    margin-top: 7px;
}

.sb-mobile-login {
    text-align: center;

    border:
        1px solid var(--border);
}

.sb-mobile-register {
    text-align: center !important;

    color: #ffffff !important;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple2)
        );
}


/* =========================================================
   MAIN
   ========================================================= */

.sb-main {
    min-height: 70vh;

    overflow: hidden;
}


/* =========================================================
   HERO
   ========================================================= */

.sb-hero {
    position: relative;

    overflow: hidden;

    min-height: 690px;

    display: flex;
    align-items: center;

    padding: 95px 0 110px;

    color: #ffffff;

    background-image:
        linear-gradient(
            90deg,
            rgba(15, 4, 29, 0.94) 0%,
            rgba(43, 11, 70, 0.84) 38%,
            rgba(91, 33, 182, 0.56) 68%,
            rgba(15, 4, 29, 0.58) 100%
        ),
        url("../images/celebrity-party-hero.jpg");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;

    isolation: isolate;
}

.sb-hero-overlay {
    position: absolute;

    inset: 0;

    z-index: -1;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(255, 255, 255, 0.09),
            transparent 28%
        ),
        radial-gradient(
            circle at 85% 15%,
            rgba(192, 38, 211, 0.20),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(7, 3, 12, 0.40)
        );
}

.sb-hero::after {
    content: "";

    position: absolute;

    width: 520px;
    height: 520px;

    right: -240px;
    bottom: -280px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.13);

    box-shadow:
        0 0 0 70px rgba(255, 255, 255, 0.018),
        0 0 0 140px rgba(255, 255, 255, 0.012);

    pointer-events: none;
}

.sb-hero-grid {
    position: relative;

    z-index: 2;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    gap: 60px;

    align-items: center;
}

.sb-hero-content {
    position: relative;
    z-index: 3;
}

.sb-eyebrow {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    padding: 7px 11px;

    border:
        1px solid rgba(255, 255, 255, 0.25);

    border-radius: 999px;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

.sb-hero h1 {
    margin: 18px 0 16px;

    max-width: 750px;

    font-size:
        clamp(40px, 6vw, 70px);

    line-height: 1.02;

    letter-spacing: -0.045em;
}

.sb-hero h1 span {
    color: #d8b4fe;

    text-shadow:
        0 0 35px rgba(192, 38, 211, 0.35);
}

.sb-hero p {
    max-width: 670px;

    margin: 0;

    color:
        rgba(255, 255, 255, 0.82);

    font-size: 16px;
}

.sb-hero-actions {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 28px;
}


/* =========================================================
   HERO TRUST
   ========================================================= */

.sb-hero-trust {
    display: flex;

    flex-wrap: wrap;

    gap: 18px;

    margin-top: 28px;
}

.sb-trust-item {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, 0.70);

    font-size: 10px;
    font-weight: 700;
}

.sb-trust-item i {
    color:
        #c4a8ff;
}


/* =========================================================
   BUTTONS
   ========================================================= */

.sb-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    min-height: 45px;

    padding: 13px 19px;

    border-radius: 12px;

    text-decoration: none;

    font-size: 12px;
    font-weight: 800;

    cursor: pointer;

    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.sb-btn:hover {
    transform: translateY(-2px);
}

.sb-btn:active {
    transform: translateY(0);
}

.sb-btn-primary {
    background: #ffffff;

    color: #6d28d9;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.25);
}

.sb-btn-primary:hover {
    color: #5b21b6;

    box-shadow:
        0 17px 38px rgba(0, 0, 0, 0.32);
}

.sb-btn-light {
    border:
        1px solid rgba(255, 255, 255, 0.25);

    color: #ffffff;

    background:
        rgba(255, 255, 255, 0.08);

    backdrop-filter: blur(10px);
}

.sb-btn-light:hover {
    background:
        rgba(255, 255, 255, 0.15);
}


/* =========================================================
   HERO PANEL
   ========================================================= */

.sb-hero-panel {
    padding: 23px;

    border:
        1px solid rgba(255, 255, 255, 0.16);

    border-radius: 25px;

    background:
        rgba(255, 255, 255, 0.075);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    transition:
        transform 0.3s ease,
        border-color 0.3s ease;
}

.sb-hero-panel:hover {
    transform:
        translateY(-4px);

    border-color:
        rgba(192, 38, 211, 0.35);
}

.sb-panel-top {
    display: flex;

    align-items: flex-start;

    justify-content: space-between;

    gap: 20px;
}

.sb-panel-label {
    display: block;

    margin-bottom: 6px;

    color:
        #c4a8ff;

    font-size: 9px;

    font-weight: 900;

    letter-spacing: 0.12em;
}

.sb-hero-panel h3 {
    margin: 0;

    font-size: 19px;
}

.sb-hero-panel p {
    margin: 12px 0 17px;

    font-size: 12px;

    color:
        rgba(255, 255, 255, 0.72);
}

.sb-panel-icon {
    width: 42px;
    height: 42px;

    flex: 0 0 42px;

    display: grid;
    place-items: center;

    border-radius: 13px;

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.28),
            rgba(192, 38, 211, 0.25)
        );

    color:
        #d8b4fe;

    border:
        1px solid rgba(255, 255, 255, 0.10);
}


/* =========================================================
   MINI CARDS
   ========================================================= */

.sb-mini-card {
    display: flex;

    align-items: center;

    gap: 12px;

    padding: 13px;

    border-radius: 15px;

    background:
        rgba(255, 255, 255, 0.055);

    border:
        1px solid rgba(255, 255, 255, 0.08);

    margin-top: 9px;

    transition:
        transform var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast);
}

.sb-mini-card:hover {
    transform:
        translateX(4px);

    background:
        rgba(255, 255, 255, 0.09);

    border-color:
        rgba(139, 92, 246, 0.28);
}

.sb-mini-icon {
    width: 36px;
    height: 36px;

    flex: 0 0 36px;

    border-radius: 11px;

    display: grid;
    place-items: center;

    background:
        linear-gradient(
            135deg,
            #8b5cf6,
            #c026d3
        );

    color: #ffffff;

    font-weight: 900;
}

.sb-mini-card strong,
.sb-mini-card span {
    display: block;
}

.sb-mini-card strong {
    font-size: 11px;
}

.sb-mini-card span {
    margin-top: 2px;

    font-size: 10px;

    color:
        rgba(255, 255, 255, 0.57);
}


/* =========================================================
   SECTIONS
   ========================================================= */

.sb-section {
    position: relative;

    padding: 78px 0;
}

.sb-section-alt {
    background:
        rgba(10, 6, 16, 0.48);

    border-top:
        1px solid rgba(255, 255, 255, 0.04);

    border-bottom:
        1px solid rgba(255, 255, 255, 0.04);
}


/* =========================================================
   SECTION HEAD
   ========================================================= */

.sb-section-head {
    text-align: center;

    max-width: 760px;

    margin:
        0 auto 35px;
}

.sb-kicker {
    color:
        #a78bfa;

    font-size: 11px;

    font-weight: 900;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.sb-section h2 {
    margin: 8px 0 12px;

    font-size:
        clamp(27px, 4vw, 42px);

    line-height: 1.12;

    letter-spacing: -0.03em;

    color: var(--text);
}

.sb-section-head p {
    margin: 0;

    color: var(--text-muted);

    font-size: 14px;
}


/* =========================================================
   ABOUT
   ========================================================= */

.sb-about-grid {
    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 18px;

    align-items: stretch;
}


/* =========================================================
   CARDS
   ========================================================= */

.sb-card {
    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius: 20px;

    box-shadow:
        var(--shadow);

    padding: 28px;

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition),
        background var(--transition);
}

.sb-card:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--border-strong);

    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.38);
}

.sb-card h3 {
    color: var(--text);
}

.sb-card p {
    color: var(--text-muted);

    font-size: 13px;
}

.sb-card-icon {
    width: 45px;
    height: 45px;

    display: grid;
    place-items: center;

    margin-bottom: 16px;

    border-radius: 13px;

    background:
        rgba(139, 92, 246, 0.14);

    color:
        #c4a8ff;

    border:
        1px solid rgba(139, 92, 246, 0.18);
}


/* =========================================================
   INLINE LINK
   ========================================================= */

.sb-inline-link {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    margin-top: 10px;

    color:
        #b99aff;

    text-decoration: none;

    font-size: 11px;

    font-weight: 800;

    transition:
        gap var(--transition-fast),
        color var(--transition-fast);
}

.sb-inline-link:hover {
    gap: 11px;

    color:
        #d8b4fe;
}


/* =========================================================
   STATISTICS
   ========================================================= */

.sb-stat-grid {
    display: grid;

    grid-template-columns:
        repeat(2, 1fr);

    gap: 12px;

    height: 100%;
}

.sb-stat {
    min-height: 140px;

    padding: 18px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.10),
            rgba(192, 38, 211, 0.07)
        );

    border:
        1px solid var(--border);

    transition:
        transform var(--transition-fast),
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.sb-stat:hover {
    transform:
        translateY(-3px);

    border-color:
        var(--border-strong);

    background:
        linear-gradient(
            135deg,
            rgba(139, 92, 246, 0.15),
            rgba(192, 38, 211, 0.10)
        );
}

.sb-stat strong {
    display: block;

    font-size: 23px;

    color:
        #c4a8ff;

    margin-bottom: 8px;
}

.sb-stat span {
    font-size: 11px;

    color: var(--text-muted);
}


/* =========================================================
   HOW IT WORKS
   ========================================================= */

.sb-how-grid {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 18px;
}

.sb-step {
    position: relative;
}

.sb-number {
    width: 42px;
    height: 42px;

    border-radius: 13px;

    display: grid;
    place-items: center;

    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            var(--purple),
            var(--purple2)
        );

    font-size: 11px;

    font-weight: 900;

    margin-bottom: 15px;

    box-shadow:
        0 10px 28px rgba(109, 40, 217, 0.25);
}

.sb-step h3,
.sb-reason h3 {
    font-size: 15px;

    margin:
        0 0 7px;

    color: var(--text);
}

.sb-step p,
.sb-reason p {
    margin: 0;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   WHY CHOOSE US
   ========================================================= */

.sb-reasons {
    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 18px;
}

.sb-reason {
    padding: 21px;

    border-radius: 18px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    box-shadow:
        var(--shadow-soft);

    backdrop-filter: blur(12px);

    transition:
        transform var(--transition),
        border-color var(--transition),
        box-shadow var(--transition);
}

.sb-reason:hover {
    transform:
        translateY(-5px);

    border-color:
        var(--border-strong);

    box-shadow:
        var(--shadow);
}

.sb-reason-icon {
    width: 38px;
    height: 38px;

    border-radius: 12px;

    background:
        rgba(139, 92, 246, 0.13);

    color:
        #c4a8ff;

    display: grid;
    place-items: center;

    font-weight: 900;

    margin-bottom: 14px;

    border:
        1px solid rgba(139, 92, 246, 0.14);
}


/* =========================================================
   CTA
   ========================================================= */

.sb-cta-section {
    padding-top: 50px;
}

.sb-cta {
    position: relative;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    padding: 38px;

    border-radius: 25px;

    background:
        linear-gradient(
            135deg,
            rgba(109, 40, 217, 0.30),
            rgba(192, 38, 211, 0.18)
        );

    border:
        1px solid rgba(168, 85, 247, 0.28);

    box-shadow:
        0 25px 70px rgba(0, 0, 0, 0.30);

    backdrop-filter: blur(15px);
}

.sb-cta::before {
    content: "";

    position: absolute;

    width: 300px;
    height: 300px;

    right: -150px;
    top: -160px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.10);
}

.sb-cta-content {
    position: relative;
    z-index: 1;
}

.sb-cta h2 {
    margin:
        7px 0 8px;

    font-size:
        clamp(25px, 4vw, 36px);

    color: #ffffff;
}

.sb-cta p {
    margin: 0;

    max-width: 600px;

    color:
        rgba(255, 255, 255, 0.68);

    font-size: 13px;
}

.sb-cta-actions {
    position: relative;
    z-index: 2;

    display: flex;

    gap: 10px;

    flex-wrap: wrap;
}


/* =========================================================
   FAQ
   ========================================================= */

.sb-faq {
    max-width: 850px;

    margin: auto;
}

.sb-faq details {
    background:
        var(--surface);

    border:
        1px solid var(--border);

    border-radius: 15px;

    margin: 9px 0;

    padding:
        0 17px;

    box-shadow:
        var(--shadow-soft);

    backdrop-filter: blur(12px);

    transition:
        border-color var(--transition),
        background var(--transition);
}

.sb-faq details:hover {
    border-color:
        var(--border-strong);
}

.sb-faq details[open] {
    border-color:
        rgba(168, 85, 247, 0.30);

    background:
        rgba(27, 17, 40, 0.90);
}

.sb-faq summary {
    cursor: pointer;

    list-style: none;

    padding:
        17px 2px;

    font-weight: 800;

    font-size: 13px;

    color: var(--text);
}

.sb-faq summary::-webkit-details-marker {
    display: none;
}

.sb-faq summary::after {
    content: "+";

    float: right;

    color:
        #a78bfa;

    font-size: 17px;

    line-height: 1;
}

.sb-faq details[open] summary::after {
    content: "−";
}

.sb-faq p {
    padding:
        0 2px 17px;

    margin: 0;

    color: var(--text-muted);

    font-size: 12px;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.sb-marquee-wrap {
    overflow: hidden;

    margin-top: 30px;

    width: 100%;
}

.sb-marquee {
    display: flex;

    gap: 16px;

    width: max-content;

    animation:
        sb-scroll 55s linear infinite;

    will-change: transform;
}

.sb-marquee:hover {
    animation-play-state: paused;
}

.sb-testimonial {
    width: 310px;

    flex:
        0 0 310px;

    padding: 20px;

    border-radius: 18px;

    background:
        var(--surface);

    border:
        1px solid var(--border);

    box-shadow:
        var(--shadow-soft);

    backdrop-filter: blur(12px);

    transition:
        transform var(--transition),
        border-color var(--transition);
}

.sb-testimonial:hover {
    transform:
        translateY(-4px);

    border-color:
        var(--border-strong);
}

.sb-stars {
    color:
        #a78bfa;

    letter-spacing: 2px;

    font-size: 11px;
}

.sb-testimonial p {
    min-height: 62px;

    font-size: 12px;

    color: var(--text-muted);
}

.sb-testimonial strong {
    display: block;

    font-size: 12px;

    color: var(--text);
}

.sb-testimonial small {
    display: block;

    margin-top: 3px;

    font-size: 10px;

    color:
        #887b9b;
}

@keyframes sb-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}


/* =========================================================
   PAGE HERO
   ========================================================= */

.sb-page-hero {
    position: relative;

    overflow: hidden;

    padding: 65px 0;

    background:
        linear-gradient(
            135deg,
            #3b0764,
            #6d28d9 55%,
            #a21caf
        );

    color: #ffffff;
}

.sb-page-hero::before {
    content: "";

    position: absolute;

    width: 350px;
    height: 350px;

    right: -130px;
    top: -180px;

    border-radius: 50%;

    border:
        1px solid rgba(255, 255, 255, 0.13);
}

.sb-page-hero h1 {
    position: relative;

    margin: 0;

    font-size:
        clamp(32px, 5vw, 52px);

    letter-spacing: -0.04em;
}

.sb-page-hero p {
    position: relative;

    max-width: 690px;

    color:
        rgba(255, 255, 255, 0.78);

    font-size: 14px;
}


/* =========================================================
   CONTACT
   ========================================================= */

.sb-contact-grid {
    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 20px;
}


/* =========================================================
   FORMS
   ========================================================= */

.sb-form {
    display: grid;

    gap: 13px;
}

.sb-form label {
    font-size: 11px;

    font-weight: 800;

    color: var(--text);
}

.sb-form input,
.sb-form textarea,
.sb-form select {
    width: 100%;

    border:
        1px solid var(--border);

    background:
        rgba(255, 255, 255, 0.045);

    color:
        var(--text);

    border-radius: 11px;

    padding:
        12px 13px;

    font: inherit;

    font-size: 12px;

    outline: none;

    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast);
}

.sb-form input::placeholder,
.sb-form textarea::placeholder {
    color:
        #80758f;
}

.sb-form input:focus,
.sb-form textarea:focus,
.sb-form select:focus {
    border-color:
        var(--purple3);

    background:
        rgba(139, 92, 246, 0.06);

    box-shadow:
        0 0 0 4px rgba(124, 58, 237, 0.10);
}

.sb-form textarea {
    min-height: 145px;

    resize: vertical;
}

.sb-form option {
    background:
        #181023;

    color:
        #ffffff;
}


/* =========================================================
   LEGAL
   ========================================================= */

.sb-legal {
    max-width: 900px;

    margin: auto;
}

.sb-legal h2 {
    font-size: 20px;

    margin-top: 34px;

    color: var(--text);
}

.sb-legal h3 {
    font-size: 16px;

    margin-top: 25px;

    color: var(--text);
}

.sb-legal p,
.sb-legal li {
    font-size: 13px;

    color: var(--text-muted);
}

.sb-legal a {
    color:
        #b99aff;

    font-weight: 700;
}


/* =========================================================
   AUTH
   ========================================================= */

.sb-auth {
    padding: 70px 0;

    min-height:
        calc(100vh - 78px);

    display: grid;

    place-items: center;
}

.sb-auth-card {
    width:
        min(500px, 100%);

    padding: 32px;

    border-radius: 24px;

    background:
        rgba(24, 16, 36, 0.80);

    border:
        1px solid var(--border);

    box-shadow:
        var(--shadow);

    backdrop-filter: blur(18px);
}

.sb-auth-card h1 {
    margin:
        0 0 8px;

    color: var(--text);
}

.sb-auth-card > p {
    color:
        var(--text-muted);

    font-size: 12px;
}

.sb-alert {
    padding:
        11px 13px;

    border-radius: 10px;

    background:
        rgba(139, 92, 246, 0.12);

    color:
        #c4a8ff;

    border:
        1px solid rgba(139, 92, 246, 0.20);

    font-size: 11px;

    margin: 12px 0;
}

.sb-auth-footer {
    text-align: center;

    font-size: 11px;

    color:
        var(--text-muted);

    margin-top: 15px;
}

.sb-auth-footer a {
    color:
        #b99aff;

    font-weight: 800;
}


/* =========================================================
   FOOTER
   ========================================================= */

.sb-fallback-footer {
    padding:
        55px 0 0;

    background:
        #09050f;

    color:
        #dcd3ea;

    border-top:
        1px solid rgba(255, 255, 255, 0.06);
}

.sb-footer-grid {
    display: grid;

    grid-template-columns:
        2fr 1fr 1fr;

    gap: 30px;

    padding-bottom: 35px;
}

.sb-fallback-footer a {
    display: block;

    color:
        #dcd3ea;

    text-decoration: none;

    font-size: 12px;

    margin: 8px 0;

    transition:
        color var(--transition-fast),
        transform var(--transition-fast);
}

.sb-fallback-footer a:hover {
    color:
        #ffffff;

    transform:
        translateX(3px);
}

.sb-fallback-footer h3 {
    font-size: 12px;

    color:
        #ffffff;
}

.sb-footer-brand {
    font-size: 20px !important;

    font-weight: 900;

    color:
        #ffffff !important;
}

.sb-fallback-footer p {
    max-width: 430px;

    color:
        #aaa0bd;

    font-size: 12px;
}

.sb-footer-bottom {
    border-top:
        1px solid rgba(255, 255, 255, 0.08);

    padding:
        18px 0;

    font-size: 10px;

    color:
        #9b90ad;
}


/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.sb-reveal,
.sb-reveal-up,
.sb-reveal-left,
.sb-reveal-right,
.sb-reveal-scale {
    opacity: 0;

    transition:
        opacity 0.8s ease,
        transform 0.8s cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}

.sb-reveal,
.sb-reveal-up {
    transform:
        translateY(45px);
}

.sb-reveal-left {
    transform:
        translateX(-55px);
}

.sb-reveal-right {
    transform:
        translateX(55px);
}

.sb-reveal-scale {
    transform:
        scale(0.90);
}

.sb-reveal.is-visible,
.sb-reveal-up.is-visible,
.sb-reveal-left.is-visible,
.sb-reveal-right.is-visible,
.sb-reveal-scale.is-visible {
    opacity: 1;

    transform:
        translate3d(0, 0, 0)
        scale(1);
}


/* =========================================================
   STAGGER
   ========================================================= */

.sb-delay-1 {
    transition-delay: 0.08s;
}

.sb-delay-2 {
    transition-delay: 0.16s;
}

.sb-delay-3 {
    transition-delay: 0.24s;
}

.sb-delay-4 {
    transition-delay: 0.32s;
}

.sb-delay-5 {
    transition-delay: 0.40s;
}

.sb-delay-6 {
    transition-delay: 0.48s;
}


/* =========================================================
   HERO ANIMATION
   ========================================================= */

@keyframes sb-fade-up {
    from {
        opacity: 0;

        transform:
            translateY(30px);
    }

    to {
        opacity: 1;

        transform:
            translateY(0);
    }
}

@keyframes sb-floating {
    0%,
    100% {
        transform:
            translateY(0);
    }

    50% {
        transform:
            translateY(-7px);
    }
}

.sb-hero .sb-eyebrow {
    animation:
        sb-fade-up
        0.7s
        ease
        both;
}

.sb-hero h1 {
    animation:
        sb-fade-up
        0.8s
        0.08s
        ease
        both;
}

.sb-hero-content > p {
    animation:
        sb-fade-up
        0.8s
        0.16s
        ease
        both;
}

.sb-hero-actions {
    animation:
        sb-fade-up
        0.8s
        0.24s
        ease
        both;
}

.sb-hero-trust {
    animation:
        sb-fade-up
        0.8s
        0.32s
        ease
        both;
}

.sb-hero-panel {
    animation:
        sb-fade-up
        0.9s
        0.20s
        ease
        both,
        sb-floating
        5s
        1.1s
        ease-in-out
        infinite;
}


/* =========================================================
   FOCUS
   ========================================================= */

:focus-visible {
    outline:
        3px solid rgba(139, 92, 246, 0.45);

    outline-offset:
        3px;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

    .sb-reasons {
        grid-template-columns:
            repeat(3, 1fr);
    }

    .sb-hero-grid {
        gap: 40px;
    }

    .sb-desktop-nav {
        gap: 2px;
    }

    .sb-desktop-nav a {
        padding:
            9px;

        font-size:
            11px;
    }
}


/* =========================================================
   MOBILE NAV
   ========================================================= */

@media (max-width: 950px) {

    .sb-desktop-nav {
        display: none;
    }

    .sb-menu-toggle {
        display: flex;
    }

    .sb-mobile-menu {
        display: block;
    }

    .sb-hero-grid,
    .sb-about-grid,
    .sb-contact-grid {
        grid-template-columns:
            1fr;
    }

    .sb-hero {
        min-height:
            auto;

        padding:
            75px 0 85px;

        background-position:
            center center;
    }

    .sb-hero-grid {
        gap:
            35px;
    }

    .sb-reasons {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sb-how-grid {
        grid-template-columns:
            1fr;
    }

    .sb-footer-grid {
        grid-template-columns:
            1fr 1fr;
    }

    .sb-hero-panel {
        max-width:
            620px;

        margin:
            0 auto;
    }

    .sb-cta {
        flex-direction:
            column;

        align-items:
            flex-start;
    }
}


/* =========================================================
   SMALL TABLET
   ========================================================= */

@media (max-width: 760px) {

    .sb-container {
        width:
            min(
                100% - 30px,
                1180px
            );
    }

    .sb-section {
        padding:
            62px 0;
    }

    .sb-stat-grid {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .sb-card {
        padding:
            23px;
    }

    .sb-testimonial {
        width:
            285px;

        flex-basis:
            285px;
    }
}


/* =========================================================
   PHONE
   ========================================================= */

@media (max-width: 560px) {

    .sb-container {
        width:
            min(
                100% - 26px,
                1180px
            );
    }

    .sb-header-inner {
        min-height:
            70px;
    }

    .sb-brand-logo {
        width:
            42px;

        height:
            42px;
    }

    .sb-brand-text strong {
        font-size:
            14px;
    }

    .sb-brand-text small {
        display:
            none;
    }

    .sb-menu-toggle {
        width:
            40px;

        height:
            40px;
    }

    .sb-mobile-actions {
        grid-template-columns:
            1fr;
    }

    .sb-hero {
        padding:
            62px 0 70px;

        background-position:
            58% center;
    }

    .sb-hero h1 {
        font-size:
            42px;
    }

    .sb-hero p {
        font-size:
            14px;
    }

    .sb-hero-actions {
        display:
            grid;

        grid-template-columns:
            1fr;

        width:
            100%;
    }

    .sb-btn {
        width:
            100%;
    }

    .sb-hero-trust {
        display:
            grid;

        grid-template-columns:
            1fr;

        gap:
            9px;
    }

    .sb-hero-panel {
        padding:
            18px;

        border-radius:
            20px;
    }

    .sb-section {
        padding:
            55px 0;
    }

    .sb-section h2 {
        font-size:
            30px;
    }

    .sb-section-head {
        margin-bottom:
            28px;
    }

    .sb-section-head p {
        font-size:
            13px;
    }

    .sb-reasons,
    .sb-stat-grid {
        grid-template-columns:
            1fr;
    }

    .sb-card {
        padding:
            21px;

        border-radius:
            17px;
    }

    .sb-stat {
        min-height:
            120px;
    }

    .sb-cta {
        padding:
            27px 22px;

        border-radius:
            20px;
    }

    .sb-cta-actions {
        width:
            100%;

        display:
            grid;

        grid-template-columns:
            1fr;
    }

    .sb-footer-grid {
        grid-template-columns:
            1fr;
    }

    .sb-footer-bottom {
        text-align:
            center;
    }

    .sb-testimonial {
        width:
            275px;

        flex-basis:
            275px;
    }

    .sb-auth {
        padding:
            45px 0;

        min-height:
            calc(100vh - 70px);
    }

    .sb-auth-card {
        padding:
            23px;

        border-radius:
            20px;
    }
}


/* =========================================================
   EXTRA SMALL PHONE
   ========================================================= */

@media (max-width: 380px) {

    .sb-container {
        width:
            calc(100% - 22px);
    }

    .sb-hero h1 {
        font-size:
            36px;
    }

    .sb-hero-panel {
        padding:
            15px;
    }

    .sb-mini-card {
        padding:
            11px;
    }

    .sb-section h2 {
        font-size:
            27px;
    }
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

    .sb-reveal,
    .sb-reveal-up,
    .sb-reveal-left,
    .sb-reveal-right,
    .sb-reveal-scale {
        opacity:
            1 !important;

        transform:
            none !important;
    }
}