/* ============================================================
   METAFLUX — Premium Dark Cyberpunk CSS
   ============================================================ */

/* ──────────────────────────────────────────────────────────────
   0. CSS VARIABLES
   ────────────────────────────────────────────────────────────── */
:root {
    --bg: #070712;
    --bg-card: rgba(10, 10, 26, 0.75);
    --bg-card-hover: rgba(15, 15, 36, 0.85);
    --text: #ffffff;
    --text-muted: #d4d4d8;
    --cyan: #4CBB17;
    --cyan-glow: rgba(76, 187, 23, 0.4);
    --indigo: #4CBB17;
    --indigo-glow: rgba(76, 187, 23, 0.4);
    --magenta: #4CBB17;
    --magenta-glow: rgba(76, 187, 23, 0.4);
    --hot-pink: #4CBB17;
    --glass-border: rgba(255, 255, 255, 0.09);
    --glass-border-hover: rgba(76, 187, 23, 0.35);
    --font-main: 'Outfit', sans-serif;
    --font-sub: 'Space Grotesk', sans-serif;
    --font-display: 'Unbounded', sans-serif;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.25s ease;
}

/* ──────────────────────────────────────────────────────────────
   1. RESET & BASE
   ────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    background: #050508;
}

body {
    font-family: var(--font-main);
    background: transparent;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

::selection {
    background: #ff4500 !important;
    color: #ffffff !important;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ──────────────────────────────────────────────────────────────
   2. BACKGROUND EFFECTS
   ────────────────────────────────────────────────────────────── */
.glow-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(ellipse 800px 800px at 10% 20%, rgba(76, 187, 23, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 700px 700px at 85% 15%, rgba(76, 187, 23, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 750px 750px at 50% 80%, rgba(76, 187, 23, 0.1) 0%, transparent 70%);
}

.ambient-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 70%);
}

/* ──────────────────────────────────────────────────────────────
   3. TYPOGRAPHY
   ────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.2rem); }

.text-gradient-cyan-indigo {
    background: linear-gradient(135deg, #4CBB17 0%, #ff4500 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 8px rgba(76, 187, 23, 0.25));
}

.text-gradient-magenta {
    background: linear-gradient(135deg, #ff4500 0%, #4CBB17 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-shadow: none !important;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.25));
}

.text-green,
.cyber-card h3.text-green,
.cyber-card .service-icon.text-green {
    color: #4CBB17 !important;
    text-shadow: 0 0 15px rgba(76, 187, 23, 0.45) !important;
}

.text-orange,
.cyber-card h3.text-orange,
.cyber-card .service-icon.text-orange {
    color: #ff4500 !important;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.45) !important;
}

.highlight-green {
    color: #4CBB17 !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(76, 187, 23, 0.3) !important;
}

.highlight-orange {
    color: #ff4500 !important;
    font-weight: 800 !important;
    text-shadow: 0 0 10px rgba(255, 69, 0, 0.3) !important;
}

.lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 640px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* ──────────────────────────────────────────────────────────────
   5. NAVBAR
   ────────────────────────────────────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.95rem 5%;
    background: rgba(10, 35, 15, 0.7) !important; /* Premium transparent glassy green */
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(76, 187, 23, 0.3) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    transition: var(--transition-fast);
}

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: #ffffff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.logo-symbol {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 5px rgba(76, 187, 23, 0.45));
}

@media (max-width: 480px) {
    .logo-symbol {
        width: 26px;
        height: 26px;
    }
}

.logo span {
    color: #ff4500 !important; /* Neon orange dot for professional contrast */
    -webkit-text-fill-color: #ff4500 !important;
    text-shadow: 0 0 15px rgba(255, 69, 0, 0.8) !important;
    background: none !important;
    -webkit-background-clip: initial !important;
    background-clip: initial !important;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
}

.nav-links a {
    font-size: 0.8rem;
    font-weight: 900 !important;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff !important;
    text-decoration: none;
    transition: var(--transition-fast);
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) !important;
}

.nav-links a:hover {
    color: var(--cyan) !important;
    text-shadow: 0 0 20px var(--cyan-glow);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Force exact size and alignment match for navbar buttons (Buy Domain, Pricing, Schedule) */
.navbar .nav-right .btn-green,
.navbar .nav-right .btn-white,
.navbar .nav-right .btn-orange,
.navbar .nav-right .dropdown-container button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: 38px !important;
    box-sizing: border-box !important;
    padding: 0 1.5rem !important;
    font-size: 0.8rem !important;
    font-weight: 900 !important;
    line-height: 1 !important;
    border-radius: 99px !important;
    min-width: 125px !important; /* Unified visual width block */
}

/* Navbar button color overrides */
.navbar .nav-right .btn-white {
    background: #ffffff !important;
    color: #e65100 !important;
    border: 1px solid #ffffff !important;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.15) !important;
}

.navbar .nav-right .btn-white:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4) !important;
}

.navbar .nav-right #buyDomainBtn,
.navbar #buyDomainBtnMobile {
    background: #ff4500 !important; /* Orange background */
    color: #ffffff !important;      /* White text */
    border: 1px solid #ff4500 !important;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2) !important;
}

.navbar .nav-right #buyDomainBtn:hover,
.navbar #buyDomainBtnMobile:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.4) !important;
}

.navbar .nav-right .btn-orange,
.navbar .nav-right .btn-green,
.navbar .nav-right .btn-cyan,
.navbar .nav-right .btn-cyber {
    background: #4CBB17 !important; /* Green button for nice contrast */
    color: #ffffff !important;
    border: 1px solid #4CBB17 !important;
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.2) !important;
}

