/* ============================================================
   EventMeNow – Dark / Light Gradient Theme
   ============================================================ */

/* ──────────────────────────────────────────────────────────
   Variables
   ────────────────────────────────────────────────────────── */
:root {
    --primary: #7c3aed;
    --primary-dark: #6d28d9;
    --primary-light: #a78bfa;
    --primary-soft: rgba(124, 58, 237, 0.12);
    --accent: #06b6d4;
    --accent-pink: #ec4899;
    --secondary: #f43f5e;

    --gradient-main: linear-gradient(135deg, #7c3aed, #3b82f6);
    --gradient-warm: linear-gradient(135deg, #ec4899, #8b5cf6);
    --gradient-cool: linear-gradient(135deg, #06b6d4, #7c3aed);
    --gradient-dark: linear-gradient(180deg, #0a0a0f 0%, #12101f 100%);
    --gradient-card: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.06) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );

    --dark-bg: #0a0a0f;
    --dark-bg-2: #0d0d14;
    --dark-bg-3: #12101f;
    --dark-surface: rgba(255, 255, 255, 0.04);
    --dark-border: rgba(255, 255, 255, 0.08);
    --dark-text: #f1f5f9;
    --dark-muted: #94a3b8;

    --light-bg: #f8fafc;
    --light-bg-2: #ffffff;
    --light-surface: rgba(255, 255, 255, 0.8);
    --light-border: rgba(0, 0, 0, 0.06);
    --light-text: #0f172a;
    --light-muted: #64748b;

    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-strong: rgba(255, 255, 255, 0.08);

    --card-radius: 1rem;
    --radius-lg: 1.25rem;
    --radius-xl: 1.5rem;

    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --shadow-glow-lg: 0 0 80px rgba(124, 58, 237, 0.2);
    --shadow-dark: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.12);

    /* Backward-compat aliases (mapped to dark theme) */
    --text: #f1f5f9;
    --text-secondary: #94a3b8;
    --muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --bg: #0a0a0f;
    --bg-soft: rgba(255, 255, 255, 0.04);
    --bg-light: rgba(255, 255, 255, 0.05);
    --bg-purple: rgba(124, 58, 237, 0.08);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2), 0 1px 2px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.25), 0 2px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 32px rgba(0, 0, 0, 0.35);
}

/* ──────────────────────────────────────────────────────────
   Base
   ────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    overflow-x: clip;
    max-width: 100%;
}

body {
    font-family:
        "Inter",
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    color: var(--dark-text);
    background: var(--dark-bg);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    transition: color 0.2s ease;
}
img {
    max-width: 100%;
}

/* ──────────────────────────────────────────────────────────
   Section Themes
   ────────────────────────────────────────────────────────── */
.section-dark {
    background:
        radial-gradient(
            ellipse 80% 60% at 85% 15%,
            rgba(124, 58, 237, 0.07),
            transparent 70%
        ),
        radial-gradient(
            ellipse 70% 55% at 10% 85%,
            rgba(59, 130, 246, 0.05),
            transparent 70%
        ),
        radial-gradient(
            ellipse 50% 40% at 50% 50%,
            rgba(124, 58, 237, 0.03),
            transparent 70%
        ),
        var(--dark-bg);
    color: var(--dark-text);
    position: relative;
}

.section-dark-alt {
    background:
        radial-gradient(
            ellipse 70% 55% at 15% 20%,
            rgba(59, 130, 246, 0.06),
            transparent 70%
        ),
        radial-gradient(
            ellipse 80% 60% at 90% 80%,
            rgba(124, 58, 237, 0.05),
            transparent 70%
        ),
        var(--dark-bg-2);
    color: var(--dark-text);
    position: relative;
}

.section-light {
    background: var(--light-bg);
    color: var(--light-text);
    position: relative;
}

.section-gradient {
    background: var(--gradient-dark);
    color: var(--dark-text);
    position: relative;
}

/* ──────────────────────────────────────────────────────────
   Typography
   ────────────────────────────────────────────────────────── */
.web-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-warm {
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-label-dark {
    color: var(--primary-light);
    background: var(--primary-soft);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.section-label-light {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.12);
}

.muted {
    color: var(--dark-muted);
}
.section-light .muted {
    color: var(--light-muted);
}

/* ──────────────────────────────────────────────────────────
   Buttons
   ────────────────────────────────────────────────────────── */
.btn {
    padding: 12px 28px !important;
    border-radius: 12px !important;
    font-size: 14px;
    font-weight: 600 !important;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    cursor: pointer;
    line-height: 1.4;
    letter-spacing: 0.01em;
}

/* Primary – gradient purple */
.web-btn1 {
    background: var(--gradient-main) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
}
.web-btn1:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.4) !important;
}

/* Secondary – warm gradient */
.web-btn2 {
    background: var(--gradient-warm) !important;
    color: #fff !important;
    border: none !important;
    box-shadow: 0 4px 16px rgba(236, 72, 153, 0.25);
}
.web-btn2:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.35) !important;
}

/* Outlined gradient – glass style */
.web-btn-outline {
    background: transparent !important;
    border: 1.5px solid var(--primary) !important;
    color: var(--primary-light) !important;
}
.web-btn-outline:hover {
    background: var(--primary-soft) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow) !important;
}

/* Ghost – glass on dark */
.web-btn-ghost {
    background: var(--glass) !important;
    border: 1px solid var(--glass-border) !important;
    color: var(--dark-text) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.web-btn-ghost:hover {
    background: var(--glass-strong) !important;
    border-color: rgba(255, 255, 255, 0.18) !important;
    color: #fff !important;
    transform: translateY(-2px);
}

/* Light context ghost */
.section-light .web-btn-ghost {
    background: rgba(0, 0, 0, 0.04) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    color: var(--light-text) !important;
}
.section-light .web-btn-ghost:hover {
    background: rgba(0, 0, 0, 0.08) !important;
    color: var(--light-text) !important;
}

/* White – for dark backgrounds */
.web-btn-white {
    background: rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    font-weight: 700 !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.web-btn-white:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 255, 255, 0.1) !important;
}

/* ──────────────────────────────────────────────────────────
   Navbar
   ────────────────────────────────────────────────────────── */
.logo-img {
    height: 46px;
    width: auto;
}

.navbar {
    padding: 12px 0;
    background: rgba(10, 10, 15, 0.8) !important;
    border-bottom: 1px solid var(--dark-border);
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(10, 10, 15, 0.95) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

.navbar .nav-link {
    color: #ffffff !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 7px 14px !important;
    border-radius: 8px;
    transition: all 0.2s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    background: var(--primary-soft);
}

.navbar .dropdown-menu {
    background: rgba(18, 16, 31, 0.95);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    box-shadow: var(--shadow-dark);
    padding: 6px;
    margin-top: 8px;
    min-width: 200px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.navbar .dropdown-item {
    border-radius: 8px;
    padding: 10px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--dark-muted);
    transition: all 0.2s;
}
.navbar .dropdown-item:hover {
    background: var(--primary-soft);
    color: var(--primary-light);
}

/* ──────────────────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────────────────── */
.emn-footer {
    background: var(--dark-bg);
    color: rgba(255, 255, 255, 0.75);
    border-top: 1px solid var(--dark-border);
    position: relative;
    overflow: hidden;
}
.emn-footer::before {
    content: "";
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        rgba(124, 58, 237, 0.06) 0%,
        transparent 70%
    );
    bottom: -300px;
    left: -200px;
    pointer-events: none;
}
.emn-footer .footer-col-title {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.emn-footer a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.875rem;
    transition: all 0.2s;
}
.emn-footer a:hover {
    color: var(--primary-light);
}
.emn-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.emn-footer ul li {
    margin-bottom: 10px;
}
.emn-footer .footer-divider {
    border-color: var(--dark-border);
}
.emn-footer .footer-bottom {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.8rem;
}
.emn-footer .footer-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(124, 58, 237, 0.2);
    background: var(--primary-soft);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    color: var(--primary-light);
}

/* ──────────────────────────────────────────────────────────
   Hero Section (Home)
   ────────────────────────────────────────────────────────── */
