/* ============================================
   VisionX IPTV — Full Stylesheet (v2 — Improved)
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Poppins:wght@400;600;700;800&display=swap');

:root {
    --bg-primary: #0A0A0A;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --accent: #E50914;
    --accent-hover: #ff1a26;
    --text-primary: #FFFFFF;
    --text-secondary: #AAAAAA;
    --success: #22C55E;
    --border: #2A2A2A;
    --font-primary: 'Inter', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
    --card-radius: 12px;
    --button-radius: 8px;
    --transition: 0.3s ease;
    --nav-height: 64px;
}

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

html {
    scroll-behavior: smooth;
    /* Offset for fixed navbar so anchor targets aren't hidden behind it */
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ---- Focus styles for keyboard accessibility ---- */
:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
    border-radius: 4px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

.section {
    padding: 80px 0;
    /* Each section needs top margin for anchor links to clear the fixed nav */
    scroll-margin-top: var(--nav-height);
}

.section-header {
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* ---- SCROLL FADE-IN ANIMATION ---- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children inside containers */
.fade-in-stagger > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.fade-in-stagger.visible > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.05s; }
.fade-in-stagger.visible > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.12s; }
.fade-in-stagger.visible > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.19s; }
.fade-in-stagger.visible > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.26s; }
.fade-in-stagger.visible > *:nth-child(5) { opacity: 1; transform: translateY(0); transition-delay: 0.33s; }
.fade-in-stagger.visible > *:nth-child(6) { opacity: 1; transform: translateY(0); transition-delay: 0.40s; }

/* ---- BUTTONS ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    color: #fff;
    padding: 12px 28px;
    border-radius: var(--button-radius);
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: all 0.28s ease;
    white-space: nowrap;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

/* Shimmer wave sweeps bottom-to-top on hover */
.btn::after {
    content: '';
    position: absolute;
    left: -60%;
    bottom: -30%;
    width: 40%;
    height: 200%;
    background: rgba(255, 255, 255, 0.18);
    transform: skewX(-20deg) translateY(100%);
    transition: transform 0.55s ease;
    pointer-events: none;
}

.btn:hover::after {
    transform: skewX(-20deg) translateY(-200%);
}

.btn:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(229, 9, 20, 0.45);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(229, 9, 20, 0.3);
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

/* ============ 1. NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    background: transparent;
    transition: background var(--transition), border-color var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-secondary);
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.logo-accent {
    color: var(--accent);
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.75;
    transition: opacity 0.25s ease, color 0.25s ease;
    position: relative;
    padding-bottom: 4px;
}

/* Underline grows from center-bottom outward */
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-links a:hover {
    opacity: 1;
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-cta {
    padding: 10px 20px;
    font-size: 14px;
}

.lang-toggle {
    display: flex;
    background: var(--bg-card);
    border-radius: 20px;
    padding: 3px;
    border: 1px solid var(--border);
}

.lang-toggle button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 4px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all var(--transition);
}

.lang-toggle button.active {
    background: #fff;
    color: #000;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1100;
}

.mobile-menu-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hamburger → X animation */
.mobile-menu-btn.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-btn.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Nav Drawer ---- */
.mobile-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    z-index: 999;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.mobile-nav.is-open {
    max-height: 400px;
    padding: 16px 0 24px;
}

.mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0 24px;
}

.mobile-nav ul li a {
    display: block;
    padding: 14px 0;
    font-size: 17px;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-nav ul li:last-child a {
    border-bottom: none;
}

.mobile-nav ul li a:hover {
    color: var(--accent);
}

.mobile-nav .mobile-cta {
    padding: 0 24px;
    margin-top: 20px;
}

.mobile-nav .mobile-cta a {
    display: block;
    text-align: center;
    width: 100%;
}

/* ============ 2. HERO ============ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: var(--nav-height);
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 50% 30%, #2a0000 0%, var(--bg-primary) 70%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229, 9, 20, 0.09) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    animation: hero-pulse 6s ease-in-out infinite;
}

@keyframes hero-pulse {
    0%, 100% { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.12); }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-badge {
    display: inline-block;
    background: rgba(229, 9, 20, 0.12);
    border: 1px solid rgba(229, 9, 20, 0.3);
    padding: 8px 20px;
    border-radius: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #ff7070;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
    animation: badge-glow 3s ease-in-out infinite alternate;
}

@keyframes badge-glow {
    from { box-shadow: 0 0 0 rgba(229,9,20,0); }
    to   { box-shadow: 0 0 18px rgba(229,9,20,0.25); }
}

.hero-title {
    font-size: 62px;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #fff 0%, #ccc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Fallback for browsers that don't support gradient text */
    color: #fff;
}

