/* ============================================================
   welcome.css — Premium Landing Page Styles (Enhanced)
   ============================================================ */

/* ── CSS Custom Properties ── */
:root,
[data-theme="dark"] {
    --bg-dark-1: #0b0f19;
    --bg-dark-2: #111827;
    --bg-card: rgba(17, 24, 39, 0.75);
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(0, 114, 255, 0.4);
    --text-primary: #ffffff;
    --text-secondary: #f8fafc;
    --text-muted: #cbd5e1;

    --accent-orange: #0066ff;
    --accent-coral: #0052ff;
    --accent-pink: #0034d0;
    --accent-blue: #38bdf8;
    --accent-green: #10b981;

    --gradient-brand: linear-gradient(135deg, #0072ff 0%, #0047ff 100%);
    --gradient-brand-soft: linear-gradient(135deg,
            rgba(0, 114, 255, 0.2) 0%,
            rgba(0, 71, 255, 0.1) 100%);
    --card-gradient-1: radial-gradient(circle at 0% 0%, rgba(0, 114, 255, 0.15) 0%, rgba(17, 24, 39, 0.9) 70%);
    --card-gradient-2: radial-gradient(circle at 100% 0%, rgba(0, 114, 255, 0.15) 0%, rgba(17, 24, 39, 0.9) 70%);
    --card-gradient-3: radial-gradient(circle at 100% 100%, rgba(0, 114, 255, 0.12) 0%, rgba(17, 24, 39, 0.85) 70%);
    --cta-gradient: radial-gradient(circle at 50% 50%, rgba(0, 114, 255, 0.15) 0%, rgba(11, 15, 25, 0.98) 70%);
    --gradient-button: linear-gradient(135deg, #0072ff 0%, #0047ff 100%);
    --gradient-button-hover: linear-gradient(135deg, #0052ff 0%, #0034d0 100%);

    --shadow-glow: 0 0 40px rgba(0, 114, 255, 0.25);
    --shadow-card:
        0 12px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 114, 255, 0.15);
    --nav-bg: rgba(11, 15, 25, 0.85);
    --nav-border: rgba(255, 255, 255, 0.08);
    --nav-scrolled-bg: rgba(11, 15, 25, 0.95);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.22s ease;

}

[data-theme="light"],
html.light,
body.light-mode {
    --bg-dark-1: #f8fafc;
    --bg-dark-2: #ffffff;
    --bg-card: #ffffff;
    --border-color: #e2e8f0;
    --border-hover: rgba(0, 114, 255, 0.4);
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;

    --accent-orange: #0066ff;
    --accent-coral: #0052ff;
    --accent-pink: #0034d0;
    --accent-blue: #0066ff;
    --accent-green: #10b981;

    --gradient-brand: linear-gradient(135deg, #0072ff 0%, #0047ff 100%);
    --gradient-brand-soft: linear-gradient(135deg,
            rgba(0, 114, 255, 0.08) 0%,
            rgba(0, 71, 255, 0.04) 100%);
    --card-gradient-1: radial-gradient(circle at 0% 0%, rgba(0, 114, 255, 0.08) 0%, #ffffff 70%);
    --card-gradient-2: radial-gradient(circle at 100% 0%, rgba(0, 114, 255, 0.08) 0%, #ffffff 70%);
    --card-gradient-3: radial-gradient(circle at 100% 100%, rgba(0, 114, 255, 0.06) 0%, #ffffff 70%);
    --cta-gradient: radial-gradient(circle at 50% 50%, rgba(0, 114, 255, 0.12) 0%, #ffffff 75%);
    --gradient-button: linear-gradient(135deg, #0072ff 0%, #0047ff 100%);
    --gradient-button-hover: linear-gradient(135deg, #0052ff 0%, #0034d0 100%);

    --shadow-glow: 0 10px 30px rgba(0, 114, 255, 0.15);
    --shadow-card:
        0 10px 30px -5px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.03);
    --nav-bg: rgba(255, 255, 255, 0.88);
    --nav-border: rgba(226, 232, 240, 0.8);
    --nav-scrolled-bg: rgba(255, 255, 255, 0.96);
}

/* ── Base Resets ── */
html {
    scroll-behavior: smooth;
    font-size: 95%;
}

::selection {
    background-color: #0066ff !important;
    color: #ffffff !important;
}

::-moz-selection {
    background-color: #0066ff !important;
    color: #ffffff !important;
}

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

body {
    font-family: "Inter", sans-serif;
    background-color: var(--bg-dark-1);
    color: var(--text-secondary);
    overflow-x: hidden;
    position: relative;
    line-height: 1.65;
    transition:
        background-color 0.3s ease,
        color 0.3s ease;
}

.bg-dark-1 {
    background-color: var(--bg-dark-1) !important;
}

.bg-dark-2 {
    background-color: var(--bg-dark-2) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Outfit", sans-serif;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
    transition: color 0.3s ease;
}

/* ── Scroll Reveal Animations ── */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(36px);
    transition:
        opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-down {
    opacity: 0;
    transform: translateY(-20px);
    transition:
        opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.revealed,
.reveal-fade-down.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ── Text Gradient ── */
.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
    background-color: var(--nav-bg) !important;
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    border-bottom: 1px solid var(--nav-border);
    padding: 16px 0;
    transition: var(--transition-smooth);
    z-index: 1040;
}

.navbar.scrolled {
    padding: 12px 0;
    background-color: var(--nav-scrolled-bg) !important;
    border-bottom: 1px solid var(--border-hover);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.navbar-brand {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary) !important;
    letter-spacing: -0.03em;
    text-decoration: none !important;
}

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

/* Custom Toggler Button (Mobile & Tablet only) */
.navbar-toggler.custom-toggler {
    width: 42px;
    height: 42px;
    padding: 0;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid var(--theme-border) !important;
    background: var(--theme-surface) !important;
    color: var(--theme-text) !important;
    outline: none !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
    transition: var(--transition-fast);
}

@media (min-width: 1200px) {
    .navbar-toggler,
    .navbar-toggler.custom-toggler {
        display: none !important;
    }
}

@media (max-width: 1199.98px) {
    .navbar-toggler.custom-toggler {
        display: inline-flex !important;
    }
}

.navbar-toggler.custom-toggler:hover,
.navbar-toggler.custom-toggler:focus {
    background: rgba(0, 102, 255, 0.08) !important;
    border-color: rgba(0, 102, 255, 0.4) !important;
    color: #0066ff !important;
}

.navbar-toggler.custom-toggler i {
    font-size: 1.15rem;
    transition: transform 0.2s ease;
}

.navbar-toggler.custom-toggler.collapsed .toggler-icon-open {
    display: inline-block !important;
}
.navbar-toggler.custom-toggler.collapsed .toggler-icon-close {
    display: none !important;
}
.navbar-toggler.custom-toggler:not(.collapsed) .toggler-icon-open {
    display: none !important;
}
.navbar-toggler.custom-toggler:not(.collapsed) .toggler-icon-close {
    display: inline-block !important;
}

/* Base Nav Links */
.nav-link {
    color: var(--theme-text-soft) !important;
    font-weight: 600;
    font-size: 0.92rem;
    margin: 0 4px;
    white-space: nowrap;
    transition: var(--transition-fast);
    position: relative;
    padding: 8px 14px !important;
    border-radius: 8px;
}

.nav-link:hover,
.nav-link.active {
    color: #0066ff !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active,
html.dark .nav-link:hover,
html.dark .nav-link.active {
    color: #38bdf8 !important;
}

@media (min-width: 1200px) {
    .nav-link::after {
        content: "";
        position: absolute;
        bottom: 2px;
        left: 14px;
        right: 14px;
        height: 2.5px;
        background: var(--gradient-brand);
        transform: scaleX(0);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        transform-origin: right;
        border-radius: 2px;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        transform: scaleX(1);
        transform-origin: left;
    }
}

/* ── Buttons ── */
.btn {
    border-radius: 9999px;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition-smooth);
    letter-spacing: 0.01em;
    border: none;
    outline: none;
}

.btn:focus {
    box-shadow: none;
}

.btn-gradient {
    background: var(--gradient-button);
    color: #ffffff !important;
    font-weight: 700;
    padding: 9px 22px;
    font-size: 0.88rem;
    box-shadow: 0 4px 18px rgba(0, 114, 255, 0.35);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-gradient::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-button-hover);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.btn-gradient:hover::before {
    opacity: 1;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0, 114, 255, 0.55);
    color: #ffffff !important;
}

.btn-gradient:active {
    transform: translateY(0);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-primary) !important;
    padding: 9px 22px;
    font-size: 0.88rem;
    transition: var(--transition-smooth);
}

.btn-outline-custom:hover {
    border-color: var(--accent-orange) !important;
    background: rgba(0, 114, 255, 0.1);
    color: var(--text-primary) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 114, 255, 0.2);
}

.btn-sm {
    padding: 6px 16px !important;
    font-size: 0.8rem !important;
}

/* ── Flex Gap Utilities for Bootstrap 4 ── */
.gap-1 {
    gap: 0.25rem !important;
}

.gap-2 {
    gap: 0.5rem !important;
}

.gap-3 {
    gap: 1rem !important;
}

.gap-4 {
    gap: 1.5rem !important;
}

.gap-5 {
    gap: 3rem !important;
}

/* ── Revuzi Premium Buttons & CTA Section ── */
.btn-primary-cta {
    background: linear-gradient(135deg, #0072ff 0%, #0047ff 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-family: "Outfit", sans-serif !important;
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(0, 114, 255, 0.9) !important;
    box-shadow:
        0 4px 20px rgba(0, 114, 255, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.btn-primary-cta:hover {
    background: linear-gradient(135deg, #0052ff 0%, #0034d0 100%) !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 8px 30px rgba(0, 114, 255, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.5) !important;
    text-decoration: none !important;
}

.btn-primary-cta:active {
    transform: translateY(-1px) scale(1) !important;
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-family: "Outfit", sans-serif !important;
    padding: 10px 24px !important;
    font-size: 0.95rem !important;
    border-radius: 9999px !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: blur(12px) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.btn-secondary-cta:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #38bdf8 !important;
    border-color: rgba(0, 114, 255, 0.6) !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.4),
        0 0 15px rgba(0, 114, 255, 0.25) !important;
    text-decoration: none !important;
}

.btn-secondary-cta:active {
    transform: translateY(-1px) scale(1) !important;
}

.revuzi-cta-box {
    background: radial-gradient(circle at 50% 50%,
            rgba(0, 114, 255, 0.16) 0%,
            rgba(17, 24, 39, 0.98) 75%);
    border: 1px solid rgba(0, 114, 255, 0.3);
    border-radius: 24px;
    padding: 50px 30px;
    position: relative;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(0, 114, 255, 0.12);
}

/* ════════════════════════════════════
   HERO SECTION
════════════════════════════════════ */
.hero-section {
    padding: 210px 0 150px;
    text-align: center;
    position: relative;
    background-color: var(--bg-dark-1);
    overflow: hidden;
    isolation: isolate;
}

/* Dot grid */
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(0, 102, 255, 0.045) 1px,
            transparent 0);
    background-size: 34px 34px;
    pointer-events: none;
    z-index: 0;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%,
            black 40%,
            transparent 100%);
}

/* Glowing orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    filter: blur(100px);
}

.hero-orb-1 {
    width: 700px;
    height: 700px;
    top: -250px;
    left: -200px;
    background: radial-gradient(circle,
            rgba(0, 102, 255, 0.18) 0%,
            transparent 65%);
    animation: orbDrift 14s ease-in-out infinite alternate;
}

.hero-orb-2 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle,
            rgba(236, 72, 153, 0.12) 0%,
            transparent 65%);
    animation: orbDrift 18s ease-in-out infinite alternate-reverse;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle,
            rgba(96, 165, 250, 0.08) 0%,
            transparent 65%);
    animation: orbDrift 22s ease-in-out infinite alternate;
}

@keyframes orbDrift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 30px) scale(1.06);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.22);
    color: var(--accent-blue);
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: 0.83rem;
    font-weight: 700;
    margin-bottom: 30px;
    letter-spacing: 0.03em;
    backdrop-filter: blur(10px);
    animation: badgePulse 3.5s infinite alternate;
    gap: 6px;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    animation: dotPulse 1.8s infinite;
    flex-shrink: 0;
}

@keyframes dotPulse {

    0%,
    100% {
        box-shadow: 0 0 0 2px rgba(16, 185, 129, 0.2);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.08);
    }
}

@keyframes badgePulse {
    0% {
        border-color: rgba(0, 102, 255, 0.2);
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.1);
    }

    100% {
        border-color: rgba(0, 102, 255, 0.45);
        box-shadow: 0 0 18px 2px rgba(0, 102, 255, 0.08);
    }
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.6rem, 5.8vw, 4.8rem);
    line-height: 1.12;
    margin-bottom: 28px;
    letter-spacing: -0.035em;
    font-weight: 900;
    color: var(--text-primary);
}

/* Hero Subtitle */
.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto 44px;
    line-height: 1.75;
}

/* CTA Group */
.hero-cta-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-hero {
    padding: 15px 38px !important;
    font-size: 1.02rem !important;
    font-weight: 700 !important;
}

.hero-disclaimer {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 52px;
}

/* Trust badges row */
.hero-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 0;
}

.hero-trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    padding: 0 24px;
}

.hero-trust-stars i {
    color: #fbbf24;
    font-size: 0.9rem;
}

.hero-trust-sep {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.08);
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 2;
    animation: fadeInUp 1s ease 1.2s both;
}

.hero-scroll-indicator span {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.hero-scroll-wheel {
    width: 4px;
    height: 8px;
    border-radius: 2px;
    background: var(--accent-orange);
    animation: scrollWheel 2s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(12px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* ════════════════════════════════════
   STATS SECTION
════════════════════════════════════ */
.stats-section {
    padding: 60px 0;
    background: var(--bg-dark-2);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 80% at 50% 50%,
            rgba(0, 102, 255, 0.04) 0%,
            transparent 70%);
    pointer-events: none;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    z-index: 1;
}

@media (max-width: 991px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 28px 20px;
    background: linear-gradient(135deg,
            rgba(24, 24, 27, 0.8) 0%,
            rgba(18, 18, 21, 0.9) 100%);
    border: 1px solid rgba(0, 102, 255, 0.3);
    border-radius: 16px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 102, 255, 0.7);
    box-shadow:
        0 15px 35px rgba(0, 102, 255, 0.2),
        0 0 20px rgba(0, 102, 255, 0.1);
}

.stat-number {
    font-family: "Outfit", sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.7rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--text-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(180deg,
            transparent,
            rgba(255, 255, 255, 0.07),
            transparent);
    flex-shrink: 0;
}

/* ════════════════════════════════════
   SECTION COMMON STYLES
════════════════════════════════════ */
.section-divider-wrap {
    position: relative;
    width: 100%;
    height: 1px;
    display: flex;
    justify-content: center;
    z-index: 5;
}

.section-divider {
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 102, 255, 0.18) 50%,
            transparent 100%);
    width: 75%;
}

