@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=JetBrains+Mono:wght@400;500;600&display=swap');

/* ============================================================
   LANDING.CSS — Stugware Landing Page Only
   Premium dark gaming aesthetic. Does NOT affect admin pages.
   ============================================================ */

/* ── RESET & BASE ─────────────────────────────────────────── */
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    background-color: #0a0a0a !important;
}
html::-webkit-scrollbar { display: none; }

body.landing {
    font-family: 'Outfit', sans-serif;
    background-color: #0a0a0a;
    color: #e4e4e7;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
select { width: 100%; }

/* ── CSS VARIABLES ────────────────────────────────────────── */
body.landing {
    --bg-base: #0a0a0a;
    --bg-elevated: #111113;
    --bg-card: #16161a;
    --bg-card-hover: #1c1c21;
    --border-subtle: rgba(255,255,255,0.06);
    --border-hover: rgba(30,140,91,0.4);
    --green-primary: #1e8c5b;
    --green-light: #2dd881;
    --green-glow: rgba(45,216,129,0.15);
    --green-glow-strong: rgba(45,216,129,0.3);
    --green-gradient: linear-gradient(135deg, #1e8c5b, #2dd881);
    --text-primary: #f4f4f5;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-pill: 100px;
    --shadow-card: 0 1px 2px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 30px rgba(30,140,91,0.15);
    --transition-fast: 0.15s cubic-bezier(0.4,0,0.2,1);
    --transition-base: 0.25s cubic-bezier(0.4,0,0.2,1);
    --transition-slow: 0.4s cubic-bezier(0.4,0,0.2,1);
}

/* ── CONTAINER ────────────────────────────────────────────── */
body.landing section,
body.landing header {
    padding: 4.5rem 0;
}

body.landing .container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ── NAVIGATION ───────────────────────────────────────────── */
body.landing nav {
    margin: 0 auto;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--border-subtle);
    transition: background var(--transition-base);
}

body.landing nav .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

body.landing .nav-logo img {
    height: 44px;
    transition: transform var(--transition-base);
}
body.landing .nav-logo img:hover {
    transform: scale(1.05);
}

body.landing .nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

body.landing .link a,
body.landing .link > a.dropdown-toggle {
    position: relative;
    padding: 0.5rem 1rem;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    transition: color var(--transition-fast), background var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

body.landing .link a:hover,
body.landing .link > a.dropdown-toggle:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.05);
}

/* Remove the old underline effect */
body.landing .link a::after { display: none; }

/* ── NAV DROPDOWN ─────────────────────────────────────────── */
body.landing .dropdown {
    position: relative;
}

/* Invisible bridge between trigger and menu so mouse can travel down */
body.landing .dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 16px;
    background: transparent;
    display: none;
}
body.landing .dropdown:hover::after,
body.landing .dropdown.dropdown-open::after {
    display: block;
}

body.landing .dropdown .dropdown-menu {
    display: block;
    position: absolute;
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    min-width: 200px;
    background: rgba(22,22,26,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 0.5rem;
    box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.03);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), transform var(--transition-base), visibility var(--transition-base);
    z-index: 100;
}

/* Show on hover OR when .dropdown-open class is toggled via JS */
body.landing .dropdown:hover .dropdown-menu,
body.landing .dropdown.dropdown-open .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

body.landing .dropdown-menu li {
    list-style: none;
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

body.landing .dropdown-menu li:not(:last-child) {
    border-bottom: none !important;
}

body.landing .dropdown-menu li a {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.75rem;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

body.landing .dropdown-menu li a:hover {
    color: var(--green-light);
    background: var(--green-glow);
}

/* ── NAV BUTTONS ──────────────────────────────────────────── */
body.landing .nav-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

body.landing .mobile-menu-btn {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-primary);
}

/* ── BUTTONS (global) ─────────────────────────────────────── */
body.landing .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.4;
}

body.landing .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}
body.landing .btn:hover::before { opacity: 1; }

body.landing .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
body.landing .btn:active {
    transform: translateY(0);
}

/* Primary */
body.landing .btn-primary {
    background: var(--green-gradient);
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(30,140,91,0.3);
}
body.landing .btn-primary:hover,
body.landing a.btn-primary:hover {
    box-shadow: 0 4px 24px rgba(30,140,91,0.4);
    color: #fff !important;
    background: var(--green-gradient);
}

/* Outline */
body.landing .btn-outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: var(--text-primary);
}
body.landing .btn-outline:hover {
    border-color: rgba(255,255,255,0.3);
    background: rgba(255,255,255,0.05);
}

/* Discord */
body.landing .discord-btn {
    background: #5865F2 !important;
    border: none !important;
    color: #fff !important;
    box-shadow: 0 2px 8px rgba(88,101,242,0.3);
}
body.landing .discord-btn:hover {
    background: #4752c4 !important;
    box-shadow: 0 4px 24px rgba(88,101,242,0.4);
}
body.landing .discord-btn i { font-size: 1.1rem; }

/* CTA large */
body.landing .btn-cta {
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    border-radius: var(--radius-pill);
    background: var(--green-gradient);
    color: #fff;
    box-shadow: 0 4px 24px rgba(30,140,91,0.35);
}
body.landing .btn-cta:hover {
    box-shadow: 0 8px 40px rgba(30,140,91,0.45);
}

body.landing .btn-sm {
    padding: 0.4rem 0.875rem;
    font-size: 0.8rem;
}

body.landing .w-100 { width: 100%; }

/* ── BADGE ────────────────────────────────────────────────── */
body.landing .badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1rem;
    background: var(--green-glow);
    color: var(--green-light);
    border-radius: var(--radius-pill);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    border: 1px solid rgba(45,216,129,0.15);
    margin-bottom: 1.25rem;
}

/* ── BLUR ORB ─────────────────────────────────────────────── */
body.landing .blur {
    position: absolute;
    box-shadow: 0 0 800px 40px rgba(30,140,91,0.12);
    z-index: -100;
    opacity: 0.5;
    pointer-events: none;
}

/* ── SECTION HEADERS ──────────────────────────────────────── */
body.landing section .header {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    line-height: 1.2;
}