.hero-section {
    background: var(--dark-bg);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

/* Mesh gradient background */
.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(
            ellipse 80% 50% at 20% 40%,
            rgba(124, 58, 237, 0.25) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 60% 60% at 80% 20%,
            rgba(59, 130, 246, 0.18) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 50% 50% at 60% 80%,
            rgba(236, 72, 153, 0.14) 0%,
            transparent 50%
        );
    pointer-events: none;
}
.hero-section::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.3),
        transparent
    );
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--glass);
    color: var(--primary-light);
    border: 1px solid rgba(124, 58, 237, 0.25);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.hero-section h1 {
    font-size: clamp(2.6rem, 5.5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.06;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.hero-section .lead {
    color: var(--dark-muted);
    font-size: 1.1rem;
    line-height: 1.75;
    max-width: 500px;
}

.hero-btns {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--dark-border);
}
.hero-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-stat-label {
    font-size: 0.78rem;
    color: var(--dark-muted);
    margin-top: 3px;
}

.banner-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-dark), var(--shadow-glow);
}

/* ──────────────────────────────────────────────────────────
   Glass Card – reusable
   ────────────────────────────────────────────────────────── */
.glass-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--card-radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.glass-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-4px);
}

/* Light card – for light sections */
.light-card {
    background: var(--light-bg-2);
    border: 1px solid var(--light-border);
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-card);
    transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.light-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.15);
}

/* ──────────────────────────────────────────────────────────
   Category Bar
   ────────────────────────────────────────────────────────── */
.category-bar {
    background: var(--light-bg);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.category-bar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.2),
        transparent
    );
}

.cat-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 16px 18px;
    cursor: pointer;
    transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    height: 100%;
}
.cat-card:hover {
    border-color: rgba(124, 58, 237, 0.2);
    box-shadow: 0 8px 32px rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
}
.cat-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.08),
        rgba(59, 130, 246, 0.06)
    );
    border: 1px solid rgba(124, 58, 237, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease,
        color 0.3s ease;
}
.cat-card:hover .cat-card-icon {
    background: var(--gradient-main);
    border-color: transparent;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
.cat-card-body {
    flex: 1;
    min-width: 0;
}
.cat-card-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--light-text);
    display: block;
    line-height: 1.2;
    margin-bottom: 2px;
}
.cat-card-desc {
    font-size: 0.75rem;
    color: var(--light-muted);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cat-card-arrow {
    color: var(--primary);
    font-size: 0.95rem;
    opacity: 0;
    transition:
        opacity 0.2s,
        transform 0.2s;
    transform: translateX(-4px);
    flex-shrink: 0;
}
.cat-card:hover .cat-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ──────────────────────────────────────────────────────────
   Section Utility
   ────────────────────────────────────────────────────────── */
.section-bg {
    background: var(--dark-bg-2);
}
.section-soft {
    background: var(--dark-bg-3);
}

.section-header {
    margin-bottom: 52px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.section-dark .section-header h2,
.section-dark-alt .section-header h2,
.section-gradient .section-header h2 {
    color: #fff;
}
.section-light .section-header h2 {
    color: var(--light-text);
}

.section-header p {
    font-size: 1.02rem;
    max-width: 560px;
    line-height: 1.75;
}
.section-dark .section-header p,
.section-dark-alt .section-header p {
    color: var(--dark-muted);
}
.section-light .section-header p {
    color: var(--light-muted);
}

.section-header.text-center p {
    margin-left: auto;
    margin-right: auto;
}

/* Section divider glow line */
.section-divider {
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(204, 174, 255, 0.25),
        transparent
    );
    border: none;
    margin: 0;
}

/* ──────────────────────────────────────────────────────────
   Feature / Icon Cards
   ────────────────────────────────────────────────────────── */
.feature-card {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    padding: 30px;
    border: 1px solid var(--glass-border);
    transition:
        transform 0.3s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    height: 100%;
}
.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-main);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 18px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
.feature-card h5 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    font-size: 1rem;
}
.feature-card p {
    color: var(--dark-muted);
    font-size: 0.88rem;
    margin: 0;
    line-height: 1.7;
}

/* Light feature card variant */
.section-light .feature-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    backdrop-filter: none;
    box-shadow: var(--shadow-card);
}
.section-light .feature-card:hover {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.12);
    border-color: rgba(124, 58, 237, 0.15);
}
.section-light .feature-card h5 {
    color: var(--light-text);
}
.section-light .feature-card p {
    color: var(--light-muted);
}

/* ──────────────────────────────────────────────────────────
   Step Process
   ────────────────────────────────────────────────────────── */
.steps-timeline {
    position: relative;
}

/* Horizontal connector track */
.steps-track {
    display: none;
}
@media (min-width: 768px) {
    .steps-track {
        display: block;
        position: absolute;
        top: 62px;
        left: calc(16.666% + 10px);
        right: calc(16.666% + 10px);
        height: 3px;
        background: rgba(124, 58, 237, 0.1);
        border-radius: 3px;
        z-index: 0;
    }
    .steps-track-fill {
        width: 100%;
        height: 100%;
        background: var(--gradient-main);
        border-radius: 3px;
        opacity: 0.4;
    }
}

.step-card {
    text-align: center;
    padding: 36px 28px 32px;
    position: relative;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.35s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    height: 100%;
    overflow: hidden;
}
.step-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.step-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 16px 48px rgba(124, 58, 237, 0.12),
        0 4px 12px rgba(0, 0, 0, 0.06);
    border-color: rgba(124, 58, 237, 0.15);
}
.step-card:hover::before {
    opacity: 1;
}

.step-number-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: 20px;
}
.step-number {
    width: 44px;
    height: 44px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    margin: 0 auto;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    position: relative;
    z-index: 2;
}

.step-icon-circle {
    width: 64px;
    height: 64px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.08),
        rgba(59, 130, 246, 0.06)
    );
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
    margin: 0 auto 20px;
    transition: all 0.35s ease;
}
.step-card:hover .step-icon-circle {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
    transform: scale(1.05);
}

.step-card h5 {
    font-weight: 700;
    color: var(--light-text);
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.step-card p {
    color: var(--light-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin: 0;
}

/* ──────────────────────────────────────────────────────────
   Steps Journey Timeline
   ────────────────────────────────────────────────────────── */
.steps-journey {
    position: relative;
    max-width: 960px;
    margin: 0 auto;
}

/* Vertical connecting line */
.journey-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    transform: translateX(-50%);
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(124, 58, 237, 0.15) 6%,
        rgba(124, 58, 237, 0.15) 94%,
        transparent 100%
    );
}

/* Step row — 3-column grid */
.journey-step {
    display: grid;
    grid-template-columns: 1fr 72px 1fr;
    align-items: center;
    position: relative;
    margin-bottom: 52px;
}
.journey-step:last-child {
    margin-bottom: 0;
}

/* Center node */
.journey-node {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}
.journey-node > span {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow:
        0 0 0 6px var(--light-bg),
        0 0 0 8px rgba(124, 58, 237, 0.12),
        0 4px 20px rgba(124, 58, 237, 0.2);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}
.journey-step:hover .journey-node > span {
    transform: scale(1.12);
    box-shadow:
        0 0 0 6px var(--light-bg),
        0 0 0 8px rgba(124, 58, 237, 0.2),
        0 6px 28px rgba(124, 58, 237, 0.35);
}

/* Content card */
.journey-content {
    padding: 32px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition:
        transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
        box-shadow 0.4s ease,
        border-color 0.4s ease;
    position: relative;
    overflow: hidden;
}
.journey-content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity 0.35s ease;
}
.journey-step:hover .journey-content {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px rgba(124, 58, 237, 0.1),
        0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: rgba(124, 58, 237, 0.12);
}
.journey-step:hover .journey-content::before {
    opacity: 1;
}

/* Badge */
.journey-badge {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.08),
        rgba(59, 130, 246, 0.05)
    );
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

/* Icon */
.journey-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.08),
        rgba(59, 130, 246, 0.06)
    );
    border: 1px solid rgba(124, 58, 237, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 18px;
    transition: all 0.35s ease;
}
.journey-step:hover .journey-icon {
    background: var(--gradient-main);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.25);
    transform: scale(1.06);
}

/* Title & description */
.journey-content h4 {
    font-weight: 700;
    color: var(--light-text);
    font-size: 1.15rem;
    margin-bottom: 10px;
}
.journey-content > p {
    color: var(--light-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 18px;
}

/* Checklist */
.journey-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}
.journey-checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.82rem;
    color: var(--light-muted);
}
.journey-checklist li i {
    color: var(--primary);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Visual / illustration side */
.journey-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}
.journey-illustration {
    width: 100%;
    max-width: 260px;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    filter: drop-shadow(0 4px 12px rgba(124, 58, 237, 0.08));
}
.journey-step:hover .journey-illustration {
    transform: scale(1.05);
}