.section-padding {
    padding: 120px 0;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 72px;
}

.section-subtitle {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    margin-bottom: 14px;
    display: block;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.025em;
    font-weight: 800;
    margin-bottom: 18px;
    color: var(--text-primary);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ════════════════════════════════════
   HOW IT WORKS — STEPS GRID
════════════════════════════════════ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-card {
    background: linear-gradient(145deg,
            rgba(20, 20, 32, 0.75) 0%,
            rgba(10, 10, 18, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 38px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.step-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.45),
        0 0 30px rgba(0, 102, 255, 0.06);
}

.step-card:hover::after {
    opacity: 1;
}

.step-top {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 24px;
}

.step-num {
    display: inline-flex;
    width: 48px;
    height: 48px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.28);
    color: var(--accent-orange);
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    font-weight: 900;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-card:hover .step-num {
    background: var(--gradient-button);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(0, 102, 255, 0.3);
    transform: rotate(-4deg) scale(1.08);
}

.step-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.step-icon-highlight {
    background: rgba(66, 133, 244, 0.1) !important;
    border-color: rgba(66, 133, 244, 0.25) !important;
    color: #60a5fa !important;
}

.step-card:hover .step-icon-wrap {
    background: rgba(0, 102, 255, 0.1);
    border-color: rgba(0, 102, 255, 0.25);
    color: var(--accent-orange);
}

.step-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.step-card p {
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

/* Last row spans 2 columns but center them */
@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .steps-grid .step-card:nth-child(4) {
        grid-column: 1;
    }

    .steps-grid .step-card:nth-child(5) {
        grid-column: 2;
    }
}

/* ════════════════════════════════════
   FEATURES GRID
════════════════════════════════════ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 72px;
}

.feature-card {
    background: linear-gradient(145deg,
            rgba(20, 20, 32, 0.75) 0%,
            rgba(10, 10, 18, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 36px 30px;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow:
        0 24px 50px rgba(0, 0, 0, 0.45),
        var(--shadow-glow);
}

.feature-card:hover::after {
    opacity: 1;
}

/* Wide card spans 3 columns */
.feature-card-wide {
    grid-column: 1 / -1;
}

.feature-card-inner {
    display: flex;
    align-items: flex-start;
    gap: 28px;
}

.feature-card-inner .icon-box-lg {
    flex-shrink: 0;
}

/* Icon Box */
.icon-box {
    display: inline-flex;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--accent-orange);
    font-size: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
    flex-shrink: 0;
}

.icon-box-lg {
    width: 70px;
    height: 70px;
    font-size: 1.8rem;
    border-radius: 20px;
    margin-bottom: 0;
}

.feature-card:hover .icon-box {
    transform: scale(1.12) rotate(5deg);
    background: var(--gradient-brand);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
}

.feature-card h4 {
    font-size: 1.18rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

/* ════════════════════════════════════
   DASHBOARD MOCKUP — Dark Theme
════════════════════════════════════ */
.mockup-wrapper {
    border-radius: 20px;
    border: 1px solid rgba(0, 102, 255, 0.2);
    background: #0d0d14;
    overflow: hidden;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(255, 255, 255, 0.04),
        0 0 60px rgba(0, 102, 255, 0.06);
    margin-top: 70px;
    position: relative;
}

/* Top label bar (browser-chrome style) */
.mockup-wrapper::before {
    content: "Business Admin Dashboard — Preview";
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Outfit", sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px 24px;
}

/* ── Layout ── */
.mockup-layout {
    display: flex;
    min-height: 500px;
}

/* ── Sidebar ── */
.mockup-sidebar {
    width: 190px;
    background: #111118;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
}

.mockup-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-family: "Outfit", sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    color: #fff;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.mockup-sidebar-logo i {
    font-size: 1rem;
}

.mockup-nav {
    padding: 10px 0;
}

.mockup-nav-item {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.38);
    cursor: default;
    transition:
        background 0.2s ease,
        color 0.2s ease;
    border-left: 3px solid transparent;
}