body.landing .sub-header {
    max-width: 520px;
    margin: 0 auto 2.5rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
:root { --hero-offset: 72px; }

body.landing section.hero.hero--fullbg {
    position: relative !important;
    height: calc(100vh - var(--hero-offset)) !important;
    max-height: calc(100vh - var(--hero-offset)) !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* Background layers */
body.landing .hero-bg-layer {
    position: absolute; inset: 0;
    z-index: 0; overflow: hidden;
    background-color: #050505;
}

body.landing .hero-bg-overlay {
    position: absolute; inset: 0; z-index: 2;
    background: linear-gradient(135deg,
        rgba(0,0,0,0.88) 0%,
        rgba(0,0,0,0.65) 40%,
        rgba(0,0,0,0.45) 100%
    );
    pointer-events: none;
}

body.landing .hero-bg-media {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 1; object-fit: cover;
    object-position: center;
    transition: opacity 0.6s ease;
    opacity: 0; pointer-events: none;
}
body.landing .hero-bg-media.hero-bg-active { opacity: 1; }
body.landing .hero-bg-media.hero-bg-fadeout { opacity: 0; transition: opacity 0.6s ease; }

body.landing .hero-bg-youtube {
    top: 50%; left: 50%;
    width: 177.78vh; height: 56.25vw;
    min-width: 100%; min-height: 100%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Hero content */
body.landing .hero-content-wrap {
    position: relative; z-index: 3;
    padding: 2rem 0;
}

body.landing section.hero.hero--fullbg .content {
    position: relative; z-index: 3;
}

body.landing section.hero .content h1 {
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: #fff;
}

body.landing section.hero .content h1 span {
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.landing section.hero .content p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 2.5rem;
    max-width: 440px;
    line-height: 1.7;
}

body.landing .hero-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Bottom fade */
body.landing section.hero.hero--fullbg::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--bg-base));
    z-index: 2;
    pointer-events: none;
}

/* ── HERO SLIDER ──────────────────────────────────────────── */
body.landing .hero-slider {
    width: 100%;
    height: 400px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--border-subtle);
}

body.landing .slide-content {
    position: relative;
    width: 100%; height: 100%;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

body.landing .slide-content img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}

/* Ken Burns on active slide */
body.landing .swiper-slide-active .slide-content img {
    transform: scale(1.08);
}

body.landing .slide-info {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    height: 55%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

body.landing .slide-info .slide-text h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
    color: #fff;
}

body.landing .slide-info .slide-text p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
}

/* ── SWIPER PAGINATION ────────────────────────────────────── */
body.landing .swiper-pagination-bullet {
    background: rgba(255,255,255,0.3);
    opacity: 1;
    width: 8px; height: 8px;
    transition: all var(--transition-base);
}
body.landing .swiper-pagination-bullet-active {
    background: var(--green-light);
    width: 24px;
    border-radius: 4px;
}

/* ============================================================
   STATS SECTION
   ============================================================ */
body.landing .stats-section {
    background: var(--bg-elevated);
    padding: 4.5rem 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
}

body.landing .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

body.landing .stat-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}
body.landing .stat-item:hover {
    background: rgba(255,255,255,0.03);
}

body.landing .stat-icon {
    font-size: 2rem;
    color: var(--green-light);
    margin-bottom: 0.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; height: 56px;
    background: var(--green-glow);
    border-radius: var(--radius-md);
    border: 1px solid rgba(45,216,129,0.1);
    transition: all var(--transition-base);
}
body.landing .stat-item:hover .stat-icon {
    box-shadow: 0 0 24px rgba(45,216,129,0.2);
    border-color: rgba(45,216,129,0.25);
}

body.landing .stat-number {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.25rem;
    background: var(--green-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

body.landing .stat-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* ============================================================
   PRODUCTS SECTION — "OUR PREMIUM PRODUCTS"
   ============================================================ */
body.landing .pricing {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.75rem;
}

body.landing .pricing .card,
body.landing .pricing .products-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-slow);
    position: relative;
}

body.landing .pricing .card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(160deg, rgba(45,216,129,0), rgba(45,216,129,0));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: background var(--transition-slow);
}

body.landing .pricing .card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow), var(--shadow-card);
    border-color: rgba(45,216,129,0.15);
}
body.landing .pricing .card:hover::before {
    background: linear-gradient(160deg, rgba(45,216,129,0.3), rgba(45,216,129,0.05));
}

body.landing .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: #0e0e10;
}

body.landing .product-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
body.landing .pricing .card:hover .product-image img {
    transform: scale(1.06);
}

body.landing .product-badge {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: rgba(239,68,68,0.9);
    color: #fff;
    border-radius: var(--radius-pill);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

body.landing .pricing .card .content {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

body.landing .pricing .card .product-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

body.landing .pricing .card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

/* Status badge */
body.landing .product-status .badge {
    font-size: 0.78rem;
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-pill);
    font-weight: 600;
    border: none;
    margin-bottom: 0;
}

body.landing .pricing .card .btn-primary {
    margin-top: auto;
    font-size: 0.95rem;
    padding: 0.7rem 1.25rem;
}

/* ============================================================
   FEATURES — "WHY CHOOSE STUGWARE"
   ============================================================ */
body.landing .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 0;
}

body.landing .features .card {
    background: var(--bg-card);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

body.landing .features .card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-glow);
}

body.landing .features .card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px; height: 52px;
    font-size: 1.5rem;
    border-radius: var(--radius-md);
    margin-bottom: 1.25rem;
    background: var(--green-glow);
    color: var(--green-light);
    border: 1px solid rgba(45,216,129,0.1);
    transition: all var(--transition-base);
}

body.landing .features .card:hover span {
    background: var(--green-glow-strong);
    border-color: rgba(45,216,129,0.25);
    box-shadow: 0 0 20px rgba(45,216,129,0.2);
}

body.landing .features .card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

body.landing .features .card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
    line-height: 1.6;
}

body.landing .features .card a {
    color: var(--green-light);
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: all var(--transition-fast);
}
body.landing .features .card a:hover {
    gap: 0.6rem;
}
body.landing .features .card a i {
    transition: transform var(--transition-fast);
}
body.landing .features .card:hover a i {
    transform: translateX(3px);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
body.landing .steps-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-top: 3rem;
}

body.landing .step {
    text-align: center;
    position: relative;
    flex: 0 0 200px;
    padding: 0 0.5rem;
}

body.landing .step-number {
    position: absolute;
    top: -10px; right: calc(50% - 42px);
    width: 28px; height: 28px;
    background: var(--green-gradient);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.8rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(30,140,91,0.3);
}

body.landing .step-icon {
    width: 72px; height: 72px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--green-light);
    margin: 0 auto 1.25rem;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}
body.landing .step:hover .step-icon {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
    background: var(--bg-card-hover);
}

body.landing .step h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

body.landing .step p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.5;
}

body.landing .step-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(to right, var(--green-primary), var(--green-light));
    opacity: 0.3;
    margin: 0;
    position: relative;
    top: 36px;
    min-width: 40px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