/* Reversed step (even — visual left, content right) */
.journey-step-alt .journey-content {
    order: 3;
}
.journey-step-alt .journey-node {
    order: 2;
}
.journey-step-alt .journey-visual {
    order: 1;
}

/* ──────────────────────────────────────────────────────────
   Stats Section
   ────────────────────────────────────────────────────────── */
.stats-bar {
    background: var(--dark-bg-2);
    padding: 64px 0;
    position: relative;
    overflow: hidden;
}
.stats-bar::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background:
        radial-gradient(
            ellipse 50% 80% at 20% 50%,
            rgba(124, 58, 237, 0.08) 0%,
            transparent 50%
        ),
        radial-gradient(
            ellipse 50% 80% at 80% 50%,
            rgba(59, 130, 246, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
}
.stat-item {
    text-align: center;
    padding: 24px 16px;
    border-radius: var(--card-radius);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-3px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
}
.stat-num {
    font-size: 2.6rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-label {
    color: var(--dark-muted);
    font-size: 0.88rem;
    margin-top: 8px;
}

/* ──────────────────────────────────────────────────────────
   CTA Banner
   ────────────────────────────────────────────────────────── */
.cta-banner {
    background: var(--gradient-main);
    border-radius: var(--radius-xl);
    padding: 60px 52px;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    top: -150px;
    right: 60px;
    pointer-events: none;
}
.cta-banner::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    bottom: -80px;
    left: 100px;
    pointer-events: none;
}
.cta-banner h2 {
    font-weight: 800;
    color: #fff;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
}
.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.02rem;
}

/* Light CTA variant */
.cta-light {
    background: var(--bg-purple);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 56px 48px;
}
.cta-light h2 {
    font-weight: 800;
    color: var(--light-text);
    font-size: clamp(1.5rem, 3vw, 2rem);
}
.cta-light p {
    color: var(--light-muted);
    font-size: 1rem;
}

/* ──────────────────────────────────────────────────────────
   Vendor Benefits Section
   ────────────────────────────────────────────────────────── */
.vendor-benefit-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 20px;
    height: 100%;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}
.vendor-benefit-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.15);
}
.vendor-benefit-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-main);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 12px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* ──────────────────────────────────────────────────────────
   Page Hero (inner pages)
   ────────────────────────────────────────────────────────── */
.page-hero {
    background: var(--dark-bg);
    padding: 60px 0 50px;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(
        ellipse 60% 50% at 50% 0%,
        rgba(124, 58, 237, 0.1) 0%,
        transparent 50%
    );
    pointer-events: none;
}
.page-hero::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(124, 58, 237, 0.3),
        transparent
    );
}
.page-hero h1 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}
.page-hero p {
    color: var(--dark-muted);
    font-size: 1rem;
    max-width: 540px;
    line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 16px;
}
.breadcrumb-item a {
    color: var(--primary-light);
    text-decoration: none;
    font-size: 0.85rem;
}
.breadcrumb-item.active {
    color: var(--dark-muted);
    font-size: 0.85rem;
}
.breadcrumb-item + .breadcrumb-item::before {
    color: var(--dark-muted);
}

/* ──────────────────────────────────────────────────────────
   Problem / Solution Cards
   ────────────────────────────────────────────────────────── */
.problem-card {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 1px solid var(--glass-border);
    border-left: 3px solid var(--primary);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    height: 100%;
}
.problem-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.2);
}
.solution-card {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    padding: 24px;
    border: 1px solid var(--glass-border);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
    height: 100%;
}
.solution-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
    transform: translateY(-3px);
}

/* ──────────────────────────────────────────────────────────
   FAQ Accordion
   ────────────────────────────────────────────────────────── */
.faq-accordion .accordion-item {
    border: 1px solid var(--dark-border) !important;
    border-radius: var(--card-radius) !important;
    margin-bottom: 8px;
    overflow: hidden;
    background: var(--glass);
}
.faq-accordion .accordion-button {
    font-weight: 600;
    color: var(--dark-text);
    background: transparent;
    padding: 18px 22px;
    font-size: 0.9rem;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--primary-soft);
    color: var(--primary-light);
    box-shadow: none !important;
}
.faq-accordion .accordion-button:focus {
    box-shadow: none !important;
}
.faq-accordion .accordion-body {
    color: var(--dark-muted);
    padding: 12px 22px 20px;
    line-height: 1.75;
    font-size: 0.88rem;
    background: transparent;
}

/* ──────────────────────────────────────────────────────────
   Policy Pages
   ────────────────────────────────────────────────────────── */
.policy-content p,
.policy-content li {
    color: var(--dark-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}
.policy-content h5 {
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 36px;
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.policy-content h5::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 18px;
    background: var(--gradient-main);
    border-radius: 2px;
    flex-shrink: 0;
}
.policy-toc {
    background: var(--glass);
    border-radius: var(--card-radius);
    padding: 22px;
    position: sticky;
    top: 84px;
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(12px);
}
.policy-toc .toc-title {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.policy-toc a {
    display: block;
    color: var(--dark-muted);
    text-decoration: none;
    padding: 7px 0;
    font-size: 0.84rem;
    border-bottom: 1px solid var(--dark-border);
    transition:
        color 0.15s,
        padding 0.15s;
}
.policy-toc a:hover {
    color: var(--primary-light);
    padding-left: 4px;
}
.policy-toc a:last-child {
    border-bottom: none;
}

/* ──────────────────────────────────────────────────────────
   Contact Page
   ────────────────────────────────────────────────────────── */
.contact-card {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    padding: 36px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(12px);
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--dark-border);
}
.contact-info-item:last-child {
    border-bottom: none;
}
.contact-info-icon {
    width: 42px;
    height: 42px;
    background: var(--gradient-main);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.2);
}

/* ──────────────────────────────────────────────────────────
   Form Controls
   ────────────────────────────────────────────────────────── */
.form-control,
.form-select {
    border-radius: 10px !important;
    border: 1px solid var(--dark-border) !important;
    padding: 12px 16px !important;
    font-size: 0.9rem;
    color: var(--dark-text);
    background: var(--glass);
    transition:
        border-color 0.2s,
        box-shadow 0.2s;
}
.form-control::placeholder {
    color: var(--dark-muted);
}
.form-control:focus,
.form-select:focus {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12) !important;
    outline: none;
    background: var(--glass-strong);
}
.form-label {
    font-weight: 500;
    color: var(--dark-muted);
    margin-bottom: 6px;
    font-size: 0.875rem;
}

/* ──────────────────────────────────────────────────────────
   Support Channels
   ────────────────────────────────────────────────────────── */
.support-channel {
    background: var(--gradient-card);
    border-radius: var(--card-radius);
    padding: 30px 24px;
    border: 1px solid var(--glass-border);
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
    backdrop-filter: blur(8px);
    height: 100%;
}
.support-channel:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
    border-color: rgba(124, 58, 237, 0.3);
}
.support-channel .support-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin: 0 auto 16px;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
.support-channel:hover .support-icon {
    box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
    transform: scale(1.05);
}

/* ──────────────────────────────────────────────────────────
   Misc Utilities
   ────────────────────────────────────────────────────────── */
.text-primary-emn {
    color: var(--primary-light) !important;
}
.bg-primary-soft {
    background: var(--primary-soft) !important;
}

.badge-emn {
    background: var(--primary-soft);
    color: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.card {
    border-radius: var(--card-radius);
}

.rounded-xl {
    border-radius: 1.2rem !important;
}
.rounded-2xl {
    border-radius: 1.5rem !important;
}

/* Invoice download */
.invoice-btn {
    background: transparent;
    border: 1px dashed var(--dark-border);
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
    font-size: 0.86rem;
    color: var(--dark-muted);
}

/* Accessibility focus */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
    outline: 2px solid rgba(124, 58, 237, 0.3);
    outline-offset: 2px;
}

/* ──────────────────────────────────────────────────────────
   Light Section Overrides (inner pages)
   ────────────────────────────────────────────────────────── */
.section-light .solution-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
}
.section-light .solution-card:hover {
    border-color: rgba(124, 58, 237, 0.15);
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
}

.section-light .contact-card {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
}
.section-light .form-control,
.section-light .form-select {
    background: #fff !important;
    border-color: rgba(0, 0, 0, 0.1) !important;
    color: var(--light-text);
}
.section-light .form-control::placeholder {
    color: var(--light-muted);
}
.section-light .form-control:focus,
.section-light .form-select:focus {
    background: #fff !important;
}
.section-light .form-label {
    color: var(--light-muted);
}