.navbar .nav-right .btn-orange:hover,
.navbar .nav-right .btn-green:hover,
.navbar .nav-right .btn-cyan:hover,
.navbar .nav-right .btn-cyber:hover {
    background: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
    box-shadow: 0 0 20px rgba(76, 187, 23, 0.5) !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition-fast);
}

/* ──────────────────────────────────────────────────────────────
   6. BUTTONS
   ────────────────────────────────────────────────────────────── */
.btn-cyber {
    display: inline-block;
    padding: 0.95rem 2.4rem;
    font-family: var(--font-display);
    font-weight: 900 !important;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    position: relative;
    z-index: 1;
    background: #070712 !important;
    color: #ffffff !important;
    border: none !important;
    overflow: visible !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.1);
}

/* Pseudo-element gradient border */
.btn-cyber::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--cyan), var(--indigo), var(--magenta));
    border-radius: 15px;
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Pseudo-element gradient background fill on hover */
.btn-cyber::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--cyan), var(--indigo), var(--magenta));
    border-radius: 12px;
    z-index: -1;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-cyber:hover {
    color: #ffffff !important;
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 30px rgba(76, 187, 23, 0.25),
        0 0 40px rgba(76, 187, 23, 0.2);
}

.btn-cyber:hover::after {
    opacity: 1;
}

.btn-cyber:hover::before {
    filter: blur(8px);
    opacity: 0.85;
}

.btn-cyan, .btn-outline {
    border: none !important;
}

.btn-ghost {
    background: transparent;
    color: var(--cyan);
    border: none;
    padding: 0.9rem 1rem;
}

.btn-ghost:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ──────────────────────────────────────────────────────────────
   6b. BUY DOMAIN DROPDOWN
   ────────────────────────────────────────────────────────────── */
.btn-white {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 900 !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 99px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #4CBB17 !important;
    color: #ffffff !important;
    border: 1px solid #4CBB17 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.2);
    outline: none;
}

.btn-white:hover {
    background: #070712 !important;
    color: #4CBB17 !important;
    border-color: #4CBB17 !important;
    box-shadow: 0 0 20px rgba(76, 187, 23, 0.5);
}
.btn-green {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 900 !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 99px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #4CBB17 !important;
    color: #ffffff !important;
    border: 1px solid #4CBB17 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.2);
    outline: none;
}

.btn-green:hover {
    background: #070712 !important;
    color: #4CBB17 !important;
    border-color: #4CBB17 !important;
    box-shadow: 0 0 20px rgba(76, 187, 23, 0.5);
}
.btn-orange {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    font-family: var(--font-display);
    font-weight: 900 !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 99px;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    background: #ff4500 !important;
    color: #ffffff !important;
    border: 1px solid #ff4500 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2);
    outline: none;
}