body.landing .testimonial-slider {
    padding-bottom: 0;
    margin-bottom: 2rem;
    height: auto !important;
    overflow: visible !important;
}

body.landing .testimonial-slider .swiper-wrapper {
    height: auto !important;
}

body.landing .swiper-slide {
    height: auto !important;
}

body.landing .testimonial-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-subtle);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all var(--transition-base);
    position: relative;
}

/* Decorative quote */
body.landing .testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem; right: 1.5rem;
    font-size: 4rem;
    font-weight: 900;
    color: rgba(45,216,129,0.08);
    line-height: 1;
    pointer-events: none;
    font-family: Georgia, serif;
}

body.landing .testimonial-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-glow);
}

body.landing .testimonial-rating {
    color: #f59e0b;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    gap: 0.15rem;
}

body.landing .testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.9rem;
    flex-grow: 1;
}

body.landing .testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-subtle);
}

body.landing .testimonial-author i {
    width: 42px; height: 42px;
    min-width: 42px;
    font-size: 18px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--green-glow);
    color: var(--green-light);
    border: 1px solid rgba(45,216,129,0.15);
    border-radius: 50%;
}

body.landing .testimonial-author h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.1rem;
}

body.landing .testimonial-author p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

body.landing .testimonial-slider .swiper-pagination {
    position: relative !important;
    bottom: 0 !important;
    margin-top: 1.5rem;
}

/* ============================================================
   FAQ
   ============================================================ */
body.landing .faq-container {
    max-width: 720px;
    margin: 0 auto;
}

body.landing .faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 0.75rem;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    transition: all var(--transition-base);
}
body.landing .faq-item:hover {
    border-color: rgba(255,255,255,0.1);
}
body.landing .faq-item.active {
    border-color: var(--border-hover);
    box-shadow: 0 0 16px rgba(30,140,91,0.08);
}

body.landing .faq-question {
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}
body.landing .faq-question:hover {
    background: rgba(255,255,255,0.02);
}

body.landing .faq-question h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

body.landing .faq-question i {
    font-size: 1.25rem;
    color: var(--green-light);
    transition: transform var(--transition-base);
    flex-shrink: 0;
}
body.landing .faq-item.active .faq-question i {
    transform: rotate(45deg);
}

body.landing .faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

body.landing .faq-answer p {
    padding-bottom: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.9rem;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
body.landing .cta-section {
    background: var(--bg-elevated);
    padding: 4rem 0;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
    position: relative;
    overflow: hidden;
}

/* Subtle gradient orb behind CTA */
body.landing .cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(30,140,91,0.08) 0%, transparent 70%);
    pointer-events: none;
}

body.landing .cta-content {
    position: relative; z-index: 1;
}

body.landing .cta-content h2 {
    font-size: 1.85rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

body.landing .cta-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.75rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* ============================================================
   FOOTER
   ============================================================ */
body.landing footer {
    background: var(--bg-base);
    border-top: 1px solid var(--border-subtle);
}

body.landing footer .footer-wrapper {
    position: relative;
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    padding: 4rem 0 3rem;
}

body.landing footer .footer-wrapper .blur { opacity: 0.3; }

body.landing footer .footer-wrapper .column {
    position: relative; z-index: 1;
}

body.landing footer .footer-wrapper .column .logo {
    max-width: 90px;
    margin-bottom: 1.25rem;
}

body.landing footer .footer-wrapper .column p {
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    line-height: 1.6;
    font-size: 0.9rem;
}

body.landing footer .footer-wrapper .column .contact-email {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--green-light);
    font-size: 0.9rem;
    font-weight: 500;
}

body.landing footer .footer-wrapper .column .socials {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

body.landing footer .footer-wrapper .column .socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    border-radius: 50%;
    font-size: 1.1rem;
    transition: all var(--transition-base);
    border: 1px solid var(--border-subtle);
}
body.landing footer .footer-wrapper .column .socials a:hover {
    background: var(--green-glow);
    color: var(--green-light);
    border-color: rgba(45,216,129,0.2);
    transform: translateY(-3px);
}

body.landing footer .footer-wrapper .column h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

body.landing footer .footer-wrapper .column > a {
    display: block;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    transition: color var(--transition-fast);
}
body.landing footer .footer-wrapper .column > a:hover {
    color: var(--green-light);
}

body.landing .copyright {
    max-width: 1240px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-align: center;
    border-top: 1px solid var(--border-subtle);
}

/* ============================================================
   SCROLL PROGRESS RING
   ============================================================ */
body.landing .scroll-progress {
    position: fixed;
    bottom: 2rem; right: 2rem;
    z-index: 999;
    width: 44px; height: 44px;
    cursor: pointer;
    transition: transform var(--transition-fast), opacity var(--transition-base);
}
body.landing .scroll-progress:hover { transform: scale(1.12); }
body.landing .scroll-progress svg { width: 44px; height: 44px; }

body.landing .scroll-progress-track {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 2.5;
}
body.landing .scroll-progress-ring {
    fill: none;
    stroke: var(--green-primary);
    stroke-width: 2.5;
    stroke-linecap: round;
    transform: rotate(-90deg);
    transform-origin: center;
    transition: stroke-dashoffset 0.15s ease;
}
body.landing .scroll-progress-arrow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 18px; height: 18px;
    color: #fff;
    transition: transform var(--transition-base);
}
body.landing .scroll-progress-arrow svg { width: 18px; height: 18px; }
body.landing .scroll-progress-arrow.flipped {
    transform: translate(-50%, -50%) rotate(180deg);
}

/* ============================================================
   ENTRANCE ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

body.landing section.hero .badge,
body.landing section.hero .content h1,
body.landing section.hero .content p,
body.landing section.hero .hero-buttons {
    animation: fadeUp 0.7s ease forwards;
}
body.landing section.hero .badge       { animation-delay: 0.1s; opacity: 0; }
body.landing section.hero .content h1  { animation-delay: 0.2s; opacity: 0; }
body.landing section.hero .content p   { animation-delay: 0.35s; opacity: 0; }
body.landing section.hero .hero-buttons { animation-delay: 0.5s; opacity: 0; }
body.landing section.hero .hero-slider { animation: fadeUp 0.8s ease 0.3s forwards; opacity: 0; }

/* ============================================================
   HIDE BROWSER EXTENSION OVERLAYS
   ============================================================ */