.mockup-nav-item i {
    font-size: 0.82rem;
    width: 15px;
    text-align: center;
}

.mockup-nav-item.active {
    background: rgba(0, 102, 255, 0.1);
    color: #fb923c;
    border-left-color: #fb923c;
    font-weight: 700;
}

/* ── Main Content ── */
.mockup-main {
    flex: 1;
    background: #0d0d14;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Top Bar */
.mockup-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 22px;
    background: rgba(255, 255, 255, 0.015);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-topbar-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mockup-topbar-right {
    display: flex;
    align-items: center;
    gap: 14px;
}

.mockup-topbar-icon {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.3);
    cursor: default;
}

.mockup-breadcrumb {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    font-family: "Inter", sans-serif;
}

.mockup-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.72rem;
}

/* Page Title */
.mockup-page-title {
    font-family: "Outfit", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
    margin: 20px 22px 16px;
    letter-spacing: -0.02em;
}

/* ── Stat Cards ── */
.mockup-stats-row {
    display: flex;
    gap: 16px;
    margin: 0 22px 18px;
}

.mockup-dash-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    cursor: default;
}

.mockup-dash-card--teal {
    background: linear-gradient(135deg, #0db89e 0%, #00c5b0 100%);
}

.mockup-dash-card--green {
    background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
}

.mockup-dash-card-body {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px 10px;
}

.mockup-dash-num {
    font-family: "Outfit", sans-serif;
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    margin-bottom: 5px;
}

.mockup-dash-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Outfit", sans-serif;
}

.mockup-dash-bg-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
}

.mockup-dash-card-footer {
    background: rgba(0, 0, 0, 0.15);
    padding: 7px 20px;
    font-size: 0.73rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    font-family: "Outfit", sans-serif;
    cursor: default;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* ── Scans Table Card ── */
.mockup-table-card {
    background: rgba(255, 255, 255, 0.025);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    margin: 0 22px 16px;
    overflow: hidden;
}

.mockup-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-table-title {
    font-family: "Outfit", sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.mockup-table-collapse-icon {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.25);
    cursor: default;
}

.mockup-table-wrap {
    overflow-x: auto;
}

.mockup-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.78rem;
    font-family: "Inter", sans-serif;
}

.mockup-table thead tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mockup-table thead th {
    padding: 10px 18px;
    text-align: left;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--text-primary);
    white-space: nowrap;
    font-family: "Outfit", sans-serif;
    text-transform: none;
    letter-spacing: 0;
}

.mockup-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.15s ease;
}

.mockup-table tbody tr:last-child {
    border-bottom: none;
}

.mockup-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.03);
}

.mockup-table tbody td {
    padding: 9px 18px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.mockup-ip {
    color: #f87171 !important;
    font-weight: 500;
}

.mockup-table-footer {
    padding: 12px 18px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mockup-view-btn {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 7px 22px;
    font-size: 0.76rem;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    cursor: default;
    transition: background 0.2s ease;
}

/* ── Page Footer ── */
.mockup-page-footer {
    margin-top: auto;
    padding: 10px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-family: "Inter", sans-serif;
    background: rgba(255, 255, 255, 0.01);
}

.mockup-page-footer strong {
    color: var(--text-secondary);
}

/* Responsive: collapse sidebar */
@media (max-width: 767.98px) {
    .mockup-sidebar {
        width: 52px;
    }

    .mockup-sidebar-logo span,
    .mockup-nav-item span {
        display: none;
    }

    .mockup-sidebar-logo {
        justify-content: center;
        padding: 18px 0;
    }

    .mockup-nav-item {
        justify-content: center;
        padding: 12px 0;
        border-left: none;
    }

    .mockup-nav-item.active {
        border-left: none;
        background: rgba(0, 102, 255, 0.12);
    }

    .mockup-stats-row {
        flex-direction: column;
    }
}

/* ════════════════════════════════════
   TIMELINE / REVIEW FLOW
════════════════════════════════════ */
.bg-black-50 {
    background-color: var(--bg-dark-2) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.timeline-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    max-width: 1200px;
    margin: 48px auto 0;
    padding: 0 16px;
}

.timeline-step-card {
    background: rgba(18, 18, 28, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 26px 20px;
    min-width: 150px;
    flex: 1;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
}

.timeline-step-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 20px 20px 0 0;
}

.timeline-step-card:hover {
    transform: translateY(-6px);
    border-color: var(--border-hover);
    box-shadow:
        0 16px 36px rgba(0, 0, 0, 0.35),
        0 0 20px rgba(0, 102, 255, 0.07);
}

.timeline-step-card:hover::after {
    opacity: 1;
}

.timeline-step-final {
    border-color: rgba(0, 102, 255, 0.25);
    background: rgba(0, 102, 255, 0.04);
}

.timeline-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--accent-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    margin-bottom: 14px;
    transition: var(--transition-smooth);
}

.timeline-step-card:hover .timeline-icon {
    background: var(--gradient-button);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.3);
    transform: scale(1.08);
}