.btn-orange:hover {
    background: #070712 !important;
    color: #ff4500 !important;
    border-color: #ff4500 !important;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}


.dropdown-container {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(7, 7, 18, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    min-width: 130px;
    padding: 0.4rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(76, 187, 23, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
}

.dropdown-container:hover .dropdown-menu,
.dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1.25rem;
    color: #ffffff !important;
    text-decoration: none;
    font-family: var(--font-main);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
    text-align: center;
}

.dropdown-item:hover {
    background: rgba(76, 187, 23, 0.1);
    color: var(--cyan) !important;
}

@media (max-width: 768px) {
    .dropdown-container {
        display: block !important;
        width: 100%;
    }
    .dropdown-menu {
        width: 100%;
        left: 0;
        transform: translateY(10px);
    }
    .dropdown-container:hover .dropdown-menu,
    .dropdown-menu.show {
        transform: translateY(0) !important;
    }
}

/* ──────────────────────────────────────────────────────────────
   7. SECTIONS
   ────────────────────────────────────────────────────────────── */
.main-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 10rem 0 5rem;
    position: relative;
    overflow: hidden;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────
   8. CONTENT GRID
   ────────────────────────────────────────────────────────────── */
.content-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
}

/* ──────────────────────────────────────────────────────────────
   9. HERO STYLES
   ────────────────────────────────────────────────────────────── */
.main-section h1 {
    font-size: clamp(1.5rem, 7vw, 5.5rem);
    line-height: 0.95;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 80px rgba(76, 187, 23, 0.08);
}

.hero-subtitle {
    font-family: 'Smooch Sans', sans-serif;
    font-size: clamp(0.55rem, 2.4vw, 1.2rem);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 880px;
    line-height: 1.6;
}

.hero-sub-line {
    display: inline-block;
    white-space: nowrap;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

@media (max-width: 992px) {
    .hero-buttons {
        justify-content: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ──────────────────────────────────────────────────────────────
   10. HERO IMAGE CONTAINER
   ────────────────────────────────────────────────────────────── */
.hero-image-container {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 0 50px rgba(76, 187, 23, 0.15);
    border: 2.5px solid rgba(255, 255, 255, 0.75) !important;
    background: var(--bg);
    transition: var(--transition);
}

.hero-image-container img {
    width: 100%;
    display: block;
    object-fit: cover;
    filter: brightness(0.95) contrast(1.05);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover img {
    transform: scale(1.04);
}

.hero-image-container:hover {
    border-color: #ffffff !important;
    box-shadow: 0 20px 40px rgba(0, 3, 6, 0.6), 0 0 35px rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-6px);
}

/* ──────────────────────────────────────────────────────────────
   11. DISCOUNT BADGE
   ────────────────────────────────────────────────────────────── */
@keyframes discountPulse {
    0%, 100% {
        transform: rotate(-8deg) scale(1);
        box-shadow: 0 0 30px rgba(255, 0, 80, 0.5);
    }
    50% {
        transform: rotate(-8deg) scale(1.08);
        box-shadow: 0 0 60px rgba(255, 0, 80, 0.8), 0 0 120px rgba(255, 0, 80, 0.3);
    }
}

@keyframes discountShine {
    0% { background-position: 200% 50%; }
    100% { background-position: -200% 50%; }
}

.discount-badge {
    position: absolute;
    top: 20px;
    right: -10px;
    z-index: 10;
    background: linear-gradient(135deg, #ff0050, #ff3366, #ff0050);
    color: #ffffff;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.8rem 2rem 0.8rem 1.5rem;
    border-radius: 14px 0 0 14px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    line-height: 1.2;
    animation: discountPulse 2s ease-in-out infinite;
}

.discount-percent {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1;
    background: linear-gradient(90deg, #fff, #ffe066, #fff, #ffe066);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: discountShine 3s linear infinite;
    filter: drop-shadow(0 0 6px rgba(255, 224, 102, 0.5));
}

.discount-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    opacity: 0.9;
}

.discount-deadline {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    opacity: 0.85;
    margin-top: 4px;
    padding-top: 4px;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

/* ──────────────────────────────────────────────────────────────
   12. DISCOUNT BANNER
   ────────────────────────────────────────────────────────────── */
@keyframes bannerGlow {
    0%, 100% {
        box-shadow:
            0 0 20px rgba(255, 69, 0, 0.25),
            inset 0 0 20px rgba(255, 69, 0, 0.05);
    }
    50% {
        box-shadow:
            0 0 45px rgba(255, 69, 0, 0.45),
            0 0 90px rgba(255, 69, 0, 0.12),
            inset 0 0 30px rgba(255, 69, 0, 0.08);
    }
}

@keyframes bannerShine {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(300%) skewX(-15deg); }
}

.discount-banner {
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.1), rgba(255, 69, 0, 0.04), rgba(255, 69, 0, 0.1)) !important;
    border: 2px solid rgba(255, 69, 0, 0.45) !important;
    border-radius: var(--radius-md);
    padding: 1.5rem 2.5rem;
    text-align: center;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    animation: bannerGlow 3s ease-in-out infinite;
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
    transform: skewX(-15deg);
    animation: bannerShine 5s ease-in-out infinite;
    pointer-events: none;
}

.banner-text {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 3vw, 2.5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 69, 0, 0.35) !important;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.banner-text .fire-icon {
    display: inline-block;
    vertical-align: middle;
    width: 2.2rem;
    height: 2.2rem;
    color: #ff4500 !important;
    filter: drop-shadow(0 0 8px rgba(255, 69, 0, 0.7)) !important;
    animation: flamePulse 2s ease-in-out infinite;
}

.banner-text .percent {
    color: #ff4500 !important;
    font-size: 1.25em;
    -webkit-text-fill-color: initial;
    text-shadow: 0 0 35px rgba(255, 69, 0, 0.8), 0 0 70px rgba(255, 69, 0, 0.4) !important;
}

@keyframes flamePulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 6px rgba(76, 187, 23, 0.4)); }
    50% { transform: scale(1.1) rotate(3deg); filter: drop-shadow(0 0 14px rgba(76, 187, 23, 0.8)); }
}

.banner-sub {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 2.5px;
    margin-top: 0.85rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(76, 187, 23, 0.08);
    padding: 0.45rem 1.35rem;
    border-radius: 99px;
    border: 1px solid rgba(76, 187, 23, 0.18);
}

/* ──────────────────────────────────────────────────────────────
   13. STATS BAR
   ────────────────────────────────────────────────────────────── */
.stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    padding: 3rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    margin-top: 0;
    margin-bottom: 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--cyan), var(--indigo));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.25rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ──────────────────────────────────────────────────────────────
   14. CYBER CARDS
   ────────────────────────────────────────────────────────────── */
.cyber-card {
    background: var(--bg-card);
    border: 2.5px solid rgba(255, 255, 255, 0.75) !important;
    border-radius: var(--radius-md);
    padding: 2.5rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.cyber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--cyan), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.cyber-card:hover::before {
    transform: translateX(100%);
}

.cyber-card:hover {
    border-color: #ffffff !important;
    box-shadow:
        0 20px 40px rgba(0, 3, 6, 0.6),
        0 0 35px rgba(255, 255, 255, 0.25) !important;
    transform: translateY(-6px);
    background: var(--bg-card-hover);
}

.cyber-card.featured {
    border-color: rgba(76, 187, 23, 0.2);
    background: rgba(76, 187, 23, 0.02);
}

.cyber-card.featured:hover {
    border-color: rgba(76, 187, 23, 0.35);
}

/* ──────────────────────────────────────────────────────────────
   15. SERVICES SECTION
   ────────────────────────────────────────────────────────────── */