body.landing .custom-button,
body.landing #skip-button,
body.landing #video-detach-button,
body.landing [class*="vsc-"],
body.landing .hero-bg-layer .custom-button,
body.landing .hero-bg-layer [class*="speed-control"],
body.landing .hero-bg-layer [id="skip-button"],
body.landing .hero-bg-layer [id="video-detach-button"] {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    width: 0 !important; height: 0 !important;
    position: absolute !important;
    left: -9999px !important; top: -9999px !important;
}

body.landing .hero-bg-layer video { pointer-events: none !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    body.landing .features,
    body.landing .pricing { grid-template-columns: repeat(3, 1fr); }
    body.landing .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}

@media (max-width: 992px) {
    body.landing header { grid-template-columns: 1fr; }

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

    body.landing footer .footer-wrapper { grid-template-columns: 1fr 1fr; }

    body.landing .steps-container {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    body.landing .step-connector {
        width: 2px; height: 32px;
        top: 0; min-width: 0;
    }
}

@media (max-width: 768px) {
    body.landing section,
    body.landing header { padding: 3.5rem 0; }

    body.landing section.hero { padding: 0 !important; }

    body.landing .nav-links {
        position: fixed;
        top: 72px; left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(20px);
        padding: 1.5rem 2rem;
        gap: 0.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
        border-bottom: 1px solid var(--border-subtle);
    }
    body.landing .nav-links.active { transform: translateY(0); }
    body.landing .mobile-menu-btn { display: block; }

    body.landing .features,
    body.landing .pricing { grid-template-columns: 1fr; }

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

    body.landing footer .footer-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    body.landing footer .footer-wrapper .column .logo { margin: 0 auto 1.25rem; }
    body.landing footer .footer-wrapper .column .socials { justify-content: center; }
    body.landing footer .footer-wrapper .column .contact-email { justify-content: center; }

    body.landing .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    body.landing section.hero.hero--fullbg {
        height: auto !important;
        max-height: none !important;
        min-height: calc(100dvh - var(--hero-offset)) !important;
    }
    body.landing .hero-content-wrap { padding: 2rem 0 3rem; }

    body.landing .hero-bg-overlay {
        background: linear-gradient(180deg,
            rgba(0,0,0,0.92) 0%,
            rgba(0,0,0,0.75) 50%,
            rgba(0,0,0,0.88) 100%
        );
    }
    body.landing .hero-bg-youtube {
        width: 300vh; height: 300vw;
        min-width: 100%; min-height: 100%;
    }

    body.landing section.hero { text-align: center; }
    body.landing section.hero .content p { margin-left: auto; margin-right: auto; }

    body.landing .slide-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
        justify-content: flex-end;
        gap: 1.5rem;
        padding-bottom: 2.5rem;
        height: 100%;
        background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.4));
    }

    body.landing .step-connector { display: none; }
    body.landing .steps-container { align-items: center; }

    body.landing .dropdown-menu {
        left: 0 !important;
        transform: none !important;
        position: relative !important;
        top: 0 !important;
        width: 100%;
    }
    body.landing .dropdown:hover .dropdown-menu {
        transform: none !important;
    }

    /* Mobile product images */
    body.landing .product-image {
        height: auto;
        aspect-ratio: 16 / 9;
    }
    body.landing .product-image img {
        object-fit: contain;
        object-position: center;
    }
    body.landing .pricing .card:hover .product-image img {
        transform: none;
    }

    body.landing .scroll-progress {
        bottom: 1.25rem; right: 1.25rem;
        width: 38px; height: 38px;
    }
    body.landing .scroll-progress svg { width: 38px; height: 38px; }
    body.landing .scroll-progress-arrow { width: 15px; height: 15px; }
    body.landing .scroll-progress-arrow svg { width: 15px; height: 15px; }
}

@media (max-width: 576px) {
    body.landing section.hero .content h1 { font-size: 2rem; }
    body.landing section .header { font-size: 1.75rem; }
    body.landing .stats-grid { grid-template-columns: 1fr 1fr; }
    body.landing .cta-content h2 { font-size: 1.75rem; }
}

/* ── m-show / m-hide ──────────────────────────────────────── */
@media (min-width: 769px) {
    body.landing .m-show { display: none !important; }
    body.landing .m-hide { display: inline-flex !important; }
}
@media (max-width: 768px) {
    body.landing .m-show { display: flex !important; }
    body.landing .m-hide { display: none !important; }
}

/* ── BOOTSTRAP OVERRIDE for badges on landing ─────────────── */
body.landing .badge.bg-success {
    background-color: rgba(53,151,75,0.15) !important;
    color: #4ade80 !important;
}
body.landing .badge.bg-danger {
    background-color: rgba(193,55,68,0.15) !important;
    color: #f87171 !important;
}
body.landing .badge.bg-warning {
    background-color: rgba(195,177,44,0.15) !important;
    color: #fbbf24 !important;
}