.timeline-step-final .timeline-icon {
    background: rgba(0, 102, 255, 0.12);
    border-color: rgba(0, 102, 255, 0.3);
}

.timeline-text {
    font-family: "Outfit", sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.timeline-sub {
    font-size: 0.76rem;
    color: var(--text-muted);
}

.timeline-arrow {
    color: var(--text-muted);
    font-size: 1rem;
    flex-shrink: 0;
    animation: arrowPulse 2.2s infinite ease-in-out;
}

@keyframes arrowPulse {

    0%,
    100% {
        transform: translateX(0);
        opacity: 0.35;
    }

    50% {
        transform: translateX(5px);
        opacity: 1;
        color: var(--accent-orange);
    }
}

/* ════════════════════════════════════
   INDUSTRIES
════════════════════════════════════ */
.industries-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    max-width: 900px;
    margin: 0 auto;
}

.industry-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 102, 255, 0.04) !important;
    border: 1.5px solid rgba(0, 102, 255, 0.35) !important;
    color: var(--text-secondary) !important;
    border-radius: 9999px !important;
    padding: 12px 28px !important;
    font-size: 0.9rem !important;
    font-family: "Outfit", sans-serif;
    font-weight: 600;
    transition: var(--transition-smooth) !important;
    cursor: default;
    box-shadow:
        0 0 0 0 rgba(0, 102, 255, 0),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.industry-pill i {
    font-size: 0.95rem;
    color: var(--accent-orange);
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.industry-pill:hover {
    background: rgba(0, 102, 255, 0.1) !important;
    border-color: rgba(0, 102, 255, 0.7) !important;
    color: var(--text-primary) !important;
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 8px 24px rgba(0, 102, 255, 0.2),
        0 0 0 4px rgba(0, 102, 255, 0.06) !important;
}

.industry-pill:hover i {
    opacity: 1;
    color: var(--accent-orange);
    transform: scale(1.18);
}

/* ════════════════════════════════════
   PRICING PLANS
════════════════════════════════════ */
.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(145deg,
            rgba(20, 20, 32, 0.75) 0%,
            rgba(10, 10, 18, 0.85) 100%);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 38px 32px;
    height: 100%;
    transition: var(--transition-smooth);
    backdrop-filter: blur(12px);
    overflow: hidden;
}

.price-card>* {
    position: relative;
    z-index: 1;
}

.price-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-brand);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.price-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-hover);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.5),
        var(--shadow-glow);
}

.price-card:hover::after {
    opacity: 1;
}

.price-card.popular {
    border-color: rgba(0, 102, 255, 0.45);
    background: linear-gradient(160deg,
            rgba(25, 15, 10, 0.9) 0%,
            rgba(10, 10, 18, 0.9) 100%);
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(0, 102, 255, 0.12);
    transform: scale(1.03);
}

.price-card.popular:hover {
    transform: scale(1.05) translateY(-6px);
}

.price-card.popular::after {
    opacity: 1;
}

/* Popular badge */
.popular-badge {
    position: absolute;
    top: 0;
    right: 28px;
    background: var(--gradient-button);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 700;
    font-family: "Outfit", sans-serif;
    padding: 5px 14px;
    border-radius: 0 0 12px 12px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(0, 102, 255, 0.35);
    z-index: 2;
}

.price-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

/* Price display */
.price-display {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin: 20px 0;
}

.price-currency {
    font-family: "Outfit", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--accent-orange);
}

.price-amount {
    font-family: "Outfit", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-orange);
    line-height: 1;
    letter-spacing: -0.03em;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 4px;
}

/* Pricing guarantee */
.pricing-guarantee {
    text-align: center;
    margin-top: 48px;
    padding: 18px 32px;
    background: rgba(16, 185, 129, 0.04);
    border: 1px solid rgba(16, 185, 129, 0.12);
    border-radius: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* Empty plans */
.empty-plans-card {
    padding: 60px 30px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 24px;
}

.empty-plans-icon {
    font-size: 3rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 20px;
}

/* Pricing description (dynamic HTML) */
.pricing-description {
    margin-top: 16px;
}

.pricing-description ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-bottom: 20px;
}

.pricing-description ul li {
    position: relative;
    padding-left: 30px !important;
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    display: block !important;
}

.pricing-description ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 3px;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.58rem;
}

/* ════════════════════════════════════
   FAQ SECTION
════════════════════════════════════ */
.faq-card {
    background: rgba(0, 102, 255, 0.03);
    border: 1.5px solid rgba(0, 102, 255, 0.28);
    border-radius: 18px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

/* Left accent bar */
.faq-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-brand);
    opacity: 0.4;
    transition: opacity 0.35s ease;
}

.faq-card:hover {
    border-color: rgba(0, 102, 255, 0.55);
    background: rgba(0, 102, 255, 0.06);
    box-shadow: 0 6px 24px rgba(0, 102, 255, 0.1);
}

.faq-card:hover::before {
    opacity: 1;
}

.faq-card.active {
    border-color: rgba(0, 102, 255, 0.65);
    background: rgba(0, 102, 255, 0.05);
    box-shadow:
        0 12px 36px rgba(0, 0, 0, 0.3),
        0 0 0 4px rgba(0, 102, 255, 0.06);
}

.faq-card.active::before {
    opacity: 1;
}

.faq-header {
    padding: 22px 28px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
    transition: var(--transition-smooth);
}

.faq-q-wrap {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
}

.faq-num {
    font-family: "Outfit", sans-serif;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-orange);
    background: rgba(0, 102, 255, 0.08);
    border: 1px solid rgba(0, 102, 255, 0.15);
    border-radius: 8px;
    padding: 3px 8px;
    letter-spacing: 0.04em;
    flex-shrink: 0;
    margin-top: 2px;
}

.faq-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.45;
}

.faq-icon {
    font-size: 0.85rem;
    color: var(--accent-orange);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: rgba(0, 102, 255, 0.08);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.faq-body {
    padding: 0 28px 22px 72px;
    color: var(--text-secondary);
    display: none;
    line-height: 1.75;
    font-size: 0.95rem;
}

/* ════════════════════════════════════
   CTA SECTION
════════════════════════════════════ */
.cta-card {
    background: linear-gradient(135deg,
            rgba(14, 10, 20, 0.95) 0%,
            rgba(5, 5, 8, 0.98) 100%);
    border: 1.5px solid rgba(0, 102, 255, 0.45);
    border-radius: 32px;
    padding: 80px 48px;
    max-width: 980px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    text-align: center;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 0 1px rgba(0, 102, 255, 0.12),
        0 0 60px rgba(0, 102, 255, 0.12),
        inset 0 1px 1px rgba(255, 255, 255, 0.05);
}

.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
}

.cta-orb-1 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle,
            rgba(0, 102, 255, 0.18) 0%,
            transparent 70%);
    top: -180px;
    right: -120px;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle,
            rgba(236, 72, 153, 0.1) 0%,
            transparent 70%);
    bottom: -150px;
    left: -80px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    background: rgba(0, 102, 255, 0.07);
    border: 1px solid rgba(0, 102, 255, 0.2);
    color: var(--accent-blue);
    padding: 7px 20px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    margin-bottom: 28px;
    letter-spacing: 0.03em;
}

.cta-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
    line-height: 1.15;
}

.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 28px;
}

.cta-trust {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px 24px;
    font-size: 0.83rem;
    color: var(--text-muted);
}

/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
footer {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 80px 0 40px;
    background-color: #030306;
    color: var(--text-muted);
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 102, 255, 0.22) 50%,
            transparent 100%);
}

.footer-logo {
    font-family: "Outfit", sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: inline-block;
    text-decoration: none !important;
    letter-spacing: -0.02em;
}