.section-light .faq-accordion .accordion-item {
    border-color: rgba(0, 0, 0, 0.08) !important;
    background: #fff;
}
.section-light .faq-accordion .accordion-button {
    color: var(--light-text);
    background: #fff;
}
.section-light .faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(124, 58, 237, 0.04);
    color: var(--primary);
}
.section-light .faq-accordion .accordion-button.collapsed {
    background: #fff;
}
.section-light .faq-accordion .accordion-body {
    color: var(--light-muted);
    background: #fff;
}
.section-light .faq-accordion .accordion-body a {
    color: var(--primary);
}

.section-light .support-channel {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-card);
}
.section-light .support-channel:hover {
    box-shadow: 0 12px 40px rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.15);
}

.section-light .contact-info-item {
    border-bottom-color: rgba(0, 0, 0, 0.06);
}

/* ──────────────────────────────────────────────────────────
   Vendor Pricing Section
   ────────────────────────────────────────────────────────── */
.pricing-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

/* Blur overlay */
.pricing-blur-overlay {
    position: absolute;
    inset: -20px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(
        ellipse 70% 60% at 50% 50%,
        rgba(10, 10, 15, 0.55),
        rgba(10, 10, 15, 0.35)
    );
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
}

.pricing-overlay-content {
    text-align: center;
    max-width: 420px;
    padding: 24px;
}

.pricing-overlay-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-main);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    margin: 0 auto 20px;
    box-shadow:
        0 0 40px rgba(124, 58, 237, 0.35),
        0 0 80px rgba(124, 58, 237, 0.15);
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%,
    100% {
        box-shadow:
            0 0 40px rgba(124, 58, 237, 0.35),
            0 0 80px rgba(124, 58, 237, 0.15);
    }
    50% {
        box-shadow:
            0 0 50px rgba(124, 58, 237, 0.5),
            0 0 100px rgba(124, 58, 237, 0.25);
    }
}

.pricing-overlay-content h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.pricing-overlay-content p {
    color: var(--dark-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Pricing cards grid */
.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.pricing-cards-grid::-webkit-scrollbar {
    display: none;
}

/* Individual pricing card */
.pricing-card {
    background: var(--gradient-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
}

.pricing-card-featured {
    border-color: rgba(124, 58, 237, 0.35);
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.12) 0%,
        rgba(59, 130, 246, 0.06) 100%
    );
    box-shadow: 0 0 50px rgba(124, 58, 237, 0.12);
}

.pricing-popular-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Card header */
.pricing-card-header {
    margin-bottom: 20px;
}

.pricing-plan-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-soft);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-light);
    margin-bottom: 16px;
}

.pricing-icon-featured {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}

.pricing-icon-enterprise {
    background: linear-gradient(
        135deg,
        rgba(6, 182, 212, 0.15),
        rgba(124, 58, 237, 0.1)
    );
    color: var(--accent);
}

.pricing-plan-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-text);
    margin-bottom: 4px;
}

.pricing-plan-desc {
    font-size: 0.82rem;
    color: var(--dark-muted);
    margin: 0;
    line-height: 1.5;
}

/* Price */
.pricing-card-price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    margin-bottom: 12px;
}

.pricing-currency {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-muted);
    align-self: flex-start;
    margin-top: 8px;
}

.pricing-amount {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.03em;
    line-height: 1;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-card-featured .pricing-amount {
    background: linear-gradient(135deg, #a78bfa, #60a5fa);
    -webkit-background-clip: text;
    background-clip: text;
}

.pricing-period {
    font-size: 0.85rem;
    color: var(--dark-muted);
    font-weight: 500;
}

/* Plan tag */
.pricing-plan-tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    margin-bottom: 20px;
    width: fit-content;
}

.pricing-tag-free {
    background: rgba(34, 197, 94, 0.12);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pricing-tag-pro {
    background: rgba(124, 58, 237, 0.12);
    color: var(--primary-light);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.pricing-tag-enterprise {
    background: rgba(6, 182, 212, 0.12);
    color: var(--accent);
    border: 1px solid rgba(6, 182, 212, 0.2);
}

/* Features list */
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    color: var(--dark-text);
    line-height: 1.4;
}

.pricing-features li i {
    font-size: 0.9rem;
    color: #22c55e;
    flex-shrink: 0;
}

.pricing-feature-disabled {
    opacity: 0.4;
}

.pricing-feature-disabled i {
    color: var(--dark-muted) !important;
}

/* Responsive rules are in media.css */

/* ============================================================
   SOFT LAUNCH VENDOR PAGE  (/soft-launch)
   Moved out of the page blade so all frontend styles live here.
   ============================================================ */

/* ============================================================
   SOFT LAUNCH PAGE
   ============================================================ */

/* ── Hero ─────────────────────────────────────────────────── */
.sl-hero {
    position: relative;
    overflow: hidden;
    padding-bottom: 90px;
}

.sl-hero-orbs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}
.sl-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.28;
    animation: slFloat 14s ease-in-out infinite;
}
.sl-orb-1 {
    width: 320px;
    height: 320px;
    background: #7c3aed;
    top: -60px;
    left: -40px;
}
.sl-orb-2 {
    width: 260px;
    height: 260px;
    background: #ec4899;
    bottom: -70px;
    right: 8%;
    animation-delay: -5s;
}
.sl-orb-3 {
    width: 220px;
    height: 220px;
    background: #06b6d4;
    top: 40%;
    right: 32%;
    animation-delay: -9s;
}

@keyframes slFloat {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(24px, -28px) scale(1.07);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

.sl-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.22),
        rgba(236, 72, 153, 0.22)
    );
    border: 1px solid rgba(167, 139, 250, 0.35);
    color: #e9d5ff;
    border-radius: 100px;
    padding: 7px 16px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    margin-bottom: 18px;
}
.sl-eyebrow i {
    color: #f0abfc;
}

.sl-hero-title {
    line-height: 1.15;
}

.sl-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

/* ── Slot counter ─────────────────────────────────────────── */
.sl-counter-card {
    position: relative;
    background:
        radial-gradient(
            120% 90% at 50% 0%,
            rgba(124, 58, 237, 0.22) 0%,
            transparent 62%
        ),
        linear-gradient(
            160deg,
            rgba(255, 255, 255, 0.09),
            rgba(255, 255, 255, 0.025)
        );
    border: 1px solid rgba(167, 139, 250, 0.28);
    border-radius: 26px;
    padding: 26px 26px 24px;
    text-align: center;
    backdrop-filter: blur(16px);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.42),
        inset 0 1px 0 rgba(255, 255, 255, 0.09);
    overflow: hidden;
}
/* Soft top highlight so the card reads as glass rather than flat grey. */
.sl-counter-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 12%;
    width: 76%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.5),
        transparent
    );
}

.sl-counter-head {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    padding: 5px 13px;
    margin-bottom: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #cbd5e1;
}
.sl-live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: slLive 2.2s ease-out infinite;
}
@keyframes slLive {
    0% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
    }
}

.sl-counter-ring {
    width: 196px;
    height: 196px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    /* --sl-fill is the approved share; the remainder stays as an unfilled track. */
    background: conic-gradient(
        from -90deg,
        #a78bfa 0 var(--sl-fill, 0%),
        rgba(255, 255, 255, 0.1) var(--sl-fill, 0%) 100%
    );
    position: relative;
    padding: 9px;
    box-shadow: 0 0 34px rgba(124, 58, 237, 0.32);
}
/* Outer glow ring. */
.sl-counter-ring::before {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    background: conic-gradient(
        from -90deg,
        rgba(167, 139, 250, 0.5),
        rgba(236, 72, 153, 0.35),
        rgba(6, 182, 212, 0.3),
        rgba(167, 139, 250, 0.5)
    );
    filter: blur(20px);
    opacity: 0.75;
    z-index: -1;
    animation: slSpin 14s linear infinite;
}
@keyframes slSpin {
    to {
        transform: rotate(360deg);
    }
}