body.landing .badge.bg-success::before,
body.landing .badge.bg-danger::before,
body.landing .badge.bg-warning::before {
    content: "";
    display: inline-block;
    width: 6px; height: 6px;
    border-radius: 50%;
    margin-right: 0.3rem;
    animation: pulse 1.5s infinite ease-in-out;
}
body.landing .badge.bg-success::before { background-color: #4ade80; }
body.landing .badge.bg-danger::before { background-color: #f87171; }
body.landing .badge.bg-warning::before { background-color: #fbbf24; }

@keyframes pulse {
    0%   { opacity: 0.8; transform: scale(1); }
    50%  { opacity: 0.25; transform: scale(0.85); }
    100% { opacity: 0.8; transform: scale(1); }
}
/* ============================================================
   LANDING-FIXES — Append to bottom of landing.css
   Stronger overrides to beat Bootstrap specificity
   ============================================================ */

/* ── SECTION SPACING — tighter gaps between sections ──────── */
body.landing section.container,
body.landing section.stats-section,
body.landing section.cta-section,
body.landing #pricing,
body.landing #features,
body.landing #how-it-works,
body.landing #testimonials,
body.landing #faq {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

/* ── SECTION HEADERS — override bootstrap h2 ─────────────── */
body.landing section h2.header,
body.landing section .header {
    text-align: center !important;
    font-size: 1.85rem !important;
    font-weight: 700 !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 0.4rem !important;
    color: var(--text-primary) !important;
    line-height: 1.2 !important;
}

body.landing p.sub-header,
body.landing .sub-header {
    max-width: 520px !important;
    margin: 0 auto 2rem !important;
    text-align: center !important;
    color: var(--text-secondary) !important;
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
}

/* ── CTA — smaller, thinner ──────────────────────────────── */
body.landing .cta-section {
    padding: 3.5rem 0 !important;
}

body.landing .cta-content h2 {
    font-size: 1.65rem !important;
    font-weight: 600 !important;
    letter-spacing: -0.01em !important;
    margin-bottom: 0.5rem !important;
}

body.landing .cta-content p {
    font-size: 0.9rem !important;
    font-weight: 400 !important;
    margin-bottom: 1.5rem !important;
    max-width: 460px !important;
    color: var(--text-secondary) !important;
}

/* ── PRODUCT CARDS — slightly bigger ─────────────────────── */
body.landing .pricing {
    gap: 1.75rem !important;
}

body.landing .product-image {
    height: 260px !important;
}

body.landing .pricing .card .content {
    padding: 1.35rem !important;
}

/* ── STATUS BADGE — bigger, more visible ─────────────────── */
body.landing .pricing .product-status .badge,
body.landing .slide-info .product-status .badge {
    font-size: 0.8rem !important;
    padding: 0.35rem 0.85rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
}

/* ── STARTS AT BUTTON — bigger font ──────────────────────── */
body.landing .pricing .card .btn-primary,
body.landing .pricing .card a.btn-primary {
    font-size: 1.05rem !important;
    padding: 0.8rem 1.35rem !important;
    font-weight: 600 !important;
}

/* ── PRODUCT TITLE — slightly bigger ─────────────────────── */
body.landing .pricing .card h4 {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
}


/* ============================================================
   MOBILE OVERHAUL — Complete mobile redesign
   Matching desktop dark premium aesthetic
   ============================================================ */

/* ── MOBILE NAV (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {

    /* Nav bar itself */
    body.landing nav {
        background: rgba(10,10,10,0.85) !important;
        backdrop-filter: blur(24px) saturate(1.5) !important;
        -webkit-backdrop-filter: blur(24px) saturate(1.5) !important;
    }

    body.landing nav .container {
        height: 60px !important;
        padding: 0 1.25rem !important;
    }

    body.landing .nav-logo img {
        height: 36px !important;
    }

    /* Mobile menu panel */
    body.landing .nav-links {
        position: fixed !important;
        top: 60px !important;
        left: 0 !important;
        width: 100% !important;
        flex-direction: column !important;
        background: rgba(10,10,10,0.98) !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
        padding: 1rem 1.25rem 1.5rem !important;
        gap: 0.15rem !important;
        transform: translateY(-150%) !important;
        transition: transform 0.35s cubic-bezier(0.4,0,0.2,1) !important;
        z-index: 999 !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
        box-shadow: 0 16px 48px rgba(0,0,0,0.5) !important;
    }
    body.landing .nav-links.active {
        transform: translateY(0) !important;
    }

    /* Nav link items in mobile */
    body.landing .nav-links .link a,
    body.landing .nav-links .link > a.dropdown-toggle {
        display: flex !important;
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem !important;
        color: var(--text-secondary) !important;
        border-radius: var(--radius-sm) !important;
        transition: all 0.2s ease !important;
    }
    body.landing .nav-links .link a:hover,
    body.landing .nav-links .link > a.dropdown-toggle:hover {
        color: var(--text-primary) !important;
        background: rgba(255,255,255,0.04) !important;
    }

    /* Mobile dropdown */
    body.landing .dropdown .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        width: 100% !important;
        background: rgba(255,255,255,0.03) !important;
        border: none !important;
        border-radius: var(--radius-sm) !important;
        box-shadow: none !important;
        padding: 0.25rem 0 0.25rem 0.75rem !important;
        margin-top: 0.25rem !important;
        backdrop-filter: none !important;
    }
    body.landing .dropdown:hover .dropdown-menu,
    body.landing .dropdown.dropdown-open .dropdown-menu {
        transform: none !important;
    }
    body.landing .dropdown::after {
        display: none !important;
    }

    body.landing .dropdown-menu li a {
        padding: 0.6rem 0.75rem !important;
        font-size: 0.875rem !important;
        color: var(--text-muted) !important;
        border-left: 2px solid rgba(255,255,255,0.06) !important;
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0 !important;
    }
    body.landing .dropdown-menu li a:hover {
        color: var(--green-light) !important;
        border-left-color: var(--green-primary) !important;
        background: var(--green-glow) !important;
    }

    /* Mobile nav buttons */
    body.landing .nav-links .btn.m-show {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 0.25rem !important;
        padding: 0.7rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: var(--radius-sm) !important;
    }

    /* Hamburger icon */
    body.landing .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 40px !important;
        height: 40px !important;
        border-radius: var(--radius-sm) !important;
        color: var(--text-primary) !important;
        font-size: 1.35rem !important;
        transition: background 0.2s ease !important;
    }
    body.landing .mobile-menu-btn:active {
        background: rgba(255,255,255,0.05) !important;
    }
}

/* ── MOBILE HERO (≤768px) ────────────────────────────────── */
@media (max-width: 768px) {

    body.landing section.hero.hero--fullbg {
        height: auto !important;
        max-height: none !important;
        min-height: calc(100dvh - 60px) !important;
    }

    body.landing .hero-content-wrap {
        padding: 1.5rem 0 2rem !important;
    }

    body.landing section.hero {
        text-align: center !important;
        padding: 0 !important;
    }

    body.landing section.hero .content {
        padding: 0 0.5rem !important;
    }

    body.landing section.hero .badge {
        margin: 0 auto 1rem !important;
        font-size: 0.75rem !important;
        padding: 0.35rem 0.85rem !important;
    }

    body.landing section.hero .content h1 {
        font-size: 1.85rem !important;
        margin-bottom: 0.85rem !important;
        line-height: 1.2 !important;
    }

    body.landing section.hero .content p {
        font-size: 0.9rem !important;
        margin: 0 auto 1.75rem !important;
        max-width: 100% !important;
        line-height: 1.6 !important;
        color: rgba(255,255,255,0.55) !important;
    }

    body.landing .hero-buttons {
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0.6rem !important;
        margin-bottom: 2rem !important;
        padding: 0 0.5rem !important;
    }

    body.landing .hero-buttons .btn {
        padding: 0.7rem 1.25rem !important;
        font-size: 0.9rem !important;
        justify-content: center !important;
    }

    /* Hero slider on mobile */
    body.landing .hero-slider {
        height: 280px !important;
        border-radius: var(--radius-lg) !important;
        margin: 0 0.25rem !important;
    }

    body.landing .slide-content {
        border-radius: var(--radius-lg) !important;
    }

    body.landing .slide-info {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        justify-content: flex-end !important;
        gap: 0.75rem !important;
        padding: 1.25rem !important;
        padding-bottom: 1.5rem !important;
        height: 60% !important;
        background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, transparent 100%) !important;
    }

    body.landing .slide-info .slide-text h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.25rem !important;
    }

    body.landing .slide-info .btn {
        font-size: 0.78rem !important;
        padding: 0.45rem 0.85rem !important;
    }

    /* Hero bg overlay — darker on mobile */
    body.landing .hero-bg-overlay {
        background: linear-gradient(180deg,
            rgba(0,0,0,0.93) 0%,
            rgba(0,0,0,0.78) 50%,
            rgba(0,0,0,0.9) 100%
        ) !important;
    }
}