.footer-logo span {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col-title {
    font-family: "Outfit", sans-serif;
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 22px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-decoration: none !important;
    transition: var(--transition-smooth);
}

.footer-links a:hover {
    color: var(--accent-orange);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
    text-decoration: none !important;
}

.social-icon:hover {
    color: #fff;
    background: var(--gradient-brand);
    border-color: transparent;
    transform: translateY(-3px) scale(1.08);
    box-shadow: 0 6px 18px rgba(0, 102, 255, 0.35);
}

/* ════════════════════════════════════
   BACK TO TOP
════════════════════════════════════ */
#back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: none;
    z-index: 1050;
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.35);
    border: none;
    transition: var(--transition-smooth);
    background: var(--gradient-brand);
}

#back-to-top:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 14px 32px rgba(0, 102, 255, 0.5);
}

#back-to-top i {
    color: #fff;
    font-size: 1.1rem;
}

/* ════════════════════════════════════
   RESPONSIVE OVERRIDES
════════════════════════════════════ */
@media (max-width: 1199.98px) {
    .navbar-collapse {
        background: rgba(5, 5, 8, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 16px;
        padding: 20px;
        margin-top: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.55);
    }

    .nav-link::after {
        display: none;
    }

    .navbar-nav {
        align-items: stretch !important;
    }

    .navbar-nav .nav-item {
        margin: 5px 0;
    }

    .navbar-nav .btn {
        width: 100%;
        margin-top: 10px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-card-wide {
        grid-column: 1 / -1;
    }

    .feature-card-inner {
        flex-direction: column;
        gap: 18px;
    }

    .timeline-container {
        flex-direction: column;
        align-items: stretch;
        max-width: 480px;
    }

    .timeline-step-card {
        min-width: unset;
    }

    .timeline-arrow {
        transform: rotate(90deg);
        margin: 6px auto;
        animation: arrowPulseVert 2.2s infinite ease-in-out;
    }

    .hero-trust-sep {
        display: none;
    }

    .hero-trust-badge {
        padding: 8px 0;
    }

    footer {
        padding: 60px 0 30px;
        text-align: center;
    }

    .footer-col {
        margin-bottom: 36px;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .stat-item {
        padding: 24px;
    }

    .mockup-sidebar {
        display: none;
    }

    .cta-card {
        padding: 52px 28px;
        border-radius: 24px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 575.98px) {
    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        padding: 160px 0 120px;
    }

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

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

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

    .feature-card-wide {
        grid-column: 1;
    }

    .hero-title {
        font-size: 2.3rem;
    }

    .btn-hero {
        padding: 13px 28px !important;
        font-size: 0.95rem !important;
    }

    .faq-header {
        padding: 18px 20px;
    }

    .faq-body {
        padding: 0 20px 18px 20px;
    }

    .faq-num {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }
}

@keyframes arrowPulseVert {

    0%,
    100% {
        transform: translateY(0) rotate(90deg);
        opacity: 0.35;
    }

    50% {
        transform: translateY(5px) rotate(90deg);
        opacity: 1;
        color: var(--accent-orange);
    }
}

/* Call to Action Pulsing Animation */
.btn-gradient:hover {
    box-shadow: 0 0 24px rgba(0, 102, 255, 0.6) !important;
    animation: btnPulse 1.6s infinite ease-in-out;
}

@keyframes btnPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.035);
    }
}

/* ============================================================
   Responsive Light/Dark Theme System
   ============================================================ */
:root,
[data-theme="light"],
html.light,
body.light-mode {
    color-scheme: light;
    --surface-1: #ffffff;
    --surface-2: #f8fafc;
    --surface-3: #eef4ff;
    --surface-elevated: rgba(255, 255, 255, 0.92);
    --input-bg: #ffffff;
    --input-border: #cbd5e1;
    --focus-ring: rgba(0, 102, 255, 0.2);
    --table-row-hover: rgba(0, 102, 255, 0.05);
}

[data-theme="dark"],
html.dark,
body.dark-mode {
    color-scheme: dark;
    --surface-1: #0b0f19;
    --surface-2: #111827;
    --surface-3: #172033;
    --surface-elevated: rgba(17, 24, 39, 0.82);
    --input-bg: rgba(11, 15, 25, 0.86);
    --input-border: rgba(255, 255, 255, 0.12);
    --focus-ring: rgba(56, 189, 248, 0.22);
    --table-row-hover: rgba(255, 255, 255, 0.04);
}

body,
.navbar,
.navbar-collapse,
.revuzi-card,
.glass-card,
.step-card,
.feature-card,
.stat-item,
.price-card,
.faq-card,
.cta-card,
.form-control,
.custom-select,
.form-control-custom,
.custom-select-control,
.modal-content,
.dropdown-menu,
.table,
.footer-section {
    transition:
        background-color 0.28s ease,
        background 0.28s ease,
        border-color 0.28s ease,
        color 0.28s ease,
        box-shadow 0.28s ease;
}

body.light-mode,
html.light body {
    background: var(--bg-dark-1) !important;
    color: var(--text-secondary);
}

body.light-mode .text-muted,
html.light .text-muted {
    color: #64748b !important;
}

body.light-mode .text-secondary,
html.light .text-secondary {
    color: #475569 !important;
}

body.dark-mode .text-muted,
html.dark .text-muted {
    color: #94a3b8 !important;
}

body.dark-mode .text-secondary,
html.dark .text-secondary {
    color: #cbd5e1 !important;
}

body.light-mode .navbar,
html.light .navbar {
    background-color: var(--nav-bg) !important;
    border-bottom-color: var(--nav-border);
}

body.dark-mode .navbar,
html.dark .navbar {
    background-color: var(--nav-bg) !important;
    border-bottom-color: var(--nav-border);
}

body.light-mode .navbar-toggler,
html.light .navbar-toggler {
    border-color: rgba(15, 23, 42, 0.18);
}

body.light-mode .btn-outline-custom,
html.light .btn-outline-custom {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.14) !important;
    color: #0f172a !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
}

body.light-mode .btn-outline-custom:hover,
html.light .btn-outline-custom:hover {
    background: rgba(0, 102, 255, 0.08);
    border-color: rgba(0, 102, 255, 0.42) !important;
    color: #0047ff !important;
}

body.light-mode .hero-section,
body.light-mode .stats-section,
body.light-mode .section-padding,
html.light .hero-section,
html.light .stats-section,
html.light .section-padding {
    background-color: var(--bg-dark-1);
}

body.light-mode .bg-dark-2,
html.light .bg-dark-2 {
    background-color: #ffffff !important;
}

body.light-mode .revuzi-card,
body.light-mode .glass-card,
body.light-mode .step-card,
body.light-mode .feature-card,
body.light-mode .stat-item,
body.light-mode .timeline-step-card,
body.light-mode .price-card,
body.light-mode .faq-card,
body.light-mode .empty-plans-card,
html.light .revuzi-card,
html.light .glass-card,
html.light .step-card,
html.light .feature-card,
html.light .stat-item,
html.light .timeline-step-card,
html.light .price-card,
html.light .faq-card,
html.light .empty-plans-card {
    background: var(--surface-elevated) !important;
    border-color: var(--border-color) !important;
    color: var(--text-secondary);
    box-shadow: var(--shadow-card);
}