.sl-counter-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 32%, #191428 0%, #0b0b12 72%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    box-shadow: inset 0 2px 14px rgba(0, 0, 0, 0.65);
}
.sl-counter-num {
    font-size: 3.9rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(150deg, #ffffff 5%, #d8b4fe 55%, #f0abfc 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 3px 12px rgba(167, 139, 250, 0.4));
}
.sl-counter-of {
    font-size: 0.78rem;
    color: #a5b0c2;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.sl-counter-label {
    color: #f1f5f9;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.sl-counter-bar {
    position: relative;
    height: 9px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    margin-bottom: 20px;
}
.sl-counter-bar-fill {
    display: block;
    height: 100%;
    border-radius: 100px;
    background: linear-gradient(90deg, #7c3aed, #c026d3, #ec4899);
    box-shadow: 0 0 14px rgba(192, 38, 211, 0.65);
    transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
    /* Zero-width bars still show a faint cap, which reads as progress. */
    min-width: 0;
}

.sl-counter-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 14px 6px;
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
}
.sl-stat {
    flex: 1 1 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}
.sl-stat-num {
    font-size: 1.28rem;
    font-weight: 800;
    color: #f1f5f9;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}
.sl-stat-open {
    color: #c4b5fd;
}
.sl-stat-lbl {
    font-size: 0.66rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    font-weight: 600;
}
.sl-stat-sep {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.11);
    flex: 0 0 auto;
}

.sl-counter-note {
    font-size: 0.78rem;
    color: #a5b0c2;
    margin: 0;
    display: flex;
    align-items: flex-start;
    gap: 7px;
    justify-content: center;
    text-align: left;
    line-height: 1.55;
}
.sl-counter-note i {
    color: #4ade80;
    margin-top: 1px;
    flex-shrink: 0;
}
.sl-counter-note strong {
    color: #e2e8f0;
    font-weight: 700;
}

/* ── Benefits ─────────────────────────────────────────────── */
.sl-benefits {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}
/* Soft coloured wash behind the grid so the white cards have something to sit on. */
.sl-benefits-glow {
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 1100px;
    max-width: 130%;
    height: 620px;
    pointer-events: none;
    background:
        radial-gradient(
            circle at 28% 32%,
            rgba(124, 58, 237, 0.1),
            transparent 58%
        ),
        radial-gradient(
            circle at 74% 58%,
            rgba(236, 72, 153, 0.09),
            transparent 58%
        );
    filter: blur(28px);
}

.sl-section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.12),
        rgba(236, 72, 153, 0.12)
    );
    border: 1px solid rgba(124, 58, 237, 0.24);
    color: var(--primary-dark);
    border-radius: 100px;
    padding: 6px 16px;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

/* Explicit grid: feature cards claim two columns, so a plain row/col
   Bootstrap grid cannot express this layout. */
.sl-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    perspective: 1200px;
}

.sl-benefit-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 20px;
    padding: 26px 22px;
    transform-style: preserve-3d;
    will-change: transform;
    transition:
        transform 0.34s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.34s ease,
        border-color 0.34s ease;
}
/* While the pointer is actively moving over the card, a much shorter
   transform transition lets each mousemove update ease into place instead
   of jumping straight to the raw pointer position — that lag is what makes
   the tilt read as physical rather than mechanical. The slower entrance
   transition returns once the pointer leaves (see the inline 3D-tilt
   script below). */
.sl-benefit-card.sl-tilt-active {
    transition:
        transform 0.1s linear,
        box-shadow 0.34s ease,
        border-color 0.34s ease;
}
.sl-benefit-card.is-feature {
    grid-column: span 2;
    background:
        radial-gradient(
            120% 130% at 100% 0%,
            rgba(124, 58, 237, 0.1) 0%,
            transparent 58%
        ),
        #fff;
    border-color: rgba(124, 58, 237, 0.26);
}

/* Gradient hairline border, revealed on hover. */
.sl-benefit-card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 1.5px;
    background: var(--gradient-warm);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.sl-benefit-card:hover {
    box-shadow: 0 22px 46px rgba(124, 58, 237, 0.18);
}
.sl-benefit-card:hover::after {
    opacity: 1;
}

.sl-benefit-num {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 1.9rem;
    font-weight: 800;
    line-height: 1;
    color: rgba(15, 23, 42, 0.05);
    letter-spacing: -0.03em;
    transition: color 0.3s ease;
}
.sl-benefit-card:hover .sl-benefit-num {
    color: rgba(124, 58, 237, 0.16);
}

.sl-benefit-icon {
    position: relative;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--gradient-main);
    color: #fff;
    font-size: 1.4rem;
    margin-bottom: 18px;
    box-shadow: 0 10px 22px rgba(124, 58, 237, 0.3);
    transition: transform 0.34s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sl-benefit-card:hover .sl-benefit-icon {
    transform: translateY(-3px) rotate(-6deg) scale(1.06);
}
.sl-benefit-card.is-feature .sl-benefit-icon {
    background: var(--gradient-warm);
}

/* Headline number on the two feature cards. */
.sl-benefit-stat {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0 0 6px !important;
}
.sl-benefit-stat span {
    font-size: 2.1rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    background: var(--gradient-warm);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.sl-benefit-stat small {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--light-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
/* "Up to" sits before the big number rather than after it, so it reads as a
   qualifier on the figure rather than another unit label. */
.sl-benefit-stat-prefix {
    order: -1;
    align-self: flex-end;
    margin-bottom: 3px;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 700 !important;
}

.sl-benefit-card h5 {
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--light-text);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}
.sl-benefit-card .sl-benefit-text {
    color: var(--light-muted);
    font-size: 0.9rem;
    line-height: 1.65;
    margin: 0;
}

/* Tick that slides in on hover, confirming "you get this". */
.sl-benefit-check {
    position: absolute;
    right: 18px;
    bottom: 18px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.8rem;
    opacity: 0;
    transform: translateY(6px) scale(0.7);
    transition:
        opacity 0.28s ease,
        transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.sl-benefit-card:hover .sl-benefit-check {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.sl-more-note {
    margin-top: 34px;
    background: linear-gradient(
        135deg,
        rgba(124, 58, 237, 0.07),
        rgba(236, 72, 153, 0.07)
    );
    border: 1px dashed rgba(124, 58, 237, 0.35);
    border-radius: 18px;
    padding: 22px 26px;
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
}
.sl-more-icon {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    background: var(--gradient-main);
    color: #fff;
    font-size: 1.15rem;
    box-shadow: 0 8px 18px rgba(124, 58, 237, 0.28);
}
.sl-more-note strong {
    color: var(--primary-dark);
    font-weight: 700;
}

/* ── CTA band ─────────────────────────────────────────────── */
.sl-cta-band {
    position: relative;
    padding: 96px 0;
    background: linear-gradient(135deg, #12101f 0%, #1b1233 50%, #0a0a0f 100%);
    overflow: hidden;
}
.sl-cta-band::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            circle at 20% 30%,
            rgba(124, 58, 237, 0.3),
            transparent 45%
        ),
        radial-gradient(
            circle at 80% 70%,
            rgba(236, 72, 153, 0.24),
            transparent 45%
        );
    animation: slShift 12s ease-in-out infinite alternate;
}
@keyframes slShift {
    0% {
        transform: scale(1) translateX(0);
    }
    100% {
        transform: scale(1.12) translateX(-18px);
    }
}
/* Faint perspective grid for depth behind the copy. */
.sl-cta-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 54px 54px;
    mask-image: radial-gradient(
        ellipse 70% 62% at 50% 50%,
        #000 35%,
        transparent 78%
    );
    -webkit-mask-image: radial-gradient(
        ellipse 70% 62% at 50% 50%,
        #000 35%,
        transparent 78%
    );
}
.sl-cta-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.42;
    pointer-events: none;
    animation: slFloat 16s ease-in-out infinite;
}
.sl-cta-orb-1 {
    width: 320px;
    height: 320px;
    background: #7c3aed;
    top: -90px;
    left: 6%;
}
.sl-cta-orb-2 {
    width: 270px;
    height: 270px;
    background: #ec4899;
    bottom: -100px;
    right: 8%;
    animation-delay: -7s;
}

.sl-cta-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.sl-cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 100px;
    padding: 7px 17px;
    margin-bottom: 20px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: #e2e8f0;
    backdrop-filter: blur(8px);
}