/* ── MOBILE SECTIONS (≤768px) ────────────────────────────── */
@media (max-width: 768px) {

    /* Section padding */
    body.landing section,
    body.landing header {
        padding: 2.5rem 0 !important;
    }

    body.landing section.container,
    body.landing section.stats-section,
    body.landing section.cta-section,
    body.landing #pricing,
    body.landing #features,
    body.landing #how-it-works,
    body.landing #testimonials,
    body.landing #faq {
        padding-top: 2.5rem !important;
        padding-bottom: 2.5rem !important;
    }

    body.landing .container {
        padding: 0 1.25rem !important;
    }

    /* Section headers */
    body.landing section h2.header,
    body.landing section .header {
        font-size: 1.45rem !important;
        font-weight: 700 !important;
        margin-bottom: 0.35rem !important;
    }

    body.landing p.sub-header,
    body.landing .sub-header {
        font-size: 0.85rem !important;
        margin: 0 auto 1.75rem !important;
        padding: 0 0.5rem !important;
    }
}

/* ── MOBILE STATS (≤768px) ───────────────────────────────── */
@media (max-width: 768px) {

    body.landing .stats-section {
        padding: 2.5rem 0 !important;
    }

    body.landing .stats-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1rem !important;
    }

    body.landing .stat-item {
        padding: 1rem 0.75rem !important;
        background: rgba(255,255,255,0.02) !important;
        border-radius: var(--radius-md) !important;
        border: 1px solid var(--border-subtle) !important;
    }

    body.landing .stat-icon {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }

    body.landing .stat-number {
        font-size: 1.65rem !important;
    }

    body.landing .stat-text {
        font-size: 0.8rem !important;
    }
}

/* ── MOBILE PRODUCT CARDS (≤768px) ───────────────────────── */
@media (max-width: 768px) {

    body.landing .pricing {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        padding: 0 !important;
    }

    /* Product card */
    body.landing .pricing .card,
    body.landing .pricing .products-card {
        background: var(--bg-card) !important;
        border: 1px solid var(--border-subtle) !important;
        border-radius: var(--radius-lg) !important;
    }

    /* Product image — show full image, no crop */
    body.landing .product-image {
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        background: #0c0c0e !important;
        overflow: hidden !important;
    }

    body.landing .product-image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center top !important;
    }

    /* Disable hover zoom on touch */
    body.landing .pricing .card:hover .product-image img {
        transform: none !important;
    }
    body.landing .pricing .card:hover {
        transform: none !important;
    }

    /* Card content */
    body.landing .pricing .card .content {
        padding: 1.1rem !important;
    }

    body.landing .pricing .card .product-header-row {
        margin-bottom: 0.75rem !important;
    }

    body.landing .pricing .card h4 {
        font-size: 1.05rem !important;
    }

    /* Status badge */
    body.landing .pricing .product-status .badge {
        font-size: 0.72rem !important;
        padding: 0.3rem 0.7rem !important;
    }

    /* Starts at button */
    body.landing .pricing .card .btn-primary,
    body.landing .pricing .card a.btn-primary {
        font-size: 1rem !important;
        padding: 0.8rem 1.1rem !important;
        border-radius: var(--radius-sm) !important;
    }
}