body.light-mode .price-card.popular,
html.light .price-card.popular {
    background: linear-gradient(160deg, #ffffff 0%, #eef4ff 100%) !important;
    border-color: rgba(0, 102, 255, 0.36) !important;
    box-shadow: 0 22px 50px rgba(0, 102, 255, 0.14) !important;
}

body.light-mode .cta-card,
html.light .cta-card {
    background: linear-gradient(135deg, #ffffff 0%, #eef4ff 100%) !important;
    border-color: rgba(0, 102, 255, 0.28) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.09) !important;
}

body.light-mode .revuzi-cta-box,
html.light .revuzi-cta-box {
    background: radial-gradient(circle at 50% 50%,
            rgba(0, 114, 255, 0.12) 0%,
            #ffffff 75%);
    border-color: rgba(0, 102, 255, 0.22);
    box-shadow: 0 24px 55px rgba(15, 23, 42, 0.08);
}

body.light-mode .form-control,
body.light-mode .custom-select,
body.light-mode .form-control-custom,
body.light-mode .custom-select-control,
html.light .form-control,
html.light .custom-select,
html.light .form-control-custom,
html.light .custom-select-control {
    background-color: var(--input-bg) !important;
    border-color: var(--input-border) !important;
    color: var(--text-primary) !important;
}

body.dark-mode .form-control,
body.dark-mode .custom-select,
body.dark-mode .form-control-custom,
body.dark-mode .custom-select-control,
html.dark .form-control,
html.dark .custom-select,
html.dark .form-control-custom,
html.dark .custom-select-control {
    background-color: var(--input-bg) !important;
    border-color: var(--input-border) !important;
    color: var(--text-primary) !important;
}

.form-control:focus,
.custom-select:focus,
.form-control-custom:focus,
.custom-select-control:focus {
    border-color: var(--accent-orange) !important;
    box-shadow: 0 0 0 0.2rem var(--focus-ring) !important;
}

body.light-mode .modal-content,
html.light .modal-content {
    background: #ffffff;
    border-color: var(--border-color);
    color: var(--text-primary);
}

body.dark-mode .modal-content,
html.dark .modal-content {
    background: #111827;
    border-color: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
}

body.light-mode .table,
html.light .table {
    color: var(--text-primary);
}

body.dark-mode .table,
html.dark .table {
    color: #f8fafc;
}

.table th,
.table td {
    border-color: var(--border-color) !important;
}

.table-hover tbody tr:hover {
    background-color: var(--table-row-hover) !important;
}

body.light-mode .mockup-wrapper,
html.light .mockup-wrapper {
    background: #ffffff;
    border-color: rgba(0, 102, 255, 0.18);
    box-shadow:
        0 35px 80px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(0, 102, 255, 0.06);
}

body.light-mode .mockup-sidebar,
body.light-mode .mockup-main,
html.light .mockup-sidebar,
html.light .mockup-main {
    background: #f8fafc;
}

body.light-mode .mockup-topbar,
body.light-mode .mockup-table-card,
body.light-mode .mockup-page-footer,
html.light .mockup-topbar,
html.light .mockup-table-card,
html.light .mockup-page-footer {
    background: #ffffff;
    border-color: #e2e8f0;
}

body.light-mode .mockup-nav-item,
body.light-mode .mockup-breadcrumb,
body.light-mode .mockup-topbar-icon,
html.light .mockup-nav-item,
html.light .mockup-breadcrumb,
html.light .mockup-topbar-icon {
    color: #64748b;
}

body.light-mode .mockup-table tbody tr,
body.light-mode .mockup-table thead tr,
body.light-mode .mockup-table-footer,
html.light .mockup-table tbody tr,
html.light .mockup-table thead tr,
html.light .mockup-table-footer {
    border-color: #e2e8f0;
}

body.light-mode .mockup-view-btn,
html.light .mockup-view-btn {
    background: #f8fafc;
    border-color: #dbe4f0;
    color: #0f172a;
}

body.light-mode .footer-section,
html.light .footer-section {
    background-color: #ffffff !important;
    border-top-color: #e2e8f0 !important;
    color: #64748b !important;
}

body.light-mode .footer-section .text-white,
html.light .footer-section .text-white {
    color: #0f172a !important;
}

body.light-mode .footer-section .form-control,
html.light .footer-section .form-control {
    background-color: #ffffff !important;
    border-color: #cbd5e1 !important;
    color: #0f172a !important;
}

body.light-mode .footer-section hr,
html.light .footer-section hr {
    border-color: #e2e8f0 !important;
}

.theme-toggle-button,
#website-theme-toggle {
    flex: 0 0 auto;
}

@media (max-width: 1199.98px) {
    .navbar-collapse {
        margin-top: 14px;
        padding: 20px 18px;
        border-radius: 20px;
        max-height: calc(100vh - 90px);
        overflow-y: auto;
        backdrop-filter: blur(24px) saturate(180%);
        -webkit-backdrop-filter: blur(24px) saturate(180%);
        transition: var(--transition-smooth);
    }

    body.light-mode .navbar-collapse,
    html.light .navbar-collapse {
        background: rgba(255, 255, 255, 0.98) !important;
        border: 1px solid rgba(15, 23, 42, 0.12) !important;
        box-shadow: 0 20px 45px rgba(15, 23, 42, 0.12) !important;
    }

    body.dark-mode .navbar-collapse,
    html.dark .navbar-collapse {
        background: rgba(11, 15, 25, 0.97) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
    }

    .navbar-nav.mx-auto {
        width: 100%;
        margin-bottom: 12px;
    }

    .navbar-nav .nav-item {
        width: 100%;
        margin-bottom: 4px;
    }

    .navbar-nav .nav-link {
        display: block;
        width: 100%;
        padding: 11px 16px !important;
        font-size: 0.98rem;
        font-weight: 600;
        border-radius: 12px;
        text-align: left;
        color: var(--theme-text) !important;
        transition: all 0.2s ease;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(0, 102, 255, 0.08) !important;
        color: #0066ff !important;
        padding-left: 20px !important;
    }

    .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(0, 114, 255, 0.12) 0%, rgba(0, 71, 255, 0.06) 100%) !important;
        color: #0052ff !important;
        font-weight: 700;
        border-left: 4px solid #0052ff;
        padding-left: 16px !important;
    }

    body.dark-mode .navbar-nav .nav-link.active,
    html.dark .navbar-nav .nav-link.active {
        background: linear-gradient(135deg, rgba(56, 189, 248, 0.15) 0%, rgba(0, 102, 255, 0.08) 100%) !important;
        color: #38bdf8 !important;
        border-left-color: #38bdf8;
    }

    .nav-actions-wrap {
        border-top: 1px solid var(--theme-border);
        padding-top: 16px;
        margin-top: 8px;
        width: 100%;
    }

    .nav-actions-wrap .btn {
        width: 100%;
        padding: 11px 20px;
        font-size: 0.95rem;
    }
}

/* ============================================================
   Theme Switch Polish: contrast, no flicker, stable layout
   ============================================================ */
html.theme-preload *,
html.theme-preload *::before,
html.theme-preload *::after {
    transition: none !important;
}

:root,
[data-theme="light"],
html.light,
body.light-mode {
    --theme-bg: #f8fafc;
    --theme-bg-soft: #eef4ff;
    --theme-surface: #ffffff;
    --theme-surface-soft: #f8fafc;
    --theme-surface-muted: #eef4ff;
    --theme-border: #dbe4f0;
    --theme-border-strong: #cbd5e1;
    --theme-text: #0f172a;
    --theme-text-soft: #334155;
    --theme-muted: #64748b;
    --theme-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
    --theme-shadow-hover:
        0 20px 48px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(0, 102, 255, 0.06);
    --theme-control-bg: #ffffff;
    --theme-control-border: #cbd5e1;
    --theme-control-placeholder: #64748b;
}

[data-theme="dark"],
html.dark,
body.dark-mode {
    --theme-bg: #070a12;
    --theme-bg-soft: #0b0f19;
    --theme-surface: rgba(17, 24, 39, 0.86);
    --theme-surface-soft: rgba(15, 23, 42, 0.9);
    --theme-surface-muted: rgba(30, 41, 59, 0.72);
    --theme-border: rgba(255, 255, 255, 0.1);
    --theme-border-strong: rgba(255, 255, 255, 0.16);
    --theme-text: #f8fafc;
    --theme-text-soft: #dbeafe;
    --theme-muted: #a8b3c5;
    --theme-shadow: 0 18px 45px rgba(0, 0, 0, 0.34);
    --theme-shadow-hover:
        0 24px 58px rgba(0, 0, 0, 0.42), 0 0 32px rgba(0, 114, 255, 0.15);
    --theme-control-bg: rgba(11, 15, 25, 0.88);
    --theme-control-border: rgba(255, 255, 255, 0.12);
    --theme-control-placeholder: #94a3b8;
}

html,
body {
    background-color: var(--theme-bg);
}