.services-section {
    padding: 8rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-icon svg {
    width: 2.5rem;
    height: 2.5rem;
    stroke: currentColor !important;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.cyber-card:hover .service-icon svg {
    transform: scale(1.1);
}

.cyber-card h3 {
    font-size: 1.3rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
    letter-spacing: 0;
}

.cyber-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* ──────────────────────────────────────────────────────────────
   16. PROFESSIONS CAROUSEL
   ────────────────────────────────────────────────────────────── */
@keyframes profScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.professions-section {
    padding: 6rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    background: linear-gradient(180deg, transparent, rgba(76, 187, 23, 0.01), transparent);
}

.prof-track-wrapper {
    position: relative;
    overflow: hidden;
    margin: 3rem -2rem 0;
}

.prof-track-wrapper::before,
.prof-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.prof-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.prof-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
}

.prof-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: profScroll 55s linear infinite;
    padding: 1rem 2rem;
}

.prof-track:hover {
    animation-play-state: paused;
}

.prof-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    width: 230px;
    flex-shrink: 0;
    overflow: hidden;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.prof-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 10px 30px rgba(0, 3, 6, 0.5), 0 0 20px rgba(76, 187, 23, 0.05);
    transform: translateY(-5px);
}

.prof-card-img {
    width: 100%;
    height: 155px;
    overflow: hidden;
    border-bottom: 1px solid var(--glass-border);
    background: #000;
}

.prof-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.prof-card:hover .prof-card-img img {
    transform: scale(1.08);
}

.prof-card-body {
    padding: 0.9rem 1.2rem;
    text-align: center;
}

.prof-card-body h4 {
    font-size: 0.76rem;
    color: #ffffff;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Rotator Progress Bar Indicator */
.rotator-progress-container {
    width: 250px;
    height: 4px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 99px;
    margin: 2rem auto 0 auto;
    position: relative;
    overflow: visible; /* Let the dot overflow the thin track */
}

.rotator-progress-bar {
    position: absolute;
    top: 50%;
    left: 0;
    width: 10px;
    height: 10px;
    background: #ff4500;
    border-radius: 50%;
    box-shadow: 0 0 12px #ff4500, 0 0 4px #4CBB17;
    animation: rotatorProgress 55s linear infinite;
    transform: translateY(-50%);
}

/* Pause the progress bar animation when the track is hovered */
.prof-track-wrapper:hover ~ .rotator-progress-container .rotator-progress-bar,
.rotator-progress-container:hover .rotator-progress-bar {
    animation-play-state: paused;
}

@keyframes rotatorProgress {
    0% { left: 0%; transform: translateY(-50%) translateX(0); }
    100% { left: 100%; transform: translateY(-50%) translateX(-10px); }
}



/* ──────────────────────────────────────────────────────────────
   17. ROI CALCULATOR
   ────────────────────────────────────────────────────────────── */
.roi-calculator-container {
    padding: 8rem 0;
    background: linear-gradient(180deg, transparent, rgba(76, 187, 23, 0.015), transparent);
}

.roi-card {
    background: rgba(10, 10, 18, 0.85);
    border: 1px solid rgba(76, 187, 23, 0.12);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.roi-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    margin-top: 3rem;
}

.roi-sliders {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.slider-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.slider-label {
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text);
}

.slider-val {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan-glow);
}

.cyber-slider {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.06);
    outline: none;
    cursor: pointer;
}

.cyber-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 12px var(--cyan-glow);
    transition: var(--transition-fast);
}

.cyber-slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    border: none;
    box-shadow: 0 0 12px var(--cyan-glow);
    transition: var(--transition-fast);
}

.cyber-slider:hover::-webkit-slider-thumb {
    transform: scale(1.25);
    background: #ffffff;
    box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(76, 187, 23, 0.15);
}

.cyber-slider:hover::-moz-range-thumb {
    transform: scale(1.25);
    background: #ffffff;
    box-shadow: 0 0 20px var(--cyan-glow), 0 0 40px rgba(76, 187, 23, 0.15);
}

.roi-results-card {
    background: rgba(76, 187, 23, 0.015);
    border: 1px dashed rgba(76, 187, 23, 0.15);
    border-radius: var(--radius-sm);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100%;
}

.roi-stat {
    margin-bottom: 2rem;
}

.roi-stat:last-child {
    margin-bottom: 0;
}

.roi-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.roi-stat-num {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1;
    margin-top: 0.5rem;
}

@media (max-width: 992px) {
    .roi-layout {
        grid-template-columns: 1fr;
    }
}

/* ──────────────────────────────────────────────────────────────
   18. PRICING
   ────────────────────────────────────────────────────────────── */
.pricing-section {
    padding: 8rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.price-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    border-radius: var(--radius-lg);
    border: 1.5px solid #4CBB17 !important;
    box-shadow: 0 8px 25px rgba(76, 187, 23, 0.05);
}

.price-box .badge {
    align-self: center;
    background: rgba(76, 187, 23, 0.1) !important;
    border-color: rgba(76, 187, 23, 0.2) !important;
    color: #4CBB17 !important;
}

.price-box .price-features {
    flex-grow: 1;
}

.price-box .btn-green {
    margin-top: auto;
}

.price-box:hover {
    border-color: #4CBB17 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(76, 187, 23, 0.2) !important;
}

.price-box.featured {
    border-color: #ff4500 !important;
    background: rgba(255, 69, 0, 0.015) !important;
    box-shadow: 0 8px 25px rgba(255, 69, 0, 0.05) !important;
}

.price-box.featured:hover {
    border-color: #ff4500 !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 69, 0, 0.25) !important;
}

.price-box.featured .badge {
    background: rgba(255, 69, 0, 0.1) !important;
    border-color: rgba(255, 69, 0, 0.2) !important;
    color: #ff4500 !important;
}

.price-box.featured .btn-green {
    background: #ff4500 !important;
    border-color: #ff4500 !important;
    box-shadow: 0 4px 15px rgba(255, 69, 0, 0.2) !important;
}