.hero-subtitle {
    font-size: 18px;
    color: #bbb;
    max-width: 640px;
    margin: 0 auto 36px;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-btn {
    box-shadow: 0 0 40px rgba(229, 9, 20, 0.35);
}

.hero-btn:hover {
    box-shadow: 0 6px 40px rgba(229, 9, 20, 0.55);
}

.hero-link {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 600;
}

.hero-link:hover {
    color: #fff;
}

.hero-trust {
    margin-top: 36px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* ============ 3. MARQUEE ============ */
.marquee-section {
    background: var(--bg-secondary);
    padding: 28px 0;
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.marquee {
    display: flex;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-content {
    display: flex;
    gap: 48px;
    animation: marquee-scroll 40s linear infinite;
    flex-shrink: 0;
}

/* Pause marquee on hover for accessibility/readability */
.marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content span {
    font-family: var(--font-secondary);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    opacity: 0.35;
    white-space: nowrap;
    transition: opacity var(--transition);
    user-select: none;
}

.marquee-content span:hover {
    opacity: 0.9;
}

@keyframes marquee-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ 4. STATS BAR ============ */
.stats-bar {
    background: var(--bg-secondary);
    padding: 56px 0;
    border-bottom: 1px solid var(--border);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 16px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-family: var(--font-secondary);
    font-size: 44px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-top: 8px;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: var(--border);
}

/* ============ 5. PRICING ============ */
.pricing-section {
    background: var(--bg-primary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
    /* Extra padding so the scaled popular card + its top badge don't get clipped */
    padding: 20px 4px 12px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 32px 24px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    will-change: transform;
    /* NO overflow:hidden here — it clips the popular badge (top:-14px) and the scaled card border */
}

/* Bottom-up accent bar — uses border-radius so no overflow:hidden needed */
.pricing-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #ff4d55, var(--accent));
    border-radius: 0 0 var(--card-radius) var(--card-radius);
    transform: scaleX(0);
    transform-origin: center bottom;
    transition: transform 0.35s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(229, 9, 20, 0.2);
    border-color: rgba(229, 9, 20, 0.45);
}

.pricing-card.popular {
    border: 2px solid var(--accent);
    transform: scale(1.03);
    z-index: 2;
    box-shadow: 0 8px 40px rgba(229, 9, 20, 0.22);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 28px 64px rgba(229, 9, 20, 0.3);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 0.5px;
    /* Ensure badge always renders above the grid */
    z-index: 3;
    box-shadow: 0 4px 14px rgba(229, 9, 20, 0.4);
}

.plan-name {
    color: var(--accent);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.plan-price {
    font-family: var(--font-secondary);
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 4px;
}

.plan-price .currency {
    font-size: 22px;
    font-weight: 700;
    margin-top: 8px;
}

.plan-price .amount {
    font-size: 52px;
    font-weight: 800;
    line-height: 1;
}

.plan-duration {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 6px;
}

/* Monthly equivalent price shown on multi-month plans */
.plan-monthly {
    font-size: 12px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 8px;
}

.plan-savings {
    min-height: 28px;
    margin-bottom: 20px;
}

.plan-savings span {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
}

.plan-features {
    margin-bottom: 28px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.4;
}

.plan-features .check {
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============ 6. STEPS ============ */
.steps-section {
    background: var(--bg-secondary);
}

.steps-grid {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-card {
    flex: 1;
    max-width: 280px;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--accent);
    color: #fff;
    border-radius: 50%;
    font-weight: 800;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    box-shadow: 0 4px 16px rgba(229, 9, 20, 0.35);
}

.step-icon {
    font-size: 40px;
    margin-bottom: 16px;
    line-height: 1;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

.step-connector {
    display: flex;
    align-items: center;
    padding-top: 20px;
}

.connector-line {
    width: 60px;
    height: 2px;
    background: repeating-linear-gradient(
        to right,
        var(--border) 0, var(--border) 8px,
        transparent 8px, transparent 16px
    );
}

/* ============ 7. FEATURES ============ */
.features-section {
    background: var(--bg-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

/* Glowing bottom-up sweep on hover */
.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(229, 9, 20, 0.07) 0%, transparent 100%);
    transition: height 0.4s ease;
    pointer-events: none;
    border-radius: inherit;
}

.feature-card:hover::after {
    height: 100%;
}

.feature-card:hover {
    border-color: rgba(229, 9, 20, 0.5);
    box-shadow: 0 12px 40px rgba(229, 9, 20, 0.12);
    transform: translateY(-6px);
}

.feature-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent), #ff4d55);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 17px;
    margin-bottom: 8px;
    font-family: var(--font-primary);
    font-weight: 700;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* ============ 8. DEVICES ============ */
.devices-section {
    background: var(--bg-secondary);
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.device-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    padding: 20px 12px;
    text-align: center;
    font-weight: 600;
    font-size: 13px;
    transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: default;
    will-change: transform;
    position: relative;
    overflow: hidden;
}

/* Bottom fill sweeps upward */
.device-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: rgba(229, 9, 20, 0.1);
    transition: height 0.3s ease;
    border-radius: inherit;
}

.device-card:hover::before {
    height: 100%;
}

.device-emoji {
    font-size: 28px;
    line-height: 1;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 1;
}

.device-card:hover .device-emoji {
    transform: translateY(-4px) scale(1.12);
}

.device-card span:not(.device-emoji) {
    position: relative;
    z-index: 1;
}

.device-card:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(229, 9, 20, 0.15);
}

/* ============ 9. SPORTS ============ */
.sports-section {
    background: linear-gradient(135deg, var(--bg-primary) 0%, #1a0000 50%, var(--bg-primary) 100%);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.sports-container {
    display: flex;
    align-items: center;
    gap: 64px;
}

.sports-content {
    flex: 1;
}

.sports-label {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.sports-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    line-height: 1.1;
}

.sports-content p {
    color: var(--text-secondary);
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.league-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.league-logos span {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    cursor: default;
}

.league-logos span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left bottom;
    transition: transform 0.3s ease;
}

.league-logos span:hover::after {
    transform: scaleX(1);
}

.league-logos span:hover {
    border-color: rgba(229, 9, 20, 0.5);
    color: #fff;
    transform: translateY(-2px);
}

.sports-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sports-img {
    width: 100%;
    max-width: 480px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(229, 9, 20, 0.15), 0 0 80px rgba(229, 9, 20, 0.06);
    transition: transform 0.4s ease;
}

.sports-img:hover {
    transform: scale(1.03);
}

/* Fallback if sports image is missing */
.sports-visual-fallback {
    position: relative;
    width: 340px;
    height: 260px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ============ 10. GALLERY ============ */
.gallery-section {
    background: var(--bg-primary);
    overflow: hidden;
}

.gallery-carousel {
    overflow-x: auto;
    padding-bottom: 16px;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) var(--bg-secondary);
    -webkit-overflow-scrolling: touch;
    cursor: grab;
}

.gallery-carousel:active {
    cursor: grabbing;
}

.gallery-carousel::-webkit-scrollbar {
    height: 5px;
}

.gallery-carousel::-webkit-scrollbar-track {
    background: var(--bg-secondary);
    border-radius: 4px;
}

.gallery-carousel::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 4px;
}

.gallery-track {
    display: flex;
    gap: 24px;
    padding: 8px 4px 8px;
    width: max-content;
}

.gallery-item {
    width: 220px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    transition: transform 0.32s ease;
    will-change: transform;
    position: relative;
}

.gallery-item:hover {
    transform: translateY(-10px);
}

/* Wrapper to clip the overlay inside rounded corners */
.gallery-img-wrap {
    position: relative;
    width: 220px;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover .gallery-img-wrap {
    border-color: var(--accent);
    box-shadow: 0 16px 48px rgba(229, 9, 20, 0.25);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
    background: var(--bg-card);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.04);
}

/* Label slides up from the bottom of the image on hover */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 28px 16px 14px;
    background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
    border-radius: 0 0 18px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay-label {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gallery-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.25s ease;
}

.gallery-item:hover .gallery-label {
    color: var(--accent);
}

/* ============ 11. FAQ ============ */
.faq-section {
    background: var(--bg-secondary);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto; /* was missing — fixes left-alignment on large screens */
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: border-color 0.28s ease, box-shadow 0.28s ease;
    position: relative;
}

/* Left accent bar slides in from bottom */
.faq-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 3px;
    height: 0;
    background: var(--accent);
    transition: height 0.35s ease;
    border-radius: 0 3px 3px 0;
}

.faq-item:hover::before,
.faq-item.active::before {
    height: 100%;
}

.faq-item.active {
    border-color: rgba(229, 9, 20, 0.35);
    box-shadow: 0 4px 24px rgba(229, 9, 20, 0.07);
}

.faq-question {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 16px;
}

.faq-question h3 {
    font-size: 16px;
    font-family: var(--font-primary);
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-icon {
    font-size: 22px;
    font-weight: 400;
    color: var(--accent);
    transition: transform var(--transition);
    flex-shrink: 0;
    line-height: 1;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.38s ease, padding 0.38s ease;
}

.faq-answer p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 24px 20px;
    max-height: 350px;
}

/* ============ TESTIMONIALS — WHATSAPP PHONE UI ============ */
.testimonials-section {
    background: var(--bg-primary);
    overflow: hidden;
}

/* Scrollable track */
.wa-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 8px 4px 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #25d366 var(--bg-secondary);
    -webkit-overflow-scrolling: touch;
}

.wa-track::-webkit-scrollbar { height: 4px; }
.wa-track::-webkit-scrollbar-track { background: var(--bg-secondary); border-radius: 4px; }
.wa-track::-webkit-scrollbar-thumb { background: #25d366; border-radius: 4px; }

/* Individual card wrapper */
.wa-card {
    flex-shrink: 0;
    width: 300px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}

.wa-card:hover {
    transform: translateY(-8px);
}

/* Phone screen chrome */
.wa-screen {
    background: #0b141a;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow:
        0 24px 60px rgba(0,0,0,0.55),
        0 0 0 1px rgba(255,255,255,0.04),
        inset 0 1px 0 rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

/* ── Status Bar ── */
.wa-sb {
    background: #0b141a;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 14px 5px;
    color: #e9edef;
}

.wa-sb-time {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.3px;
    font-family: var(--font-primary);
}

.wa-sb-icons {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #e9edef;
}

/* ── Header Bar ── */
.wa-hd {
    background: #1f2c34;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px 7px 6px;
    border-bottom: 1px solid rgba(0,0,0,0.25);
}

.wa-hd-back {
    background: none;
    border: none;
    padding: 4px 2px;
    cursor: default;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Avatar wrapper (for online dot overlay) */
.wa-hd-avw {
    position: relative;
    flex-shrink: 0;
}

.wa-av {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0;
    font-family: var(--font-primary);
}

/* Avatar colour variants */
.wa-av-g { background: linear-gradient(135deg, #25d366 0%, #128c7e 100%); }
.wa-av-p { background: linear-gradient(135deg, #9c27b0 0%, #673ab7 100%); }
.wa-av-r { background: linear-gradient(135deg, #f44336 0%, #c62828 100%); }
.wa-av-o { background: linear-gradient(135deg, #ff9800 0%, #f44336 100%); }
.wa-av-b { background: linear-gradient(135deg, #2196f3 0%, #0288d1 100%); }

.wa-online-dot {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 9px;
    height: 9px;
    background: #25d366;
    border-radius: 50%;
    border: 2px solid #1f2c34;
}

.wa-hd-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.wa-hd-name {
    font-size: 14px;
    font-weight: 600;
    color: #e9edef;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: var(--font-primary);
}

.wa-hd-status {
    font-size: 11px;
    color: #8696a0;
    font-weight: 400;
}

.wa-hd-online {
    color: #25d366;
}

.wa-hd-acts {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-left: 4px;
}

.wa-hd-btn {
    background: none;
    border: none;
    color: #aebac1;
    padding: 4px 5px;
    cursor: default;
    display: flex;
    align-items: center;
    line-height: 1;
}

.wa-hd-dots {
    font-size: 20px;
    color: #aebac1;
    letter-spacing: 0;
    line-height: 1;
}

/* ── Chat Background ── */
.wa-chat {
    background-color: #0b141a;
    background-image:
        repeating-linear-gradient(45deg,  transparent, transparent 28px, rgba(255,255,255,0.011) 28px, rgba(255,255,255,0.011) 29px),
        repeating-linear-gradient(-45deg, transparent, transparent 28px, rgba(255,255,255,0.011) 28px, rgba(255,255,255,0.011) 29px);
    padding: 10px 10px 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

/* Date separator chip */
.wa-dc {
    display: flex;
    justify-content: center;
    margin: 4px 0 8px;
}

.wa-dc span {
    background: #182229;
    color: #8696a0;
    font-size: 11px;
    font-weight: 500;
    padding: 4px 12px;
    border-radius: 8px;
    letter-spacing: 0.2px;
    font-family: var(--font-primary);
}

/* Message row */
.wa-r {
    display: flex;
    margin-bottom: 2px;
}

.wa-r-in  { justify-content: flex-start; }
.wa-r-out { justify-content: flex-end; }
.wa-r-close { margin-top: 1px; margin-bottom: 1px; }

/* Bubble */
.wa-b {
    max-width: 84%;
    padding: 6px 9px 4px 9px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.wa-b p {
    font-size: 13px;
    line-height: 1.45;
    color: #e9edef;
    margin: 0;
    word-break: break-word;
    font-family: var(--font-primary);
}

/* Incoming bubble */
.wa-b-in {
    background: #1f2c34;
    border-radius: 0 10px 10px 10px;
}

/* Pointed top-left tail on incoming */
.wa-b-in::before {
    content: '';
    position: absolute;
    top: 0;
    left: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 7px 8px 0;
    border-color: transparent #1f2c34 transparent transparent;
}

/* No tail for consecutive same-direction bubble */
.wa-b-in.wa-b-nt {
    border-radius: 10px;
}
.wa-b-in.wa-b-nt::before {
    display: none;
}

/* Outgoing bubble */
.wa-b-out {
    background: #005c4b;
    border-radius: 10px 0 10px 10px;
}

/* Pointed top-right tail on outgoing */
.wa-b-out::before {
    content: '';
    position: absolute;
    top: 0;
    right: -6px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 7px 0 0;
    border-color: #005c4b transparent transparent transparent;
}

/* Timestamp + ticks */
.wa-bm {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-top: 1px;
}

.wa-bm time {
    font-size: 10px;
    color: #8696a0;
    font-style: normal;
    font-family: var(--font-primary);
}

/* Blue read-receipt double-tick */
.wa-tk {
    font-size: 13px;
    line-height: 1;
    color: #53bdeb;
    letter-spacing: -2px;
}

/* ── Input Bar ── */
.wa-ib {
    background: #1f2c34;
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 6px;
    border-top: 1px solid rgba(0,0,0,0.2);
}

.wa-ib-ico {
    background: none;
    border: none;
    color: #8696a0;
    cursor: default;
    padding: 2px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.wa-ib-txt {
    flex: 1;
    background: #2a3942;
    border-radius: 22px;
    padding: 8px 14px;
    font-size: 12px;
    color: #8696a0;
    font-family: var(--font-primary);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.wa-ib-mic {
    width: 38px;
    height: 38px;
    background: #00a884;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: default;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0,168,132,0.4);
}

/* ── Rating Row (below phone) ── */
.wa-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px 4px;
}

.wa-stars {
    font-size: 13px;
    letter-spacing: 1px;
}

.wa-rname {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 600;
    font-family: var(--font-primary);
}

/* ============ 12. FOOTER ============ */
.footer {
    background: var(--bg-primary);
    padding: 64px 0 24px;
    border-top: 1px solid var(--border);
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.trust-line {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links h4 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

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

.footer-links ul a {
    color: var(--text-secondary);
    font-size: 14px;
    transition: color 0.22s ease, padding-left 0.22s ease;
    display: inline-block;
    position: relative;
}

.footer-links ul a::before {
    content: '→';
    position: absolute;
    left: -16px;
    opacity: 0;
    font-size: 12px;
    color: var(--accent);
    transition: opacity 0.22s ease, left 0.22s ease;
}

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

.footer-links ul a:hover::before {
    opacity: 1;
    left: -12px;
}

.footer-payments h4 {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
}

.payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 12px;
}

/* Shared payment badge shell */
.pay-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid var(--border);
    overflow: hidden;
    height: 34px;
    transition: border-color 0.2s, transform 0.2s;
}
.pay-badge:hover {
    border-color: rgba(255,255,255,0.25);
    transform: translateY(-1px);
}
.pay-badge svg { display: block; }

/* Visa — white card */
.pay-visa {
    background: #fff;
    width: 56px;
    padding: 4px 6px;
}
/* Mastercard — dark card */
.pay-mc {
    background: #252525;
    width: 52px;
    padding: 2px 4px;
}
/* PayPal — white card */
.pay-paypal {
    background: #fff;
    width: 64px;
    padding: 4px 6px;
}
/* Stripe — dark card */
.pay-stripe {
    background: #1a1a2e;
    width: 56px;
    padding: 4px 6px;
}

/* Trust seals row */
.trust-seals {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 4px;
}
.trust-seal {
    background: rgba(229,9,20,0.06);
    border: 1px solid rgba(229,9,20,0.18);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.3px;
    white-space: nowrap;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    color: var(--text-secondary);
    font-size: 13px;
}

/* ============ FLOATING ELEMENTS ============ */
.floating-wa {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: transform var(--transition), box-shadow var(--transition);
    text-decoration: none;
    will-change: transform;
}

.floating-wa:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* Tooltip on WhatsApp button */
.floating-wa::before {
    content: attr(data-tooltip);
    position: absolute;
    right: 68px;
    background: rgba(0,0,0,0.8);
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.floating-wa:hover::before {
    opacity: 1;
}

.scroll-top {
    position: fixed;
    bottom: 96px;
    right: 30px;
    width: 42px;
    height: 42px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
    line-height: 1;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* ============ COOKIE BANNER ============ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 17, 17, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 18px 24px;
    z-index: 2000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    border-top: 1px solid var(--border);
    transform: translateY(100%);
    transition: transform 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.btn-accept {
    padding: 9px 22px;
    font-size: 13px;
}

/* GDPR-compliant decline button */
.btn-decline {
    padding: 9px 22px;
    font-size: 13px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--button-radius);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-decline:hover {
    border-color: #666;
    color: #fff;
}

/* ============ SKIP LINK ============ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 16px;
    background: var(--accent);
    color: #fff;
    padding: 10px 20px;
    border-radius: 0 0 8px 8px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    z-index: 10000;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
}

/* ============ SOCIAL PROOF STRIP ============ */
.social-proof-strip {
    background: rgba(229, 9, 20, 0.06);
    border-top: 1px solid rgba(229, 9, 20, 0.15);
    border-bottom: 1px solid rgba(229, 9, 20, 0.15);
    padding: 12px 0;
    overflow: hidden;
}

.social-proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sp-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-secondary);
    white-space: nowrap;
}

.sp-item strong {
    color: var(--text-primary);
    font-weight: 700;
}

.sp-divider {
    color: var(--border);
    font-size: 16px;
}

.sp-pulse {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    animation: pulse-green 1.8s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
    50% { box-shadow: 0 0 0 5px rgba(34, 197, 94, 0); }
}

/* ============ URGENCY BANNER ============ */
.urgency-banner {
    background: linear-gradient(90deg, #1a0000 0%, #2d0005 50%, #1a0000 100%);
    border-top: 1px solid rgba(229, 9, 20, 0.3);
    border-bottom: 1px solid rgba(229, 9, 20, 0.3);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
}

.urgency-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent 0,
        transparent 40px,
        rgba(229, 9, 20, 0.04) 40px,
        rgba(229, 9, 20, 0.04) 41px
    );
}

.urgency-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.urgency-fire {
    font-size: 22px;
    animation: flicker 1.5s ease-in-out infinite alternate;
}

@keyframes flicker {
    0% { transform: scale(1) rotate(-3deg); }
    100% { transform: scale(1.15) rotate(3deg); }
}

.urgency-text {
    font-size: 14px;
    font-weight: 600;
    color: #ffcccc;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.urgency-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(229, 9, 20, 0.15);
    border: 1px solid rgba(229, 9, 20, 0.35);
    border-radius: 6px;
    padding: 4px 10px;
    min-width: 48px;
}

.countdown-num {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    font-variant-numeric: tabular-nums;
    line-height: 1.1;
    font-family: 'Poppins', sans-serif;
}

.countdown-label {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.countdown-sep {
    font-size: 20px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 6px;
    animation: blink-sep 1s step-end infinite;
}

@keyframes blink-sep {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}

.urgency-cta {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 0.3px;
    transition: background 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
}

.urgency-cta:hover {
    background: #ff1c2a;
    transform: scale(1.04);
}

/* ============ GUARANTEE BADGE ============ */
.guarantee-badge {
    margin-top: 40px;
}

.guarantee-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 20px 32px;
    flex-wrap: wrap;
    text-align: center;
}

.guarantee-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.guarantee-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.guarantee-text strong {
    font-size: 16px;
    color: var(--text-primary);
}

.guarantee-text span {
    font-size: 13px;
    color: var(--text-secondary);
}

.guarantee-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.guarantee-badges span {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 5px 12px;
    white-space: nowrap;
}

/* ============ STICKY MOBILE CTA ============ */
.sticky-mobile-cta {
    display: none; /* shown only on mobile via media query */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--bg-card);
    border-top: 1px solid rgba(229, 9, 20, 0.3);
    padding: 12px 16px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.34, 1.2, 0.64, 1);
}

.sticky-mobile-cta.visible {
    transform: translateY(0);
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    max-width: 480px;
    margin: 0 auto;
}

.sticky-cta-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sticky-cta-price {
    font-size: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.sticky-cta-price strong {
    color: var(--accent);
    font-size: 17px;
}

.sticky-cta-trust {
    font-size: 11px;
    color: var(--text-secondary);
}

.sticky-cta-btn {
    font-size: 14px;
    padding: 12px 22px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .pricing-card.popular {
        transform: none;
    }

    .pricing-card.popular:hover {
        transform: translateY(-8px);
    }

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

    .devices-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

@media (max-width: 768px) {
    :root {
        --nav-height: 56px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .section-header p {
        font-size: 16px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-btn {
        font-size: 16px;
        padding: 16px 32px;
    }

    .stats-container {
        flex-wrap: wrap;
        gap: 24px;
    }

    .stat-item {
        flex: 0 0 40%;
    }

    .stat-divider {
        display: none;
    }

    .stat-number {
        font-size: 36px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }

    .steps-grid {
        flex-direction: column;
        gap: 32px;
        align-items: center;
    }

    .step-connector {
        display: none;
    }

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

    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .sports-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .sports-content h2 {
        font-size: 30px;
    }

    .league-logos {
        justify-content: center;
    }

    .sports-visual-fallback {
        width: 260px;
        height: 200px;
    }

    .gallery-img-wrap {
        width: 180px;
        height: 340px;
    }

    .gallery-img {
        width: 180px;
        height: 340px;
    }

    .gallery-item {
        width: 180px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .cookie-banner {
        flex-direction: column;
        text-align: center;
        gap: 14px;
        padding: 20px;
    }

    .cookie-banner p {
        margin: 0;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

    /* Social proof strip: stack on mobile */
    .social-proof-inner {
        gap: 10px;
        font-size: 12px;
    }

    .sp-divider {
        display: none;
    }

    /* Urgency banner: stack on mobile */
    .urgency-inner {
        gap: 10px;
        flex-direction: column;
        text-align: center;
    }

    .countdown-num {
        font-size: 18px;
    }

    /* Sticky mobile CTA: show on mobile */
    .sticky-mobile-cta {
        display: block;
    }

    /* Add bottom padding so sticky bar doesn't overlap content */
    body {
        padding-bottom: 76px;
    }

    /* Guarantee badge: full width stack */
    .guarantee-inner {
        flex-direction: column;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 7px 16px;
    }

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

    .stats-container {
        gap: 16px;
    }

    .wa-track {
        gap: 16px;
        padding-bottom: 20px;
    }

    .wa-card {
        width: 272px;
    }

    .gallery-img-wrap {
        width: 160px;
        height: 300px;
    }

    .gallery-img {
        width: 160px;
        height: 300px;
    }

    .gallery-item {
        width: 160px;
    }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.1ms !important;
    }
    html { scroll-behavior: auto; }
    .fade-in { opacity: 1; transform: none; }
    .fade-in-stagger > * { opacity: 1; transform: none; }
}