.sl-cta-band h2 {
    color: #fff;
    font-weight: 800;
    font-size: clamp(1.8rem, 4vw, 2.65rem);
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}
.sl-cta-count {
    background: linear-gradient(135deg, #a78bfa, #f0abfc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
/* Hand-drawn style underline that draws itself in. */
.sl-cta-em {
    position: relative;
    white-space: nowrap;
}
.sl-cta-em::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(90deg, #7c3aed, #ec4899);
    transform: scaleX(0);
    transform-origin: left;
    animation: slUnderline 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards;
}
@keyframes slUnderline {
    to {
        transform: scaleX(1);
    }
}

.sl-cta-band p {
    color: var(--dark-muted);
    margin-bottom: 30px;
    font-size: 1.02rem;
}

.sl-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px;
    margin-bottom: 28px;
}
.sl-cta-btn {
    padding: 15px 40px !important;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 100px;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.45);
    animation: slCtaPulse 3s ease-in-out infinite;
}
@keyframes slCtaPulse {
    0%,
    100% {
        box-shadow: 0 12px 30px rgba(124, 58, 237, 0.42);
    }
    50% {
        box-shadow: 0 12px 40px rgba(236, 72, 153, 0.55);
    }
}
.sl-cta-link {
    /* inline-flex + self-center keeps the baseline aligned with the pill button,
       which is much taller than the link's own line box. */
    display: inline-flex;
    align-items: center;
    align-self: center;
    gap: 6px;
    color: #cbd5e1;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22);
    padding-bottom: 2px;
    transition:
        color 0.2s ease,
        border-color 0.2s ease;
}
.sl-cta-link:hover {
    color: #fff;
    border-color: #fff;
}
.sl-cta-link i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
    display: inline-block;
}
.sl-cta-link:hover i {
    transform: translate(2px, -2px);
}

.sl-cta-points {
    list-style: none;
    padding: 0;
    margin: 0 0 8px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 26px;
}
.sl-cta-points li {
    display: flex;
    align-items: center;
    gap: 7px;
    color: #cbd5e1;
    font-size: 0.87rem;
    font-weight: 500;
}
.sl-cta-points i {
    color: #4ade80;
    font-size: 0.9rem;
}

.sl-cta-fineprint {
    font-size: 0.82rem;
    color: #94a3b8;
    margin: 16px 0 0 !important;
}

/* ── Form ─────────────────────────────────────────────────── */
.sl-form-section {
    padding: 90px 0;
}
.sl-form-card {
    padding: 34px 30px;
}

.sl-fieldset {
    margin-bottom: 30px;
}
.sl-fieldset:last-of-type {
    margin-bottom: 22px;
}

.sl-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.02rem;
    color: var(--light-text);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--light-border);
}
.sl-step {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    background: var(--gradient-main);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.req {
    color: var(--secondary);
    font-weight: 700;
}
.sl-hint {
    font-size: 0.78rem;
    color: var(--light-muted);
    font-weight: 500;
    margin-left: 6px;
}
/* Helper text below a field rather than inline in the label — a long hint
   next to a short label wrapped onto a second line, throwing the two labels
   in a row out of vertical alignment with each other. */
.sl-field-note {
    margin: 6px 0 0;
    font-size: 0.78rem;
    color: var(--light-muted);
    line-height: 1.4;
}
.sl-optional {
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--light-muted);
    background: rgba(15, 23, 42, 0.05);
    border-radius: 5px;
    padding: 2px 7px;
    margin-left: 6px;
}
.sl-counter-txt {
    margin-left: auto;
    font-size: 0.72rem;
    color: var(--light-muted);
    font-weight: 500;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
}

@media (max-width: 575px) {
    .sl-form-card .form-label {
        flex-wrap: wrap;
        row-gap: 4px;
    }
    .sl-form-card .form-label .sl-hint {
        margin-left: 0;
        flex-basis: 100%;
    }
    .sl-form-card .form-label .sl-counter-txt {
        margin-left: 0;
    }
}

.sl-error {
    color: var(--secondary);
    font-size: 0.82rem;
    margin-top: 6px;
}

/* Honeypot: off-screen rather than display:none, which some bots detect. */
.sl-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ── Form controls ────────────────────────────────────────────
   Mirrors the contact form: one shared height/radius/border token
   set so inputs, selects and the phone group all line up. */
.sl-form-card {
    --sl-height: 50px;
    --sl-radius: 12px;
    --sl-border: rgba(15, 23, 42, 0.12);
    --sl-icon: #94a3b8;
}

.sl-form-card .form-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.01em;
    color: var(--light-text);
    margin-bottom: 8px;
}

.section-light .sl-form-card .form-control,
.section-light .sl-form-card .form-select,
.sl-form-card .contact-phone-group {
    height: var(--sl-height);
    border-radius: var(--sl-radius) !important;
    border: 1px solid var(--sl-border) !important;
    font-size: 0.925rem;
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease,
        background-color 0.18s ease;
}

.sl-field {
    position: relative;
}
.sl-field .sl-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
    color: var(--sl-icon);
    pointer-events: none;
    transition: color 0.18s ease;
    z-index: 2;
}
.sl-field:focus-within .sl-icon {
    color: var(--primary);
}

/* !important: Bootstrap's own .form-control padding otherwise wins and the
   icon sits on top of the placeholder text. */
.section-light .sl-form-card .sl-has-icon {
    padding-left: 44px !important;
}
/* Native select arrow sits right; keep room for it. */
.section-light .sl-form-card select.form-select {
    padding-right: 40px !important;
    cursor: pointer;
}

.section-light .sl-form-card .sl-textarea {
    height: auto;
    min-height: 150px;
    padding: 14px 16px !important;
    line-height: 1.65;
    resize: vertical;
}

/* ── Phone: code + number as one seamless control ──────────── */
.sl-form-card .contact-phone-group {
    display: flex;
    align-items: stretch;
    overflow: hidden;
    background: #fff;
    padding: 0 !important;
}
.sl-form-card .contact-phone-group > .contact-code-select,
.sl-form-card .contact-phone-group > .contact-number-input {
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 0.925rem;
    color: var(--light-text);
    outline: none;
}
.sl-form-card .contact-phone-group > .contact-code-select {
    flex: 0 0 auto;
    width: 112px;
    padding: 0 8px 0 15px;
    font-weight: 600;
    cursor: pointer;
    border-right: 1px solid var(--sl-border);
    border-radius: 0;
    /* Custom chevron: the native one is too wide for this slot. */
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 14px;
}
/* Malaysia-only: the code select is locked to +60, so it renders like a
   static field rather than a greyed-out disabled control. */
.sl-form-card .contact-phone-group > .contact-code-select:disabled {
    cursor: default;
    opacity: 1;
    color: var(--light-text);
    -webkit-text-fill-color: var(--light-text);
    background-image: none;
    padding-right: 15px;
}
.sl-form-card .contact-phone-group > .contact-number-input {
    flex: 1 1 auto;
    min-width: 0;
    padding: 0 16px;
}
.sl-form-card .contact-phone-group > .contact-number-input::placeholder {
    color: var(--light-muted);
}

/* ── Focus + validation states ─────────────────────────────── */
.section-light .sl-form-card .form-control:focus,
.section-light .sl-form-card .form-select:focus,
.sl-form-card .contact-phone-group:focus-within {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px rgba(124, 58, 237, 0.12) !important;
}
.section-light .sl-form-card .form-control.is-invalid,
.section-light .sl-form-card .form-select.is-invalid,
.sl-form-card .contact-phone-group.has-error {
    border-color: var(--secondary) !important;
}
.section-light .sl-form-card .form-control.is-invalid:focus,
.section-light .sl-form-card .form-select.is-invalid:focus,
.sl-form-card .contact-phone-group.has-error:focus-within {
    box-shadow: 0 0 0 4px rgba(244, 63, 94, 0.12) !important;
}

/* Vendor type cards */
.sl-type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.sl-type-card {
    cursor: pointer;
    margin: 0;
}
.sl-type-card input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.sl-type-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    padding: 20px 14px;
    border: 2px solid var(--light-border);
    border-radius: 14px;
    background: #fff;
    transition: all 0.22s ease;
    height: 100%;
    position: relative;
}
.sl-type-inner i:first-child {
    font-size: 1.6rem;
    color: var(--light-muted);
    transition: color 0.22s ease;
}
.sl-type-label {
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--light-text);
    line-height: 1.35;
}
.sl-type-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--primary);
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.22s ease;
}
.sl-type-card:hover .sl-type-inner {
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
}
.sl-type-card input:checked + .sl-type-inner {
    border-color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.14);
}
.sl-type-card input:checked + .sl-type-inner i:first-child {
    color: var(--primary);
}
.sl-type-card input:checked + .sl-type-inner .sl-type-check {
    opacity: 1;
    transform: scale(1);
}
.sl-type-card input:focus-visible + .sl-type-inner {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}