.price-box.featured .btn-green:hover {
    background: #070712 !important;
    color: #ff4500 !important;
    border-color: #ff4500 !important;
    box-shadow: 0 0 20px rgba(255, 69, 0, 0.5) !important;
}

.price-tag {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    margin: 1.25rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.price-original {
    font-size: 1.6rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.75rem;
    font-weight: 500;
    opacity: 0.6;
    display: inline-block !important;
}

.price-original .currency-symbol {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.1rem;
    font-weight: 500;
    display: inline-block !important;
}

.price-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-left: 0.25rem;
    font-weight: 400;
}

.currency-symbol {
    font-size: 1.5rem;
    color: var(--cyan);
    margin-right: 0.15rem;
    font-weight: 700;
}

.price-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-features li::before {
    content: '→';
    color: var(--cyan);
    font-weight: bold;
    flex-shrink: 0;
}

.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

/* ──────────────────────────────────────────────────────────────
   19. TESTIMONIALS
   ────────────────────────────────────────────────────────────── */
@keyframes testiScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonials-section {
    padding: 8rem 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
}

.testi-track-wrapper {
    position: relative;
    overflow: hidden;
    margin: 3rem -2rem 0;
}

.testi-track-wrapper::before,
.testi-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.testi-track-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg), transparent);
}

.testi-track-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg), transparent);
}

.testi-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: testiScroll 40s linear infinite;
    padding: 1rem 2rem;
}

.testi-track:hover {
    animation-play-state: paused;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2rem;
    width: 350px;
    flex-shrink: 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.testi-card:hover {
    border-color: rgba(76, 187, 23, 0.15);
    box-shadow: 0 10px 30px rgba(0, 3, 6, 0.4), 0 0 15px rgba(76, 187, 23, 0.04);
}

.testi-quote {
    font-size: 3.5rem;
    line-height: 1;
    color: var(--cyan);
    opacity: 0.12;
    margin-bottom: -0.75rem;
    font-family: Georgia, 'Times New Roman', serif;
    user-select: none;
    -webkit-user-select: none;
}

.testi-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.testi-footer {
    display: flex;
    gap: 0.85rem;
    align-items: center;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
    color: #ffffff;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--indigo), var(--magenta));
}

.testi-info {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.testi-info strong {
    font-size: 0.9rem;
    color: #ffffff;
}

.testi-info span {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ──────────────────────────────────────────────────────────────
   20. CONTACT SECTION
   ────────────────────────────────────────────────────────────── */
.contact-section {
    padding: 8rem 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 5rem;
    align-items: start;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.contact-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--cyan);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
    letter-spacing: 1px;
}

.contact-text p,
.contact-text a {
    font-size: 1rem;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-text a:hover {
    color: var(--cyan);
    text-shadow: 0 0 15px var(--cyan-glow);
}

.contact-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font-main);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-control:focus {
    border-color: var(--cyan);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 0 20px rgba(76, 187, 23, 0.08);
}

.form-control::placeholder {
    color: rgba(138, 138, 154, 0.5);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

@media (max-width: 992px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}

/* ──────────────────────────────────────────────────────────────
   21. SUCCESS MODAL
   ────────────────────────────────────────────────────────────── */
.form-success {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: rgba(5, 5, 8, 0.95);
    border: 1px solid var(--cyan);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 0 60px var(--cyan-glow);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    max-width: 420px;
    width: 90%;
}

.form-success.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.success-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, var(--cyan), var(--indigo));
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
    box-shadow: 0 0 30px var(--cyan-glow);
}

.success-text h3 {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.success-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ──────────────────────────────────────────────────────────────
   22. AI CHATBOT WIDGET
   ────────────────────────────────────────────────────────────── */

/* Floating Action Button */
#chatFab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--cyan), var(--indigo));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1050;
    box-shadow: 0 4px 25px rgba(76, 187, 23, 0.35), 0 0 50px rgba(76, 187, 23, 0.15);
    transition: var(--transition);
    user-select: none;
    -webkit-user-select: none;
}

#chatFab:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 35px rgba(76, 187, 23, 0.5), 0 0 60px rgba(76, 187, 23, 0.25);
}

#chatFab.active {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.chat-fab-icon,
.chat-fab-close {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.chat-fab-icon svg,
.chat-fab-close svg {
    width: 26px;
    height: 26px;
}

.chat-fab-pulse {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--cyan);
    opacity: 0;
    animation: fabPulse 2.5s infinite;
}

@keyframes fabPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.5); opacity: 0; }
}

.chat-fab-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: var(--hot-pink);
    color: #fff;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 800;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(255, 0, 80, 0.5);
    animation: badgeBounce 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes badgeBounce {
    0% { transform: scale(0); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

/* Chat Panel */
#chatPanel {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 380px;
    max-height: 520px;
    background: rgba(8, 8, 16, 0.97);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    z-index: 1040;
    overflow: hidden;
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(76, 187, 23, 0.06);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

#chatPanel.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Header */
.chat-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(76, 187, 23, 0.08), rgba(76, 187, 23, 0.08));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    flex-shrink: 0;
}

.chat-header-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--indigo));
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: #fff;
    position: relative;
    flex-shrink: 0;
}

.chat-avatar-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid rgba(8, 8, 16, 0.97);
}

.chat-header-info {
    flex: 1;
    min-width: 0;
}

.chat-header-name {
    font-weight: 800;
    font-size: 0.95rem;
    color: #fff;
}