body,
main,
section,
header,
footer,
.navbar,
.navbar-collapse,
.card,
.revuzi-card,
.glass-card,
.step-card,
.feature-card,
.stat-item,
.timeline-step-card,
.price-card,
.faq-card,
.cta-card,
.mockup-wrapper,
.mockup-sidebar,
.mockup-main,
.mockup-topbar,
.mockup-table-card,
.mockup-page-footer,
.form-control,
.custom-select,
.input-group-text,
.dropdown-menu,
.modal-content,
.table,
.btn,
.badge,
.alert,
.social-btn,
.social-icon,
#back-to-top {
    transition-property:
        background-color, background, border-color, color, box-shadow, opacity,
        transform;
    transition-duration: 0.26s;
    transition-timing-function: ease;
}

#website-theme-toggle,
.theme-toggle-button,
.auth-theme-toggle {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    padding: 0 !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 9999px !important;
}

[data-theme="dark"] .theme-icon-sun,
html.dark .theme-icon-sun,
body.dark-mode .theme-icon-sun {
    display: inline-block !important;
}

[data-theme="dark"] .theme-icon-moon,
html.dark .theme-icon-moon,
body.dark-mode .theme-icon-moon {
    display: none !important;
}

[data-theme="light"] .theme-icon-sun,
html.light .theme-icon-sun,
body.light-mode .theme-icon-sun {
    display: none !important;
}

[data-theme="light"] .theme-icon-moon,
html.light .theme-icon-moon,
body.light-mode .theme-icon-moon {
    display: inline-block !important;
}

body.light-mode,
html.light body {
    background: var(--theme-bg) !important;
    color: var(--theme-text-soft) !important;
}

body.dark-mode,
html.dark body {
    background:
        radial-gradient(circle at top,
            rgba(0, 114, 255, 0.14),
            transparent 42%),
        linear-gradient(180deg, #0b0f19 0%, #070a12 100%) !important;
    color: var(--theme-muted) !important;
}

body.light-mode .text-white:not(.btn):not(.badge):not(.popular-badge),
html.light .text-white:not(.btn):not(.badge):not(.popular-badge) {
    color: var(--theme-text) !important;
}

body.dark-mode .text-white,
html.dark .text-white {
    color: #f8fafc !important;
}

body.light-mode .bg-dark,
html.light .bg-dark,
body.light-mode .bg-dark-1,
html.light .bg-dark-1,
body.light-mode .bg-dark-2,
html.light .bg-dark-2 {
    background-color: var(--theme-bg) !important;
}

body.dark-mode .bg-dark,
html.dark .bg-dark {
    background-color: var(--theme-surface-soft) !important;
}

body.light-mode .border-secondary,
html.light .border-secondary {
    border-color: var(--theme-control-border) !important;
}

body.dark-mode .border-secondary,
html.dark .border-secondary {
    border-color: var(--theme-border-strong) !important;
}

body.light-mode .hero-grid-overlay,
html.light .hero-grid-overlay {
    opacity: 0.55;
}

body.light-mode .hero-orb,
html.light .hero-orb {
    opacity: 0.45;
}

body.light-mode .hero-badge,
html.light .hero-badge,
body.light-mode .cta-badge,
html.light .cta-badge,
body.light-mode .industry-pill,
html.light .industry-pill,
body.light-mode .faq-num,
html.light .faq-num {
    background: rgba(0, 102, 255, 0.08) !important;
    border-color: rgba(0, 102, 255, 0.24) !important;
    color: #0052ff !important;
}

body.light-mode .revuzi-card,
body.light-mode .glass-card,
body.light-mode .step-card,
body.light-mode .feature-card,
body.light-mode .stat-item,
body.light-mode .timeline-step-card,
body.light-mode .price-card,
body.light-mode .faq-card,
body.light-mode .empty-plans-card,
html.light .revuzi-card,
html.light .glass-card,
html.light .step-card,
html.light .feature-card,
html.light .stat-item,
html.light .timeline-step-card,
html.light .price-card,
html.light .faq-card,
html.light .empty-plans-card {
    background: var(--theme-surface) !important;
    border-color: var(--theme-border) !important;
    color: var(--theme-text-soft) !important;
    box-shadow: var(--theme-shadow) !important;
}

body.dark-mode .revuzi-card,
body.dark-mode .glass-card,
body.dark-mode .step-card,
body.dark-mode .feature-card,
body.dark-mode .stat-item,
body.dark-mode .timeline-step-card,
body.dark-mode .price-card,
body.dark-mode .faq-card,
body.dark-mode .empty-plans-card,
html.dark .revuzi-card,
html.dark .glass-card,
html.dark .step-card,
html.dark .feature-card,
html.dark .stat-item,
html.dark .timeline-step-card,
html.dark .price-card,
html.dark .faq-card,
html.dark .empty-plans-card {
    background: var(--theme-surface) !important;
    border-color: var(--theme-border) !important;
    color: var(--theme-muted) !important;
    box-shadow: var(--theme-shadow) !important;
}

.revuzi-card:hover,
.glass-card:hover,
.step-card:hover,
.feature-card:hover,
.stat-item:hover,
.timeline-step-card:hover,
.price-card:hover,
.faq-card:hover {
    border-color: rgba(0, 102, 255, 0.42) !important;
    box-shadow: var(--theme-shadow-hover) !important;
}

.glass-card {
    display: block;
}

body.light-mode .form-control,
body.light-mode .custom-select,
body.light-mode .input-group-text,
html.light .form-control,
html.light .custom-select,
html.light .input-group-text,
body.dark-mode .form-control,
body.dark-mode .custom-select,
body.dark-mode .input-group-text,
html.dark .form-control,
html.dark .custom-select,
html.dark .input-group-text {
    background-color: var(--theme-control-bg) !important;
    border-color: var(--theme-control-border) !important;
    color: var(--theme-text) !important;
}

.form-control::placeholder,
.custom-select::placeholder {
    color: var(--theme-control-placeholder) !important;
    opacity: 1;
}

body.light-mode .dropdown-menu,
html.light .dropdown-menu,
body.light-mode .modal-content,
html.light .modal-content {
    background: var(--theme-surface) !important;
    border-color: var(--theme-border) !important;
    color: var(--theme-text) !important;
    box-shadow: var(--theme-shadow) !important;
}

body.dark-mode .dropdown-menu,
html.dark .dropdown-menu,
body.dark-mode .modal-content,
html.dark .modal-content {
    background: #111827 !important;
    border-color: var(--theme-border) !important;
    color: var(--theme-text) !important;
    box-shadow: var(--theme-shadow) !important;
}

body.light-mode .dropdown-item,
html.light .dropdown-item {
    color: var(--theme-text-soft) !important;
}

body.light-mode .dropdown-item:hover,
html.light .dropdown-item:hover,
body.dark-mode .dropdown-item:hover,
html.dark .dropdown-item:hover {
    background: rgba(0, 102, 255, 0.08) !important;
    color: #0066ff !important;
}

body.light-mode .table,
html.light .table,
body.dark-mode .table,
html.dark .table {
    color: var(--theme-text) !important;
    background: transparent !important;
}

body.light-mode .table th,
body.light-mode .table td,
html.light .table th,
html.light .table td,
body.dark-mode .table th,
body.dark-mode .table td,
html.dark .table th,
html.dark .table td {
    border-color: var(--theme-border) !important;
}

body.light-mode .table-striped tbody tr:nth-of-type(odd),
html.light .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 102, 255, 0.035) !important;
}

body.dark-mode .table-striped tbody tr:nth-of-type(odd),
html.dark .table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.025) !important;
}

body.light-mode .footer-section,
html.light .footer-section {
    background: #ffffff !important;
    border-top-color: var(--theme-border) !important;
}

body.dark-mode .footer-section,
html.dark .footer-section {
    background: #0b0f19 !important;
    border-top-color: var(--theme-border) !important;
}

/* ============================================================
   Revuzi UI Theme Optimization Tweaks
   ============================================================ */