/* Category chips */
.sl-chip-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}
.sl-chip {
    margin: 0;
    cursor: pointer;
}
.sl-chip input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}
.sl-chip-inner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 15px;
    border: 1.5px solid var(--light-border);
    border-radius: 100px;
    background: #fff;
    font-size: 0.86rem;
    font-weight: 500;
    color: var(--light-text);
    transition: all 0.2s ease;
    user-select: none;
}
.sl-chip-plus,
.sl-chip-tick {
    font-size: 0.8rem;
}
.sl-chip-tick {
    display: none;
}
.sl-chip-plus {
    color: var(--light-muted);
}
.sl-chip:hover .sl-chip-inner {
    border-color: rgba(124, 58, 237, 0.45);
    color: var(--primary);
}
.sl-chip input:checked + .sl-chip-inner {
    background: var(--gradient-main);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 6px 16px rgba(124, 58, 237, 0.28);
}
.sl-chip input:checked + .sl-chip-inner .sl-chip-plus {
    display: none;
}
.sl-chip input:checked + .sl-chip-inner .sl-chip-tick {
    display: inline;
}
.sl-chip input:focus-visible + .sl-chip-inner {
    outline: 2px solid var(--primary);
    outline-offset: 2px;
}
/* JS disables unchecked chips once the selection cap is reached, so the limit
   is visible rather than only enforced silently on submit. */
.sl-chip input:disabled {
    pointer-events: none;
}
.sl-chip input:disabled + .sl-chip-inner {
    opacity: 0.45;
    cursor: not-allowed;
}
.sl-chip:has(input:disabled) {
    cursor: not-allowed;
}

/* Social links (Instagram / Facebook / TikTok) */
.sl-social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.sl-social-input.is-invalid {
    border-color: var(--secondary) !important;
}
/* JS-inserted per-field link error inside .sl-social-grid — without this it
   would land in the next grid cell instead of spanning below the row. */
.sl-social-grid .sl-js-link-error {
    grid-column: 1 / -1;
    margin: -4px 0 0;
}

.sl-captcha {
    display: flex;
    justify-content: center;
    padding: 14px;
    border: 1px solid var(--sl-border, rgba(15, 23, 42, 0.12));
    border-radius: 12px;
    background: linear-gradient(180deg, #fbfaff 0%, #f6f4fe 100%);
    transition:
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}
.sl-captcha:hover {
    border-color: rgba(124, 58, 237, 0.35);
}
.sl-captcha.is-solved {
    border-color: #16a34a;
    background: linear-gradient(180deg, #f6fdf9 0%, #f0fdf4 100%);
}
.sl-captcha.has-error {
    border-color: var(--secondary);
    background: linear-gradient(180deg, #fff7f8 0%, #fef2f3 100%);
}
.sl-captcha > div {
    max-width: 100%;
}

.sl-submit {
    padding: 14px;
    font-weight: 700;
    font-size: 1rem;
}
.sl-submit:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.sl-submitting-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #92400e;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 10px;
    padding: 10px 16px;
    margin: 14px 0 0;
    line-height: 1.5;
}
.sl-submitting-note i {
    font-size: 1rem;
}

.sl-privacy {
    text-align: center;
    font-size: 0.82rem;
    color: var(--light-muted);
    margin: 14px 0 0;
    line-height: 1.6;
}
.sl-privacy i {
    color: #16a34a;
    margin-right: 4px;
}

/* Success + banners */
.sl-success-box {
    display: flex;
    gap: 16px;
    background: rgba(22, 163, 74, 0.07);
    border: 1px solid rgba(22, 163, 74, 0.28);
    border-radius: 16px;
    padding: 22px;
    margin-bottom: 26px;
}
.sl-success-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #16a34a;
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.sl-success-title {
    font-weight: 700;
    color: #15803d;
    margin-bottom: 6px;
}
.sl-success-text {
    color: var(--light-text);
    font-size: 0.92rem;
    margin-bottom: 12px;
}
.sl-success-ref {
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    background: #fff;
    border: 1px dashed #16a34a;
    border-radius: 10px;
    padding: 10px 18px;
    margin-bottom: 10px;
}
.sl-success-ref span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--light-muted);
    font-weight: 600;
}
.sl-success-ref strong {
    font-size: 1.05rem;
    color: #15803d;
    letter-spacing: 0.04em;
}
.sl-success-note {
    font-size: 0.82rem;
    color: var(--light-muted);
    margin: 0;
}