.chat-header-status {
    font-size: 0.7rem;
    color: var(--cyan);
    font-weight: 600;
    letter-spacing: 0.3px;
}

.chat-header-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 50%;
    transition: var(--transition-fast);
    line-height: 1;
}

.chat-header-close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    min-height: 280px;
    max-height: 340px;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.08) transparent;
}

.chat-messages::-webkit-scrollbar {
    width: 4px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 99px;
}

.chat-msg {
    display: flex;
    flex-direction: column;
    animation: msgFadeIn 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes msgFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-msg.bot {
    align-items: flex-start;
}

.chat-msg.user {
    align-items: flex-end;
}

.chat-bubble {
    max-width: 85%;
    padding: 0.7rem 1rem;
    border-radius: 16px;
    font-size: 0.85rem;
    line-height: 1.55;
    word-wrap: break-word;
}

.chat-bubble.bot {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: linear-gradient(135deg, var(--cyan), var(--indigo));
    color: #fff;
    border-bottom-right-radius: 4px;
    font-weight: 500;
}

.chat-bubble strong {
    color: var(--cyan);
    font-weight: 700;
}

.chat-bubble.user strong {
    color: #fff;
}

/* Typing animation */
.typing-dots {
    display: flex;
    gap: 4px;
    padding: 0.8rem 1.2rem !important;
    align-items: center;
}

.typing-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--text-muted);
    animation: dotBounce 1.4s infinite ease-in-out;
}

.typing-dots span:nth-child(2) { animation-delay: 0.15s; }
.typing-dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes dotBounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.4; }
    40% { transform: scale(1); opacity: 1; }
}

/* Quick Reply Buttons */
.chat-quick-replies {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.5rem;
    animation: msgFadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-quick-btn {
    padding: 0.45rem 0.85rem;
    border-radius: 99px;
    border: 1px solid rgba(76, 187, 23, 0.25);
    background: rgba(76, 187, 23, 0.05);
    color: var(--cyan);
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: var(--font-main);
    white-space: nowrap;
}

.chat-quick-btn:hover {
    background: rgba(76, 187, 23, 0.15);
    border-color: var(--cyan);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.15);
}

/* Input Area */
.chat-input-area {
    display: flex;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(5, 5, 10, 0.6);
    flex-shrink: 0;
}

#chatInput {
    flex: 1;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    border-radius: 99px;
    padding: 0.6rem 1rem;
    color: var(--text);
    font-family: var(--font-main);
    font-size: 0.85rem;
    outline: none;
    transition: var(--transition-fast);
}

#chatInput:focus {
    border-color: rgba(76, 187, 23, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

#chatInput::placeholder {
    color: rgba(138, 138, 154, 0.5);
}

#chatSendBtn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--cyan), var(--indigo));
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

#chatSendBtn:hover {
    transform: scale(1.08);
    box-shadow: 0 4px 15px rgba(76, 187, 23, 0.3);
}

#chatSendBtn svg {
    width: 18px;
    height: 18px;
}

/* Mobile responsive */
@media (max-width: 480px) {
    #chatPanel {
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        max-height: 100vh;
        max-height: 100dvh;
        border-radius: 0;
    }

    #chatPanel.open {
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }

    .chat-messages {
        max-height: calc(100vh - 180px);
        max-height: calc(100dvh - 180px);
    }

    #chatFab {
        bottom: 16px;
        right: 16px;
    }
}

/* ──────────────────────────────────────────────────────────────
   23. FOOTER
   ────────────────────────────────────────────────────────────── */
footer {
    padding: 3.5rem 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

footer p {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ──────────────────────────────────────────────────────────────
   24. LANDING HERO GRID
   ────────────────────────────────────────────────────────────── */
.landing-hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (max-width: 992px) {
    .landing-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }
}

/* ──────────────────────────────────────────────────────────────
   25. PORTFOLIO
   ────────────────────────────────────────────────────────────── */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3.5rem;
}

.case-study-card {
    padding: 1.25rem;
}

.case-image {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 1.25rem;
    border: 1px solid var(--glass-border);
    position: relative;
    background: #000;
}

.case-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-study-card:hover .case-image img {
    transform: scale(1.05);
}

.case-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(76, 187, 23, 0.08);
    color: var(--indigo);
    border: 1px solid rgba(76, 187, 23, 0.15);
    border-radius: 99px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}

/* ──────────────────────────────────────────────────────────────
   26. SCROLL REVEALS
   ────────────────────────────────────────────────────────────── */
.reveal-text,
.reveal-up,
.reveal-left,
.reveal-right,
.reveal {
    opacity: 0;
    visibility: hidden;
}