body.light-mode h1.text-white,
body.light-mode h2.text-white,
body.light-mode h3.text-white,
body.light-mode h4.text-white,
body.light-mode h5.text-white,
body.light-mode h6.text-white,
body.light-mode .h1.text-white,
body.light-mode .h2.text-white,
body.light-mode .h3.text-white,
body.light-mode .h4.text-white,
body.light-mode .h5.text-white,
body.light-mode .h6.text-white,
body.light-mode label.text-white,
body.light-mode blockquote.text-white,
body.light-mode .price-amount.text-white,
body.light-mode span.text-white,
body.light-mode div.text-white {
    color: var(--theme-text) !important;
}

body.light-mode .text-white-50 {
    color: var(--theme-text-soft) !important;
    opacity: 0.8;
}

body.light-mode .btn-secondary-cta,
html.light .btn-secondary-cta {
    background: rgba(15, 23, 42, 0.05) !important;
    color: var(--theme-text) !important;
    border: 1px solid rgba(15, 23, 42, 0.15) !important;
}

body.light-mode .btn-secondary-cta:hover,
html.light .btn-secondary-cta:hover {
    background: rgba(0, 102, 255, 0.06) !important;
    color: #0052ff !important;
    border-color: rgba(0, 102, 255, 0.4) !important;
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.1) !important;
}

/* Compare Plan Features Table Overrides */
.compare-plans-section {
    background-color: var(--theme-bg-soft) !important;
    border-top: 1px solid var(--theme-border);
    border-bottom: 1px solid var(--theme-border);
}

.compare-plans-section .table {
    color: var(--theme-text) !important;
    border-color: var(--theme-border) !important;
}

.compare-plans-section th {
    color: var(--theme-text) !important;
    font-family: 'Outfit', sans-serif;
    border-color: var(--theme-border) !important;
}

.compare-plans-section td {
    color: var(--theme-text-soft) !important;
    border-color: var(--theme-border) !important;
}

.compare-plans-section tr:hover {
    background-color: var(--table-row-hover) !important;
}

.compare-plans-section .text-warning {
    color: #0066ff !important;
}

body.dark-mode .compare-plans-section .text-warning,
html.dark .compare-plans-section .text-warning {
    color: #38bdf8 !important;
}

.compare-plans-section .fa-check {
    color: #10b981 !important;
}

.compare-plans-section .fa-times {
    color: var(--theme-muted) !important;
    opacity: 0.5;
}

/* Global input styling tweaks for blog, contact & demo */
body.light-mode .form-control,
body.light-mode .custom-select,
body.light-mode .form-control-custom,
body.light-mode .custom-select-control,
html.light .form-control,
html.light .custom-select,
html.light .form-control-custom,
html.light .custom-select-control {
    background-color: var(--theme-control-bg) !important;
    border-color: var(--theme-control-border) !important;
    color: var(--theme-text) !important;
}

body.light-mode label,
html.light label {
    color: var(--theme-text-soft) !important;
}

/* Fix section-divider in light mode */
body.light-mode .section-divider,
html.light .section-divider {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(0, 102, 255, 0.15) 50%,
            transparent 100%) !important;
}

/* Badge & bg-dark pill overrides in light mode */
body.light-mode .badge[style*="#38bdf8"],
html.light .badge[style*="#38bdf8"],
body.light-mode .badge[style*="color: #38bdf8"],
html.light .badge[style*="color: #38bdf8"],
body.light-mode span[style*="color: #38bdf8"],
html.light span[style*="color: #38bdf8"] {
    color: #0052ff !important;
}

body.light-mode .d-inline-flex.bg-dark,
html.light .d-inline-flex.bg-dark {
    background-color: var(--theme-bg-soft) !important;
    border-color: rgba(0, 102, 255, 0.24) !important;
}

body.light-mode .d-inline-flex.bg-dark span.text-white,
html.light .d-inline-flex.bg-dark span.text-white {
    color: var(--theme-text) !important;
}

body.light-mode .d-inline-flex.bg-dark i,
html.light .d-inline-flex.bg-dark i {
    color: #0052ff !important;
}

/* Billing Toggles Adaptability */
.billing-toggle-wrap,
#lp-billing-wrap {
    background: rgba(0, 0, 0, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: var(--transition-smooth);
}

body.light-mode .billing-toggle-wrap,
body.light-mode #lp-billing-wrap,
html.light .billing-toggle-wrap,
html.light #lp-billing-wrap {
    background: rgba(15, 23, 42, 0.05) !important;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
}

.billing-toggle-btn {
    transition: var(--transition-smooth);
    background: transparent !important;
    color: var(--theme-text-soft) !important;
}

.billing-toggle-btn.active {
    background: linear-gradient(135deg, #0072ff 0%, #0047ff 100%) !important;
    color: #ffffff !important;
}

body.light-mode .billing-toggle-btn:not(.active),
html.light .billing-toggle-btn:not(.active) {
    color: var(--theme-muted) !important;
}

/* Light mode stat number override */
body.light-mode .stat-number,
html.light .stat-number {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ════════════════════════════════════
   READY-TO-USE POSTER & DISPLAY SECTION
   ════════════════════════════════════ */
.poster-section {
    position: relative;
    overflow: hidden;
}

.poster-feature-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.poster-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.poster-feature-icon {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: rgba(0, 114, 255, 0.12);
    border: 1px solid rgba(0, 114, 255, 0.25);
    color: #0066ff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition-fast);
}

body.dark-mode .poster-feature-icon,
html.dark .poster-feature-icon {
    background: rgba(56, 189, 248, 0.12);
    border-color: rgba(56, 189, 248, 0.3);
    color: #38bdf8;
}

.poster-feature-item:hover .poster-feature-icon {
    transform: scale(1.08);
    background: #0066ff;
    color: #ffffff !important;
    border-color: #0066ff;
}

.poster-feature-content h5 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.poster-feature-content p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 0;
    line-height: 1.55;
}

.poster-preview-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 16px;
    background: var(--card-gradient-1);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.poster-preview-wrapper:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

.poster-image-box {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.2);
    aspect-ratio: 1 / 1;
}

.poster-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.poster-image-box:hover img {
    transform: scale(1.03);
}

.poster-pill-banner {
    margin-top: 14px;
    background: #0f172a;
    color: #ffffff;
    padding: 0.85rem 1.25rem;
    border-radius: 14px;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

body.light-mode .poster-pill-banner,
html.light .poster-pill-banner {
    background: #0f172a;
    color: #ffffff;
}

/* ════════════════════════════════════
   MOBILE RESPONSIVE & OVERFLOW FIXES
   ════════════════════════════════════ */
html, body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100vw;
}

#main-content, section, header, footer {
    overflow-x: hidden;
    max-width: 100%;
}

.badge {
    white-space: normal !important;
    max-width: 100% !important;
    word-break: break-word !important;
    display: inline-block !important;
    line-height: 1.45 !important;
}

.poster-preview-wrapper {
    max-width: 100%;
    box-sizing: border-box;
}

.poster-image-box {
    width: 100%;
    max-width: 100%;
}

.poster-image-box img {
    width: 100%;
    max-width: 100%;
    height: 100%;
    object-fit: cover;
}

.poster-pill-banner {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
}

@media (max-width: 575.98px) {
    .poster-preview-wrapper {
        padding: 12px;
        border-radius: 18px;
    }
    .poster-image-box {
        border-radius: 12px;
    }
    .poster-image-box img {
        border-radius: 12px;
    }
    .poster-pill-banner {
        font-size: 0.8rem;
        padding: 0.55rem 0.75rem;
        border-radius: 10px;
        flex-wrap: wrap;
        gap: 6px;
    }
    .hero-badge {
        font-size: 0.76rem;
        padding: 6px 14px;
        white-space: normal;
        text-align: center;
        max-width: 100%;
    }
    .hero-disclaimer {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 8px;
        font-size: 0.8rem;
        line-height: 1.5;
    }
    .mockup-wrapper {
        margin-top: 35px;
        border-radius: 14px;
    }
}