/* ── MOBILE FEATURES — "WHY CHOOSE" (≤768px) ────────────── */
@media (max-width: 768px) {

    body.landing .features {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    body.landing .features .card {
        padding: 1.5rem 1.25rem !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        align-items: flex-start !important;
        gap: 0 !important;
    }

    body.landing .features .card span {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.25rem !important;
        margin-bottom: 0 !important;
        margin-right: 1rem !important;
        flex-shrink: 0 !important;
    }

    body.landing .features .card h4 {
        font-size: 1rem !important;
        margin-bottom: 0.25rem !important;
        flex: 1 !important;
        padding-top: 0.1rem !important;
    }

    body.landing .features .card p {
        width: 100% !important;
        font-size: 0.85rem !important;
        margin-top: 0.75rem !important;
        margin-bottom: 0.75rem !important;
    }

    body.landing .features .card a {
        width: 100% !important;
        font-size: 0.82rem !important;
    }

    /* No hover lift on mobile */
    body.landing .features .card:hover {
        transform: none !important;
    }
}

/* ── MOBILE HOW IT WORKS (≤768px) ────────────────────────── */
@media (max-width: 768px) {

    body.landing .steps-container {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.5rem !important;
        margin-top: 1.5rem !important;
    }

    body.landing .step {
        flex: none !important;
        width: 100% !important;
        max-width: 280px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    body.landing .step-connector {
        display: none !important;
    }

    body.landing .step-icon {
        width: 56px !important;
        height: 56px !important;
        font-size: 1.4rem !important;
        margin-bottom: 0.85rem !important;
    }

    body.landing .step-number {
        width: 24px !important;
        height: 24px !important;
        font-size: 0.7rem !important;
        top: -8px !important;
        right: calc(50% - 35px) !important;
    }

    body.landing .step h4 {
        font-size: 0.95rem !important;
        margin-bottom: 0.3rem !important;
    }

    body.landing .step p {
        font-size: 0.82rem !important;
        max-width: 220px !important;
    }
}

/* ── MOBILE TESTIMONIALS (≤768px) ────────────────────────── */
@media (max-width: 768px) {

    body.landing .testimonial-card {
        padding: 1.5rem 1.25rem !important;
    }

    body.landing .testimonial-card::before {
        font-size: 3rem !important;
        top: 0.75rem !important;
        right: 1rem !important;
    }

    body.landing .testimonial-rating {
        font-size: 0.9rem !important;
        margin-bottom: 0.75rem !important;
    }

    body.landing .testimonial-text {
        font-size: 0.85rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1rem !important;
    }

    body.landing .testimonial-author {
        gap: 0.6rem !important;
        padding-top: 0.85rem !important;
    }

    body.landing .testimonial-author i {
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        font-size: 15px !important;
    }

    body.landing .testimonial-author h4 {
        font-size: 0.85rem !important;
    }

    body.landing .testimonial-author p {
        font-size: 0.75rem !important;
    }
}

/* ── MOBILE FAQ (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {

    body.landing .faq-container {
        max-width: 100% !important;
    }

    body.landing .faq-item {
        margin-bottom: 0.6rem !important;
    }

    body.landing .faq-question {
        padding: 1rem 1.15rem !important;
    }

    body.landing .faq-question h4 {
        font-size: 0.88rem !important;
        padding-right: 0.5rem !important;
    }

    body.landing .faq-question i {
        font-size: 1.1rem !important;
    }

    body.landing .faq-answer {
        padding: 0 1.15rem !important;
    }

    body.landing .faq-answer p {
        font-size: 0.83rem !important;
        padding-bottom: 1rem !important;
    }
}

/* ── MOBILE CTA (≤768px) ─────────────────────────────────── */
@media (max-width: 768px) {

    body.landing .cta-section {
        padding: 3rem 0 !important;
    }

    body.landing .cta-content h2 {
        font-size: 1.35rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.4rem !important;
        padding: 0 0.5rem !important;
    }

    body.landing .cta-content p {
        font-size: 0.85rem !important;
        margin-bottom: 1.25rem !important;
        padding: 0 0.5rem !important;
    }

    body.landing .btn-cta {
        font-size: 0.9rem !important;
        padding: 0.7rem 1.75rem !important;
    }
}

/* ── MOBILE FOOTER (≤768px) ──────────────────────────────── */
@media (max-width: 768px) {

    body.landing footer .footer-wrapper {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
        padding: 2.5rem 0 2rem !important;
    }

    body.landing footer .footer-wrapper .column .logo {
        margin: 0 auto 1rem !important;
        max-width: 70px !important;
    }

    body.landing footer .footer-wrapper .column p {
        font-size: 0.85rem !important;
    }

    body.landing footer .footer-wrapper .column .socials {
        justify-content: center !important;
    }
    body.landing footer .footer-wrapper .column .contact-email {
        justify-content: center !important;
    }

    body.landing footer .footer-wrapper .column h4 {
        font-size: 0.8rem !important;
        margin-bottom: 0.85rem !important;
    }

    body.landing footer .footer-wrapper .column > a {
        font-size: 0.82rem !important;
        margin-bottom: 0.6rem !important;
    }

    body.landing .copyright {
        font-size: 0.72rem !important;
        padding: 1rem 1.25rem !important;
    }
}

/* ── MOBILE SCROLL PROGRESS (≤768px) ─────────────────────── */
@media (max-width: 768px) {
    body.landing .scroll-progress {
        bottom: 1rem !important;
        right: 1rem !important;
        width: 36px !important;
        height: 36px !important;
    }
    body.landing .scroll-progress svg {
        width: 36px !important;
        height: 36px !important;
    }
    body.landing .scroll-progress-arrow {
        width: 14px !important;
        height: 14px !important;
    }
    body.landing .scroll-progress-arrow svg {
        width: 14px !important;
        height: 14px !important;
    }
}

/* ── SMALL MOBILE (≤420px) ───────────────────────────────── */
@media (max-width: 420px) {

    body.landing section.hero .content h1 {
        font-size: 1.55rem !important;
    }

    body.landing section h2.header,
    body.landing section .header {
        font-size: 1.3rem !important;
    }

    body.landing .stats-grid {
        gap: 0.75rem !important;
    }

    body.landing .stat-number {
        font-size: 1.4rem !important;
    }

    body.landing .stat-text {
        font-size: 0.72rem !important;
    }

    body.landing .hero-slider {
        height: 240px !important;
    }

    body.landing .cta-content h2 {
        font-size: 1.2rem !important;
    }
}

/* ── LANDSCAPE MOBILE FIX ────────────────────────────────── */
@media (max-width: 768px) and (orientation: landscape) {
    body.landing section.hero.hero--fullbg {
        min-height: auto !important;
    }
    body.landing .hero-slider {
        height: 220px !important;
    }
}


/* ============================================================
   MOBILE NAV + DROPDOWN NUCLEAR FIX
   Forces dark theme on all mobile nav elements,
   overrides Bootstrap .dropdown-menu completely
   ============================================================ */
@media (max-width: 768px) {

    /* ── NAV BAR — fully opaque dark ─────────────────────────── */
    body.landing nav {
        background: #0a0a0a !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.06) !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 1000 !important;
    }

    /* ── MOBILE MENU PANEL ─────────────────────────────────── */
    /* position:absolute inside the sticky nav — menu drops right 
       below the nav bar, no matter where the nav is on screen */
    body.landing nav .nav-links,
    body.landing .nav-links {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-height: calc(100vh - 60px) !important;
        overflow-y: auto !important;
        flex-direction: column !important;
        background: #0a0a0a !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0.75rem 1.25rem 1.5rem !important;
        gap: 0.1rem !important;
        transform: translateY(-150%) !important;
        opacity: 0 !important;
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1), opacity 0.3s ease !important;
        z-index: 999 !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        box-shadow: 0 20px 60px rgba(0,0,0,0.8) !important;
    }

    body.landing nav .nav-links.active,
    body.landing .nav-links.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
    }

    /* ── NAV LINKS — dark themed ─────────────────────────────── */
    body.landing .nav-links li.link,
    body.landing .nav-links .link {
        width: 100% !important;
        list-style: none !important;
    }

    body.landing .nav-links .link a,
    body.landing .nav-links .link > a.dropdown-toggle,
    body.landing .nav-links li.link a,
    body.landing .nav-links li.link > a.dropdown-toggle {
        display: flex !important;
        width: 100% !important;
        padding: 0.85rem 1rem !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: #a1a1aa !important;
        background: transparent !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        border: none !important;
    }

    body.landing .nav-links .link a:hover,
    body.landing .nav-links li.link a:hover {
        color: #f4f4f5 !important;
        background: rgba(255,255,255,0.05) !important;
    }

    /* ── DROPDOWN — hidden by default, dark when open ────────── */
    body.landing .dropdown .dropdown-menu,
    body.landing .nav-links .dropdown .dropdown-menu,
    body.landing nav .dropdown-menu,
    body.landing .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        right: auto !important;
        transform: none !important;
        float: none !important;
        display: none !important;
        width: 100% !important;
        min-width: unset !important;
        background: #111113 !important;
        background-color: #111113 !important;
        border: 1px solid rgba(255,255,255,0.06) !important;
        border-radius: 8px !important;
        box-shadow: none !important;
        padding: 0.4rem !important;
        margin-top: 0.25rem !important;
        margin-bottom: 0.25rem !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
        color: #fff !important;
    }

    /* Show dropdown ONLY when .dropdown-open is toggled via JS click */
    body.landing .dropdown.dropdown-open .dropdown-menu,
    body.landing .nav-links .dropdown.dropdown-open .dropdown-menu,
    body.landing nav .dropdown.dropdown-open .dropdown-menu {
        display: block !important;
    }

    /* Disable hover-to-open on mobile (touch devices) */
    body.landing .dropdown:hover .dropdown-menu {
        display: none !important;
    }
    body.landing .dropdown.dropdown-open:hover .dropdown-menu {
        display: block !important;
    }

    /* Override Bootstrap dropdown-toggle arrow */
    body.landing .dropdown-toggle::after {
        display: none !important;
    }

    /* ── DROPDOWN ITEMS — dark themed ────────────────────────── */
    body.landing .dropdown-menu li,
    body.landing nav .dropdown-menu li {
        list-style: none !important;
        border-bottom: none !important;
        padding: 0 !important;
        margin: 0 !important;
        display: block !important;
        width: 100% !important;
    }

    body.landing .dropdown-menu li a,
    body.landing nav .dropdown-menu li a,
    body.landing .dropdown-menu .dropdown-item {
        display: flex !important;
        width: 100% !important;
        padding: 0.65rem 0.85rem !important;
        font-size: 0.875rem !important;
        font-weight: 500 !important;
        color: #71717a !important;
        background: transparent !important;
        background-color: transparent !important;
        border: none !important;
        border-left: 2px solid rgba(255,255,255,0.06) !important;
        border-radius: 0 8px 8px 0 !important;
        text-decoration: none !important;
        white-space: normal !important;
        transition: all 0.15s ease !important;
    }

    body.landing .dropdown-menu li a:hover,
    body.landing nav .dropdown-menu li a:hover,
    body.landing .dropdown-menu .dropdown-item:hover {
        color: #2dd881 !important;
        background: rgba(45,216,129,0.1) !important;
        background-color: rgba(45,216,129,0.1) !important;
        border-left-color: #1e8c5b !important;
    }

    /* ── MOBILE BUTTONS IN NAV ───────────────────────────────── */
    body.landing .nav-links a.btn.m-show,
    body.landing .nav-links .btn.m-show {
        display: flex !important;
        justify-content: center !important;
        width: 100% !important;
        margin-top: 0.35rem !important;
        padding: 0.75rem 1.25rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
    }

    /* Shop Now button */
    body.landing .nav-links a.btn-primary.m-show {
        background: linear-gradient(135deg, #1e8c5b, #2dd881) !important;
        color: #fff !important;
        border: none !important;
    }

    /* Discord button */
    body.landing .nav-links a.discord-btn.m-show {
        background: #5865F2 !important;
        color: #fff !important;
        border: none !important;
    }
}