@keyframes revealText {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes revealRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal-text.active,
.reveal.active {
    animation: revealText 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    visibility: visible;
}

.reveal-up.active {
    animation: revealUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    visibility: visible;
}

.reveal-left.active {
    animation: revealLeft 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    visibility: visible;
}

.reveal-right.active {
    animation: revealRight 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    visibility: visible;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

/* ──────────────────────────────────────────────────────────────
   27. RESPONSIVE
   ────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        order: 1;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(7, 7, 18, 0.98);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        border-bottom: 1px solid var(--glass-border);
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 5%;
        gap: 0;
        z-index: 999;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1rem 0;
        text-align: left;
        font-size: 0.9rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: #ffffff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        transition: color 0.3s ease;
    }

    .nav-links a:hover {
        color: #4CBB17;
    }

    .nav-links li:last-child a,
    .nav-links .mobile-only a {
        border-bottom: none;
    }

    .nav-links .mobile-only {
        display: block !important;
        margin-top: 1rem;
    }
    
    .nav-links.open {
        display: flex;
    }

    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        order: 3;
        border: 1px solid #4CBB17 !important;
        border-radius: 6px !important;
        background: none !important;
        padding: 8px;
        cursor: pointer;
        width: 38px;
        height: 38px;
        gap: 5px;
    }

    .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: #4CBB17 !important;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .hamburger:hover span {
        background: #ffffff !important;
    }

    .hamburger:hover {
        border-color: #ffffff !important;
    }

    @keyframes slideDown {
        from { transform: translateY(-10px); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .roi-layout {
        grid-template-columns: 1fr;
    }

    .price-box {
        margin-bottom: 2rem;
    }

    .discount-badge {
        font-size: 0.85rem;
        top: 10px;
        right: -8px;
        padding: 0.6rem 1.4rem 0.6rem 1rem;
    }

    .discount-badge .discount-percent {
        font-size: 2rem;
    }

    .discount-banner {
        padding: 1rem 0.85rem !important;
    }

    .discount-banner .banner-text {
        font-size: 0.95rem !important;
        letter-spacing: 0.5px !important;
        flex-wrap: nowrap !important;
        gap: 6px !important;
    }

    .discount-banner .banner-text .fire-icon {
        width: 1.35rem !important;
        height: 1.35rem !important;
    }

    .landing-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }

    .main-section {
        padding: 8rem 0 3rem;
    }

    h1 {
        letter-spacing: -0.5px;
    }
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.testi-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    width: 100%;
    margin-top: 1.5rem;
}

@media (max-width: 600px) {
    .testi-footer {
        flex-direction: column !important;
        text-align: center !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.5rem !important;
    }
    .testi-footer > div {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
        justify-content: center !important;
    }
    .testi-footer a.btn-cyber {
        width: 100% !important;
        margin: 0.5rem 0 0 !important;
        display: block !important;
    }
}

/* ──────────────────────────────────────────────────────────────
   28. ADDITIONAL MOBILE RESPONSIVENESS OVERRIDES
   ────────────────────────────────────────────────────────────── */

.mobile-only {
    display: none !important;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.showcase-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.showcase-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Service & Portfolio Grid support for narrower mobile screens */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

@media (max-width: 992px) {
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .showcase-header {
        justify-content: center;
    }
    .showcase-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .mobile-only {
        display: none !important;
    }
    .nav-right {
        display: flex !important;
        order: 2;
        gap: 0.4rem;
        margin-left: auto;
        margin-right: 0.75rem;
        align-items: center;
    }
    .navbar .nav-right .btn-green,
    .navbar .nav-right .btn-white,
    .navbar .nav-right .btn-orange,
    .navbar .nav-right .dropdown-container button {
        padding: 0 0.75rem !important;
        font-size: 0.7rem !important;
        height: 32px !important;
        min-width: auto !important;
        border-radius: 99px;
        letter-spacing: 0.5px !important;
    }
    .cyber-card {
        padding: 1.5rem;
    }
    .roi-card, .contact-card {
        padding: 2rem 1.5rem;
    }
    .back-btn-portfolio {
        position: absolute !important;
        top: 20px !important;
        left: 20px !important;
        font-size: 0.8rem !important;
        padding: 0.5rem 1rem !important;
    }
    .hero-subtitle br {
        display: none !important;
    }
    .hero-sub-line {
        display: inline !important;
        white-space: normal !important;
    }
    .hero-subtitle {
        font-size: 1.15rem !important;
        line-height: 1.5 !important;
        letter-spacing: 1px !important;
        text-align: center !important;
        max-width: 100% !important;
    }
}

@media (max-width: 576px) {
    .hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.85rem !important;
        max-width: 320px !important;
        margin: 0 auto 3rem !important;
    }
    .hero-buttons a {
        width: 100% !important;
        text-align: center !important;
        padding: 0.75rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 0.75rem 5% !important;
    }
    .nav-right {
        gap: 0.3rem !important;
        margin-right: 0.5rem !important;
    }
    .navbar .nav-right .btn-green,
    .navbar .nav-right .btn-white,
    .navbar .nav-right .btn-orange,
    .navbar .nav-right .dropdown-container button {
        padding: 0 0.55rem !important;
        font-size: 0.65rem !important;
        height: 28px !important;
        min-width: auto !important;
        letter-spacing: 0.2px !important;
    }
    .logo {
        font-size: 1.4rem !important;
    }
    .cyber-card {
        padding: 1.25rem;
    }
    .roi-card, .contact-card, .roi-results-card {
        padding: 1.5rem 1.25rem;
    }
    .roi-stat-num {
        font-size: 2.4rem;
    }
    .discount-banner {
        padding: 1rem 1.25rem;
        margin-bottom: 2rem;
    }
    .prof-track-wrapper,
    .testi-track-wrapper {
        margin-left: -1.25rem;
        margin-right: -1.25rem;
    }
    .logo {
        font-size: 1.3rem !important;
        gap: 6px !important;
    }
    .logo-symbol {
        width: 22px !important;
        height: 22px !important;
    }
    .showcase-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .showcase-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    .showcase-buttons a.btn-cyber {
        width: 100% !important;
        margin: 0 !important;
    }
}

/* Full Screen Background Video (YouTube Embed Support) */
.hero-video-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    pointer-events: none;
    background: #050508 url('bg_fallback.png') no-repeat center center;
    background-size: cover;
}

.hero-video-bg-container iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    transform: translate(-50%, -50%) scale(1.15); /* Scale up to crop out controls */
    pointer-events: none !important;
    object-fit: cover;
}