.sl-waitlist-banner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(245, 158, 11, 0.08);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    padding: 16px 18px;
    margin-bottom: 24px;
    font-size: 0.9rem;
    color: var(--light-text);
    line-height: 1.6;
}
.sl-waitlist-banner i {
    font-size: 1.2rem;
    color: #d97706;
    flex-shrink: 0;
    margin-top: 1px;
}
.sl-closed-banner {
    background: rgba(239, 68, 68, 0.07);
    border-color: rgba(239, 68, 68, 0.3);
}
.sl-closed-banner i {
    color: #dc2626;
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1199px) {
    /* 2 columns: a feature card spans the full row at this width. */
    .sl-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .sl-benefit-card.is-feature {
        grid-column: span 2;
    }
}
@media (max-width: 991px) {
    .sl-counter-card {
        margin-top: 8px;
    }
    .sl-benefits,
    .sl-form-section {
        padding: 70px 0;
    }
    .sl-cta-band {
        padding: 76px 0;
    }
}
@media (max-width: 767px) {
    .sl-benefit-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .sl-benefit-card.is-feature {
        grid-column: span 1;
    }
    .sl-cta-actions {
        flex-direction: column;
        gap: 14px;
    }
    .sl-cta-btn {
        width: 100%;
    }
    .sl-cta-points {
        gap: 8px 18px;
    }
}
@media (max-width: 767px) {
    .sl-social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 575px) {
    .sl-form-card {
        padding: 24px 18px;
    }
    .sl-type-grid {
        grid-template-columns: 1fr;
    }
    .sl-social-grid {
        grid-template-columns: 1fr;
    }
    .sl-type-inner {
        flex-direction: row;
        text-align: left;
        padding: 14px 16px;
        gap: 12px;
    }
    .sl-counter-card {
        padding: 22px 18px 20px;
    }
    .sl-counter-ring {
        width: 168px;
        height: 168px;
        padding: 8px;
    }
    .sl-counter-num {
        font-size: 3.2rem;
    }
    .sl-stat-num {
        font-size: 1.12rem;
    }
    .sl-stat-lbl {
        font-size: 0.62rem;
    }
    .sl-hero-actions .btn {
        width: 100%;
    }
    .sl-more-note {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .sl-benefit-stat span {
        font-size: 1.8rem;
    }
    .sl-benefit-num {
        font-size: 1.6rem;
    }
    /* The underline would wrap mid-phrase on narrow screens. */
    .sl-cta-em {
        white-space: normal;
    }
    .sl-cta-points {
        flex-direction: column;
        align-items: center;
    }
    /* Phone code + number stack awkwardly below this width otherwise. */
    .sl-form-card .contact-phone-group > .contact-code-select {
        width: 100px;
    }
}

/* Users who prefer less motion get the layout without the movement. */
@media (prefers-reduced-motion: reduce) {
    .sl-orb,
    .sl-counter-ring::before,
    .sl-live-dot,
    .sl-cta-orb,
    .sl-cta-btn,
    .sl-cta-band::before {
        animation: none;
    }
    .sl-counter-bar-fill {
        transition: none;
    }
    /* Underline still ends up drawn, just without the sweep. */
    .sl-cta-em::after {
        animation: none;
        transform: scaleX(1);
    }
}

/* ── Floating EN / BM language switch (top-right, below header) ── */
/* Fixed pill just under the sticky navbar. Each option is a link that
   reloads with ?lang=en / ?lang=ms (handled in SoftLaunchController). */
.sl-lang-switch {
    position: fixed;
    right: 20px;
    top: 101px;
    z-index: 1030;
    display: inline-flex;
    gap: 4px;
    padding: 5px;
    border-radius: 100px;
    background: rgba(17, 24, 39, 0.82);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(167, 139, 250, 0.35);
    box-shadow: 0 12px 34px rgba(17, 24, 39, 0.28);
}
.sl-lang-opt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.4px;
    color: #e9d5ff;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.sl-lang-opt:hover {
    color: #fff;
    background: rgba(124, 58, 237, 0.35);
}
.sl-lang-opt.is-active {
    color: #fff;
    background: linear-gradient(135deg, #7c3aed, #ec4899);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}
.sl-lang-opt i {
    font-size: 0.85rem;
}

@media (max-width: 575.98px) {
    .sl-lang-switch {
        right: 12px;
        top: 82px;
    }
    .sl-lang-opt {
        padding: 7px 13px;
        font-size: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sl-lang-opt {
        transition: none;
    }
}

/* ============================================================
   SOFT LAUNCH NAV ITEM  (header + mobile offcanvas)
   ============================================================ */

/* ── Soft Launch: standout gradient nav item ─────────── */
.nav-link-glow {
    position: relative;
    overflow: hidden;
    display: inline-flex !important;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.05rem !important;
    border-radius: 100px;
    color: #fff !important;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    /* Pink stop is #d9268a rather than #ec4899: the lighter pink dropped
       white text to 3.5:1, and the gradient animates through it. */
    background: linear-gradient(135deg, #7c3aed, #d9268a, #7c3aed);
    background-size: 200% 200%;
    animation:
        navGlowShift 6s ease infinite,
        navGlowPulse 3s ease-in-out infinite;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease;
}
.nav-link-glow:hover,
.nav-link-glow.active {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(236, 72, 153, 0.5);
}
/* Label sits above the sheen so the sweep never washes out the text. */
.nav-link-glow > * {
    position: relative;
    z-index: 2;
}
.nav-link-glow .bi-stars,
.mobile-nav-link.nav-link-glow-mobile .bi-stars {
    color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.28);
}
/* Sheen sweep across the pill. */
.nav-link-glow::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transform: skewX(-20deg);
    animation: navGlowSheen 4.5s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}
/* Solid white chip: a translucent one let the pink gradient bleed through
   and dropped the text well below a readable contrast ratio. */
.nav-glow-badge {
    background: #ffffff;
    color: #a21caf !important;
    border-radius: 100px;
    padding: 0.12rem 0.55rem;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.5;
}

@keyframes navGlowShift {
    0%,
    100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}
@keyframes navGlowPulse {
    0%,
    100% {
        box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
    }
    50% {
        box-shadow: 0 4px 22px rgba(236, 72, 153, 0.6);
    }
}
@keyframes navGlowSheen {
    0%,
    55% {
        left: -120%;
    }
    100% {
        left: 130%;
    }
}

/* Mobile offcanvas variant of the same treatment. */
.mobile-nav-link.nav-link-glow-mobile {
    background: linear-gradient(135deg, #7c3aed, #d9268a, #7c3aed);
    background-size: 200% 200%;
    animation: navGlowShift 6s ease infinite;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.35);
    overflow: hidden;
    position: relative;
}
.mobile-nav-link.nav-link-glow-mobile::before {
    display: none;
}
.mobile-nav-link.nav-link-glow-mobile::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        100deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transform: skewX(-20deg);
    animation: navGlowSheen 4.5s ease-in-out infinite;
    pointer-events: none;
}
.mobile-nav-link.nav-link-glow-mobile .nav-icon {
    background: rgba(255, 255, 255, 0.22);
    color: #fff;
}
.mobile-nav-link.nav-link-glow-mobile > * {
    position: relative;
    z-index: 2;
}
.mobile-nav-link.nav-link-glow-mobile .nav-glow-badge {
    margin-left: auto;
    background: #ffffff;
    color: #a21caf !important;
}

@media (prefers-reduced-motion: reduce) {
    .nav-link-glow,
    .nav-link-glow::after,
    .mobile-nav-link.nav-link-glow-mobile,
    .mobile-nav-link.nav-link-glow-mobile::after {
        animation: none;
    }
}

/* ── Soft Launch: Tablet Giveaway ─────────────────────────── */
.sl-giveaway {
    padding: 90px 0;
    overflow: hidden;
}

.sl-giveaway-glow {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 60% 50% at 12% 15%,
            rgba(124, 58, 237, 0.07),
            transparent 70%
        ),
        radial-gradient(
            ellipse 55% 45% at 92% 85%,
            rgba(236, 72, 153, 0.06),
            transparent 70%
        );
    pointer-events: none;
}

.sl-giveaway-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--light-border);
    border-radius: 28px;
    padding: 56px 48px;
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.08);
    overflow: hidden;
}
.sl-giveaway-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 28px;
    padding: 1.5px;
    background: var(--gradient-warm);
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.5;
    pointer-events: none;
}

.sl-giveaway-sparkles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.sl-giveaway-sparkles i {
    position: absolute;
    color: #f9a8d4;
    font-size: 1.4rem;
    opacity: 0.7;
    animation: sl-sparkle-twinkle 2.6s ease-in-out infinite;
}
.sl-giveaway-sparkles i:nth-child(1) {
    top: 8%;
    left: 25%;
    font-size: 1.1rem;
    animation-delay: 0s;
}
.sl-giveaway-sparkles i:nth-child(2) {
    top: 20%;
    right: 8%;
    font-size: 1.7rem;
    animation-delay: 0.8s;
    color: #c4b5fd;
}
.sl-giveaway-sparkles i:nth-child(3) {
    bottom: 12%;
    left: 42%;
    font-size: 1.2rem;
    animation-delay: 1.5s;
}
@keyframes sl-sparkle-twinkle {
    0%,
    100% {
        opacity: 0.25;
        transform: scale(0.85) rotate(0deg);
    }
    50% {
        opacity: 0.85;
        transform: scale(1.1) rotate(15deg);
    }
}

.sl-giveaway-title {
    font-size: clamp(1.7rem, 3vw, 2.3rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--light-text);
    margin: 16px 0 18px;
}
.sl-giveaway-text {
    font-size: 1.02rem;
    color: var(--light-muted);
    line-height: 1.75;
    margin-bottom: 22px;
}
.sl-giveaway-points {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.sl-giveaway-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--light-text);
}
.sl-giveaway-points i {
    color: #16a34a;
    font-size: 1.05rem;
    flex-shrink: 0;
}

/* Visual: real tablet photo + orbiting ring glow + floating value badge */
.sl-giveaway-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    padding: 20px 0;
}

.sl-giveaway-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        rgba(124, 58, 237, 0.18),
        rgba(236, 72, 153, 0.18),
        rgba(124, 58, 237, 0.18)
    );
    filter: blur(2px);
    animation: sl-ring-spin 14s linear infinite;
}
.sl-giveaway-ring::before {
    content: "";
    position: absolute;
    inset: 14px;
    border-radius: 50%;
    background: var(--light-bg);
}
@keyframes sl-ring-spin {
    to {
        transform: rotate(360deg);
    }
}

.sl-tablet-mock-img {
    position: relative;
    z-index: 2;
    height: 380px;
    width: auto;
    max-width: 90%;
    filter: drop-shadow(0 26px 40px rgba(76, 29, 149, 0.28));
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.sl-giveaway-visual:hover .sl-tablet-mock-img {
    transform: translateY(-6px) rotate(-1deg);
}

.sl-giveaway-value-badge {
    position: absolute;
    right: 4%;
    bottom: 6%;
    z-index: 3;
    background: #fff;
    border-radius: 16px;
    padding: 10px 18px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.16);
    font-size: 1.3rem;
    font-weight: 900;
    color: #a21caf;
    text-align: center;
    line-height: 1.15;
    animation: sl-badge-float 3.2s ease-in-out infinite;
}
.sl-giveaway-value-badge small {
    display: block;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--light-muted);
}
@keyframes sl-badge-float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

@media (max-width: 991px) {
    .sl-giveaway-card {
        padding: 40px 26px;
        text-align: center;
    }
    .sl-giveaway-points {
        align-items: center;
    }
    .sl-giveaway-visual {
        margin-bottom: 10px;
        min-height: 280px;
    }
}
@media (max-width: 575px) {
    .sl-giveaway {
        padding: 64px 0;
    }
    .sl-giveaway-card {
        padding: 32px 20px;
        border-radius: 22px;
    }
    .sl-tablet-mock-img {
        height: 280px;
    }
    .sl-giveaway-ring {
        width: 250px;
        height: 250px;
    }
    .sl-giveaway-value-badge {
        font-size: 1.05rem;
        padding: 8px 14px;
        right: 2%;
    }

    .sl-giveaway-sparkles i:nth-child(3) {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sl-giveaway-sparkles i,
    .sl-giveaway-ring,
    .sl-giveaway-value-badge {
        animation: none;
    }
}