/* ── ALSO FIX FOR VERY SMALL SCREENS ─────────────────────── */
@media (max-width: 420px) {
    body.landing nav .container {
        height: 56px !important;
        padding: 0 1rem !important;
    }

    body.landing .nav-logo img {
        height: 32px !important;
    }

    body.landing nav .nav-links,
    body.landing .nav-links {
        padding: 0.5rem 1rem 1.25rem !important;
    }

    body.landing .nav-links .link a,
    body.landing .nav-links li.link a {
        padding: 0.75rem 0.85rem !important;
        font-size: 0.9rem !important;
    }

    body.landing .dropdown-menu li a,
    body.landing nav .dropdown-menu li a {
        padding: 0.55rem 0.75rem !important;
        font-size: 0.82rem !important;
    }
}

/* ============================================================
   HERO LAYOUT OVERRIDE — slide box closer to right edge
   Paste at the very bottom of landing.css
   ============================================================ */

body.landing section.hero .row {
    align-items: center;
}

body.landing section.hero .row > .col-md-5 {
    flex: 0 0 34% !important;
    max-width: 34% !important;
}

body.landing section.hero .row > .col-md-7 {
    flex: 0 0 66% !important;
    max-width: 66% !important;
    margin-left: auto !important;
    padding-left: 2rem !important;
    padding-right: 0 !important;
    display: flex !important;
    justify-content: flex-end !important;
}

body.landing .hero-slider {
    height: 420px !important;
    width: 680px !important;
    flex-shrink: 0 !important;
    /* Pull slider past the container's right padding to touch the edge */
    margin-right: -10rem !important;
}

@media (max-width: 768px) {
    body.landing section.hero .row > .col-md-5,
    body.landing section.hero .row > .col-md-7 {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        margin-left: 0 !important;
        padding-left: 0.75rem !important;
        padding-right: 0.75rem !important;
        display: block !important;
        justify-content: unset !important;
    }
    body.landing .hero-slider {
        height: 260px !important;
        width: 100% !important;
        margin-right: 0 !important;
    }
}

/* ============================================================
   TESTIMONIAL OVERFLOW FIX — paste at VERY BOTTOM of landing.css
   Replaces the previous overflow fixes for testimonials.
   Desktop keeps overflow:visible (so 3 cards show properly),
   mobile gets overflow:hidden (stops horizontal page scroll).
   ============================================================ */

/* Reset — undo any previous overflow:hidden we added to the slider */
body.landing .testimonial-slider {
    overflow: visible !important;
}

body.landing .testimonial-slider .swiper-wrapper {
    overflow: visible !important;
}

/* Desktop: testimonials section itself is fine with visible overflow */
body.landing #testimonials {
    overflow: visible !important;
}

/* MOBILE ONLY: clip the swiper so offscreen slides don't expand the page */
@media (max-width: 768px) {
    body.landing #testimonials {
        overflow: hidden !important;
        max-width: 100vw !important;
    }

    body.landing .testimonial-slider {
        overflow: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    body.landing .testimonial-slider .swiper-wrapper {
        overflow: hidden !important;
    }

    body.landing .testimonial-slider .swiper-slide {
        box-sizing: border-box !important;
        max-width: 100vw !important;
    }
}

/* The real fix for mobile horizontal scroll — clamp at html/body level.
   This is the nuclear option that catches ANY element causing overflow,
   not just the swiper. */
html {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

body,
body.landing {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}

/* Mobile hero — pure black background, zero media */
@media (max-width: 768px) {
    body.landing .hero-bg-layer {
        background: #0a0a0a !important;
    }
    body.landing .hero-bg-media,
    body.landing .hero-bg-layer iframe,
    body.landing .hero-bg-layer video,
    body.landing .hero-bg-layer img {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
        width: 0 !important;
        height: 0 !important;
    }
}