.hero-video-bg-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    pointer-events: none;
}

.hero-video-bg-container iframe {
    opacity: 0;
    transition: opacity 0.2s ease-in-out; /* Fast fade out to prevent black flash */
    pointer-events: none !important;
}

.hero-video-bg-container iframe.loaded {
    opacity: 1;
    transition: opacity 0.8s ease-in-out; /* Smooth fade in once playing */
    pointer-events: none !important;
}

.hero-video-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 8, 0.42); /* Lightened to make video vivid and clear */
    z-index: -1;
    pointer-events: auto;
}

@media (max-width: 992px) {
    .hero-video-overlay {
        background: rgba(5, 5, 8, 0.52); /* Keep text readable on mobile */
    }
}

@media (max-width: 768px) {
    .hero-video-bg-container iframe {
        min-height: 105vh !important;
        min-width: 185vh !important;
        transform: translate(-50%, -50%) scale(1.35) !important;
    pointer-events: none !important;
    }
}

@media (max-width: 480px) {
    .hero-video-bg-container iframe {
        min-height: 110vh !important;
        min-width: 195vh !important;
        transform: translate(-50%, -50%) scale(1.6) !important;
    pointer-events: none !important;
    }
}

/* ============================================================
   AESTHETIC UPGRADES: WHITE BOLD TEXT & HIGH CONTRAST CARDS
   ============================================================ */

/* Force all text in the cyber cards to be bold and pure white */
.cyber-card,
.cyber-card h3,
.cyber-card p,
.cyber-card li,
.price-features,
.price-features li,
.price-period,
.price-box,
.price-box p,
.price-box li,
.price-tag,
.currency-symbol {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.15) !important;
}

/* Maintain distinct bold levels for headings inside cards */
.cyber-card h3 {
    font-weight: 900 !important;
    font-size: 1.45rem !important;
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.25) !important;
    margin-bottom: 0.85rem !important;
}

/* Muted or accent colors can be overridden for maximum contrast */
.price-box .price-tag .price-original,
.price-box .price-tag .price-original .currency-symbol {
    color: rgba(255, 255, 255, 0.4) !important;
    font-weight: 500 !important;
    text-decoration: line-through !important;
    -webkit-text-decoration-line: line-through !important;
    text-decoration-color: rgba(255, 255, 255, 0.45) !important;
    -webkit-text-decoration-color: rgba(255, 255, 255, 0.45) !important;
    display: inline-block !important;
    opacity: 0.6 !important;
    text-shadow: none !important;
}

/* Hero subtitle and general intro sections bold white */
.hero-subtitle,
.section-header p,
.lead {
    color: #ffffff !important;
    font-weight: 700 !important;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1) !important;
}

/* Ensure the arrows in lists stand out as vibrant cyan accents */
.price-features li::before {
    color: var(--cyan) !important;
    font-weight: 900 !important;
    text-shadow: 0 0 8px var(--cyan-glow) !important;
}

/* Floating Video Mute Button with glassmorphism */
.video-mute-btn {
    position: fixed;
    bottom: 28px;
    left: 28px;
    z-index: 1000;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-main);
    font-weight: 900 !important;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 99px;
    cursor: pointer;
    border: 3px solid #ffffff !important;
    color: #ffffff !important;
    background: rgba(5, 5, 8, 0.75) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.video-mute-btn:hover {
    background: #ffffff !important;
    color: #050508 !important;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    transform: scale(1.05) translateY(-2px);
}

.video-mute-btn.active {
    border-color: #ffffff !important;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
    .video-mute-btn {
        bottom: 20px;
        left: 20px;
        padding: 0.6rem 1.2rem;
        font-size: 0.75rem;
    }
}

/* Mobile Pricing Scaling Overrides */
@media (max-width: 480px) {
    .price-tag {
        font-size: 2.3rem !important;
        margin: 0.85rem 0 !important;
    }
    .price-box .price-tag .price-original {
        font-size: 1.15rem !important;
        margin-right: 0.5rem !important;
    }
    .price-box .price-tag .price-original .currency-symbol {
        font-size: 0.75rem !important;
    }
    .price-tag span {
        font-size: 2.3rem !important;
    }
    .price-tag .currency-symbol {
        font-size: 1.1rem !important;
    }
    .price-tag .price-period {
        font-size: 0.75rem !important;
    }
}

.cinzel-font {
    font-family: 'Cinzel', serif !important;
}

.promo-text {
    font-family: 'Unbounded', sans-serif !important;
    color: #4CBB17 !important;
    font-weight: 800 !important;
    font-size: 1.2rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-shadow: 0 0 15px rgba(76, 187, 23, 0.45) !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.discount-tag-icon {
    width: 1.45rem;
    height: 1.45rem;
    stroke: #4CBB17 !important;
    filter: drop-shadow(0 0 6px rgba(76, 187, 23, 0.6));
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .hero-video-bg-container {
        background: #050508 url('bg_fallback.png') no-repeat center center !important;
        background-size: cover !important;
    }
    .hero-video-bg-container iframe {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100vw !important;
        height: 177.77vw !important; /* 9:16 Aspect Ratio */
        min-height: 100vh !important;
        min-width: 56.25vh !important; /* 9:16 Aspect Ratio */
        transform: translate(-50%, -50%) scale(1.35) !important;
    pointer-events: none !important;
    }
}





