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

:root {
    --bg-black: #0a0a0a;
    --bg-darker: #050505;
    --gold-primary: #D4AF37;
    --gold-secondary: #C5A028;
    --gold-glow: rgba(212, 175, 55, 0.3);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --text-primary: #ffffff;
    --text-gold: #D4AF37;
    --text-secondary: #a0a0a0;
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    --font-main: 'Outfit', 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html,
body {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
    scroll-behavior: smooth;
    background-color: var(--bg-black);
}

* {
    max-width: 100vw;
}

body {
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
    word-wrap: break-word;
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-black);
}

::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    border: 2px solid var(--bg-black);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Selection Color */
::selection {
    background: var(--gold-primary);
    color: var(--bg-black);
}

/* Global Link Reset for Safari */
a {
    text-decoration: none !important;
    color: inherit;
    transition: all 0.3s ease;
}

ul,
li {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

/* Splash Screen */
.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), visibility 1s;
}

.splash-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

.splash-logo-container {
    text-align: center;
    animation: scaleIn 1.5s ease-out;
}

.splash-logo {
    width: 120px;
    height: auto;
    filter: drop-shadow(0 0 20px var(--gold-glow));
}

.logo-text {
    margin-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.loading-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    margin: 2rem auto 0;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.loading-progress {
    position: absolute;
    width: 0%;
    height: 100%;
    background: var(--gold-primary);
    animation: progress 2.5s ease-in-out forwards;
}

@keyframes progress {
    0% {
        width: 0;
    }

    50% {
        width: 70%;
    }

    100% {
        width: 100%;
    }
}

@keyframes scaleIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Navbar - React Bits Style */
/* Navbar - Floating Pill Style (React Bits) */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    /* Wider as requested */
    max-width: 1200px;
    /* Increased max width */
    padding: 0.8rem 2rem;
    /* Comfortable padding */
    z-index: 1000;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Visible border */
    border-radius: 50px;
    background: rgba(10, 10, 10, 0.4);
    /* More transparent */
    backdrop-filter: blur(25px);
    /* Strong blur */
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.6);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    top: 15px;
    padding: 0.6rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-toggle {
    display: none;
}

.nav-toggle-label {
    display: none;
    cursor: pointer;
    padding: 1rem;
    position: relative;
    z-index: 1001;
}

.nav-toggle-label span,
.nav-toggle-label span::before,
.nav-toggle-label span::after {
    display: block;
    background: var(--gold-primary);
    height: 2px;
    width: 25px;
    border-radius: 2px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-toggle-label span::before,
.nav-toggle-label span::after {
    content: '';
    position: absolute;
}

.nav-toggle-label span::before {
    bottom: 8px;
}

.nav-toggle-label span::after {
    top: 8px;
}

.nav-logo {
    font-size: 1.3rem;
    /* Further reduced */
    font-weight: 700;
    text-decoration: none;
    color: var(--text-primary);
    letter-spacing: 0.5px;
    margin-right: 1.5rem;
    white-space: nowrap;
}

.gold-text {
    color: var(--gold-primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #e0e0e0;
    /* Lighter text */
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-gradient);
    transition: width 0.3s ease;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.lang-switcher {
    position: relative;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-gold);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--gold-primary);
}

.lang-dropdown {
    position: absolute;
    top: 120%;
    right: 0;
    background: var(--bg-darker);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.lang-switcher:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-dropdown button {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 0.5rem 1rem;
    text-align: left;
    cursor: pointer;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.lang-dropdown button:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
}

.nav-cta {
    background: var(--gold-gradient);
    color: var(--bg-black) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    box-shadow: 0 4px 15px var(--gold-glow);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--gold-glow);
}

/* Icon-only Telegram button for nav */
/* React Bits "Star on GitHub" style button for Telegram */
.nav-cta-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: #fff !important;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.nav-cta-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-cta-icon:hover {
    transform: translateY(-2px);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
    background: rgba(255, 255, 255, 0.1);
    /* Keep transparent-ish but lighter */
}

.nav-cta-icon i {
    font-size: 1.1rem;
    color: var(--gold-primary);
    /* Gold icon */
}

.nav-cta-icon:hover i {
    color: #fff;
    /* White icon on hover */
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

/* Pseudo element for the text "Telegram" to appear - since we rely on existing HTML structure which might be just an icon */
/* Fixing HTML to include text would be better, but we can do it via CSS safely if we assume the user might not want to change HTML structure too much yet. */
/* Alternatively, we leave it as an icon-only pill or expanded pill. Let's make it look like a pill. */

/* Main Wrapper */
.main-wrapper {
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
    position: relative;
    z-index: 10;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
}

.hero-content {
    max-width: 900px;
    padding: 0 1rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
}

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

.pulsate {
    animation: pulsate 2s infinite ease-in-out;
}

@keyframes pulsate {
    0% {
        filter: drop-shadow(0 0 5px var(--gold-glow));
    }

    50% {
        filter: drop-shadow(0 0 20px var(--gold-glow));
    }

    100% {
        filter: drop-shadow(0 0 5px var(--gold-glow));
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-black);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gold:not(.no-hover-animation):hover,
.btn-outline:not(.no-hover-animation):hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--gold-glow);
}

.no-hover-animation {
    transition: none !important;
    transform: none !important;
    animation: none !important;
}

.no-hover-animation::after {
    display: none !important;
}

.no-hover-animation:hover {
    transform: none !important;
    box-shadow: none !important;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    width: 100%;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
.about-ea {
    padding: 6rem 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
}

/* Reveal Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Bento Grid System */
.bento-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 155px;
    /* Reduced from 180px */
    gap: 1.25rem;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 28px;
    padding: 2rem;
    /* Reduced from 2.5rem */
    position: relative;
    overflow: hidden;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.8s ease, box-shadow 0.8s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    z-index: 2;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
}

.bento-card p {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

/* Relocated Site Background Visuals */
.site-background-fx {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Explicitly visible, above base */
    pointer-events: none;
    overflow: hidden;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--gold-glow) 0%, rgba(0, 0, 0, 0) 70%);
    top: -200px;
    right: 0;
    /* Changed from -200px to avoid overflow */
    opacity: 0.5;
    animation: floatingGlow 15s infinite alternate ease-in-out;
}

@keyframes floatingGlow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(-100px, 100px);
    }
}

/* Floating Background Logos */
.floating-platform-logo {
    position: absolute;
    width: 120px;
    height: auto;
    opacity: 0.15;
    filter: grayscale(1) brightness(2);
    pointer-events: none;
    z-index: -1;
    animation: floatLogo 20s infinite ease-in-out;
}

.mt4-bg {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.mt5-bg {
    top: 45%;
    right: 8%;
    animation-delay: -5s;
    width: 140px;
}

.tv-bg {
    bottom: 15%;
    left: 15%;
    animation-delay: -10s;
}

@keyframes floatLogo {

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

    33% {
        transform: translateY(-30px) rotate(5deg);
    }

    66% {
        transform: translateY(20px) rotate(-5deg);
    }
}

/* Hero Platform Showcase */
.platform-showcase {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.platform-logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.platform-logo-item img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.3));
}

.platform-logo-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gold-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}

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

.platform-logo-item:hover img {
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.6));
}


.bg-candles {
    position: absolute;
    bottom: 50px;
    left: 50px;
    display: flex;
    align-items: flex-end;
    gap: 12px;
    opacity: 0.08;
}

.bg-candles .candle {
    width: 10px;
    background: #2ed573;
    border-radius: 2px;
    animation: candleGrow 4s infinite ease-in-out;
}

.bg-candles .candle.red {
    background: #ff4757;
}

.bg-growth-svg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 300px;
    opacity: 0.05;
}

.bg-line-path {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawLine 8s infinite forwards linear;
}

@keyframes candleGrow {

    0%,
    100% {
        height: 40px;
    }

    50% {
        height: 100px;
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

.card-content {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.4);
    padding: 1.5rem;
    border-radius: 20px;
    backdrop-filter: blur(5px);
    width: 100%;
}

/* Specific compact style for Economic Calendar to fit content */
.bento-card.calendar-card {
    padding: 1.5rem !important;
}

/* Standard Horizontal Header for all Bento Cards */
.bento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
}

.bento-header .bento-icon {
    margin-bottom: 0 !important;
    font-size: 2rem;
    /* Standardized size for header icons */
    color: var(--gold-primary);
}

.bento-header h3 {
    margin-bottom: 0 !important;
    font-size: 1.4rem;
    line-height: 1.2;
    color: var(--text-gold);
}

.bento-card.calendar-card p {
    font-size: 0.85rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Calendar Button Styling */
.bento-card.calendar-card .calendar-btn {
    margin-top: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: rgba(212, 175, 55, 0.1) !important;
    padding: 14px 24px !important;
    border-radius: 50px !important;
    color: var(--gold-primary) !important;
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    font-size: 0.85rem !important;
    width: 100%;
    transition: all 0.3s ease !important;
}

/* AI Coaching link alignment fix */
.bento-card .fa-arrow-right:not(.bento-icon) {
    font-size: 0.9rem;
    margin-bottom: 0;
    display: inline-block;
}


.bento-card.calendar-card .calendar-btn i {
    font-size: 1rem;
    transform: translateY(-1px);
    /* Optical center correction */
}

.bento-card.calendar-card .calendar-btn:hover {
    background: var(--gold-primary) !important;
    color: #000 !important;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

.bento-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
    /* Ultra minimal requested by user */
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    /* Subtle shadow */
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(0, 0, 0, 0) 100%), var(--glass-bg);
}

.card-medium {
    grid-column: span 2;
    grid-row: span 1;
}

.card-small {
    grid-column: span 1;
    grid-row: span 1;
}

.bento-card .bento-icon {
    font-size: 2.2rem;
    /* Reduced from 2.5rem */
    margin-bottom: 1rem;
    /* Reduced from 1.25rem */
    display: block;
    color: var(--gold-primary);
}


.bento-card h3 {
    font-size: 1.35rem;
    /* Reduced from 1.5rem */
    margin-bottom: 0.75rem;
}

.bento-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.card-bg-icon {
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 8rem !important;
    opacity: 0.03 !important;
    transform: rotate(-15deg);
    pointer-events: none;
}

/* Results Bento Section */
.results-bento {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.results-bento-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.result-bento-card {
    background: var(--glass-bg);
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Subtle gold border by default */
    border-radius: 32px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* AI Coaching Enhancement Styles */
.header-text-group {
    display: flex;
    flex-direction: column;
}

.ai-status-badge {
    font-size: 0.75rem;
    color: var(--text-secondary);
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 8px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: -5px;
}

.ai-prompts-preview {
    margin: 1rem 0;
}

.prompt-title {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.prompt-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.chip {
    font-size: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold-primary);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: default;
    transition: all 0.3s ease;
}

.chip:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
}

.ai-signal-preview {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 16px;
    margin-bottom: 1.5rem;
}

.signal-header {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.btn-more-minimal {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gold-primary);
    font-weight: 600;
}

/* Live Stats Section */
.live-stats {
    padding: 4rem 2rem;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

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

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-gold);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(212, 175, 55, 0.3), transparent);
}

@media (max-width: 768px) {
    .stats-grid {
        flex-direction: column;
        gap: 2rem;
    }

    .stat-divider {
        width: 100px;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(212, 175, 55, 0.3), transparent);
    }

    .stat-value {
        font-size: 2rem;
    }
}


.result-bento-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
    /* Gold glow on hover */
}

/* Homepage Result Carousel */
.homepage-carousel {
    position: relative;
    width: 100%;
    height: 250px;
    /* Reduced from 300px for better layout */
    overflow: hidden;
    background: #000;
}

.homepage-carousel .carousel-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.homepage-carousel .carousel-item.active {
    opacity: 1;
}

.homepage-carousel .carousel-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 5;
}

.homepage-carousel .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.homepage-carousel .dot.active {
    background: var(--gold-primary);
    transform: scale(1.2);
}

.result-bento-card .result-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-bento-info {
    padding: 2rem;
}

.tag {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 100px;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.tag.live {
    background: rgba(46, 213, 115, 0.1);
    color: #2ed573;
}

.result-bento-info h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--gold-primary);
}

.result-bento-info p {
    color: var(--text-secondary);
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.about-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.about-card:hover {
    transform: translateY(-10px);
    background: rgba(212, 175, 55, 0.05);
    border-color: var(--gold-primary);
}

.about-card i {
    font-size: 3rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

.about-card h3 {
    margin-bottom: 1rem;
}

.about-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Instructions Section */
.instructions {
    padding: 6rem 0;
}

.instruction-steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: transparent;
    -webkit-text-stroke: 1px var(--gold-primary);
    line-height: 1;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold-primary);
}

.step-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.step-link {
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.step-link:hover {
    text-decoration: underline;
}

/* Installation CTA */
.installation-cta {
    padding: 4rem 0 8rem;
}

.cta-box {
    background: var(--gold-gradient);
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    color: var(--bg-black);
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.cta-box .btn-gold {
    background: var(--bg-black);
    color: var(--gold-primary);
    box-shadow: none;
}

/* Why Us Section */
.why-us {
    padding: 6rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 1.5rem;
}

/* Comparison Section */
.comparison {
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: -2rem auto 3rem;
    line-height: 1.6;
}

.comparison-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    margin-bottom: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem 2rem;
    text-align: left;
    border-bottom: 1px solid var(--glass-border);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-gold);
    font-size: 1.1rem;
    font-weight: 600;
}

.comparison-table th i {
    margin-right: 0.5rem;
    font-size: 1rem;
}

.comparison-table td {
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.comparison-table td i {
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

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

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

.gold-column {
    background: rgba(212, 175, 55, 0.05);
    color: var(--gold-primary);
    font-weight: 600;
}

.text-red {
    color: #ff4757;
}

/* Hide mobile cards on desktop */
.comparison-mobile {
    display: none;
}

.comparison-cta {
    text-align: center;
    background: var(--glass-bg);
    border: 2px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem 2rem;
    max-width: 700px;
    margin: 0 auto;
    transition: all 0.4s ease;
}

.comparison-cta:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.2);
}

.comparison-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.comparison-cta p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.comparison-cta .btn-gold {
    display: inline-block;
    margin-top: 1rem;
}

/* Results Section */
.results {
    padding: 6rem 0;
}

/* Results Slider */
.results-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 10px;
    /* Increased padding to prevent border clipping */
}

.results-slider-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.results-slider-track .result-bento-card {
    flex: 0 0 calc(33.333% - 1.35rem);
    min-width: 300px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.slider-nav {
    display: flex !important;
    /* Force visibility */
    gap: 12px;
    z-index: 10;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    /* Thicker gold border */
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.slider-btn:hover {
    background: var(--gold-primary);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 0 20px var(--gold-glow);
}

@media (max-width: 1024px) {
    .results-slider-track .result-bento-card {
        flex: 0 0 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .results-slider-track .result-bento-card {
        flex: 0 0 100%;
    }
}

.result-bento-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
}

.result-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.result-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 1.2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.result-card:hover .result-img {
    transform: scale(1.1);
}

.result-card:hover .result-overlay {
    transform: translateY(0);
}

/* FAQ Section */
.faq {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    background: var(--glass-bg);
    cursor: pointer;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--gold-primary);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease-out;
    background: rgba(255, 255, 255, 0.01);
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 200px;
}

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

.faq-question i {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

/* ========================================
   Modern Footer Redesign - Optimized
   Safari & Chrome Compatible
======================================== */

/* Footer asosiy qismi */
.footer {
    position: relative;
    z-index: 10;
    -webkit-backdrop-filter: blur(20px);
    /* Safari uchun */
    backdrop-filter: blur(20px);
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.95), rgba(20, 20, 35, 0.95));
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    overflow: visible;
    color: #fff;
}

/* Radial effekt */
.footer::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Ensure main content sits above the background */
.main-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 80px auto 0;
    padding: 2rem;
}



/* Ichki container */
.footer-container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* Sarlavhalar */
.footer-col h4 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: #D4AF37;
    /* oltin rang */
    border-radius: 2px;
}

/* Logo */
.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-logo:hover {
    color: #D4AF37;
}

/* Tavsif (About) */
.footer-about {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #D4AF37;
    transform: translateX(5px);
}

/* Social icons */
.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-socials a:hover {
    background: #D4AF37;
    color: #000;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
}

.bento-card:hover {
    transform: translateY(-5px);
    /* Reduced from -10px */
    border-color: var(--gold-primary);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.15);
    /* Slightly reduced shadow */
}

/* Call-to-action qismi */
.footer-cta {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    border-radius: 12px;
    margin-top: 10px;
}

.footer-cta p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-disclaimer p {
    margin-bottom: 5px !important;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 0;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
    width: 100%;
}


/* Slider Navigation Buttons (Global) */
.slider-nav {
    display: flex !important;
    gap: 12px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--gold-primary);
    background: rgba(10, 10, 10, 0.9);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}



.slider-btn:active {
    transform: scale(0.92);
    background: var(--gold-primary);
    color: #000;
    border-color: var(--gold-primary);
    box-shadow: 0 0 15px var(--gold-glow);
}

.slider-btn:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

.slider-btn.next-btn:hover {
    background: var(--gold-primary);
    color: #000;
}


@media (max-width: 1024px) {
    .nav-container {
        padding: 0 1rem;
        /* Slightly reduced padding */
    }

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

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

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

@media (max-width: 940px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        gap: 1.5rem;
    }

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

    .footer-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-toggle-label {
        display: block;
    }

    .nav-links {
        position: fixed;
        background: rgba(5, 5, 5, 0.95);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        padding: 2rem;
    }

    .platform-showcase {
        gap: 20px;
    }

    .platform-logo-item img {
        width: 70px;
        height: 70px;
    }

    .platform-logo-item span {
        font-size: 0.8rem;
    }

    .floating-platform-logo {
        width: 80px;
        opacity: 0.1;
    }

    .nav-toggle:checked~.nav-links {
        right: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span {
        background: transparent;
    }

    .nav-toggle:checked~.nav-toggle-label span::before {
        transform: rotate(45deg);
        bottom: 0;
    }

    .nav-toggle:checked~.nav-toggle-label span::after {
        transform: rotate(-45deg);
        top: 0;
    }

    .nav-actions {
        gap: 1rem;
    }

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .step {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .step-link {
        justify-content: center;
    }

    .step-content {
        width: 100%;
    }

    .cta-box {
        padding: 2.5rem 1.5rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }

    /* Mobile Header & Nav Styling */
    .section-header {
        padding: 0 0.5rem;
    }

    .section-title {
        font-size: 1.5rem;
    }



    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        /* 3 Columns on Desktop */
        grid-template-rows: repeat(2, 280px);
        /* Fixed height rows */
    }

    .card-large {
        grid-column: span 2;
        grid-row: span 2;
        /* Large card takes 2x2 */
    }

    .card-medium {
        grid-column: span 1;
        grid-row: span 1;
    }

    .results-bento-grid {
        grid-template-columns: none;
        display: flex;
        /* Switch to flex for horizontal scroll */
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 1.5rem;
        padding-bottom: 2rem;
        /* Space for scrollbar or finger clearance */
        -webkit-overflow-scrolling: touch;
        /* Smooth scroll on iOS */
    }

    .result-bento-card {
        flex: 0 0 85%;
        /* Adjusted width for mobile consistency */
        scroll-snap-align: center;
        margin-right: 0;
        max-width: 85vw;
        /* Clamp width to avoid overflow */
    }

    /* Hide scrollbar for cleaner look */
    .results-bento-grid::-webkit-scrollbar {
        display: none;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.75rem;
    }

    .comparison-table th i,
    .comparison-table td i {
        margin-right: 0.4rem;
        font-size: 0.9rem;
    }

    /* Hide less critical rows on mobile to reduce information density */
    /* Keep only: Working time, Psychological pressure, Error rate, Speed, Rest opportunity */
    /* Hide: Multi-market monitoring, Required skills, Risk management */
    .comparison-table tbody tr:nth-child(5),
    /* Multi-market monitoring */
    .comparison-table tbody tr:nth-child(7),
    /* Required skills */
    .comparison-table tbody tr:nth-child(8) {
        /* Risk management */
        display: none;
    }

    .section-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
    }

    .comparison-cta {
        padding: 2rem 1.5rem;
    }

    .comparison-cta h3 {
        font-size: 1.5rem;
    }

    .comparison-cta p {
        font-size: 1rem;
    }

    /* Make all images and media responsive */
    img,
    video {
        max-width: 100%;
        height: auto;
    }

    .result-img,
    .result-bento-card img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .platform-logo-item img {
        width: 60px;
        height: 60px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3.5rem;
        padding: 0 1.5rem;
    }

    .footer-logo {
        text-decoration: none !important;
        margin-bottom: 1.5rem;
        display: inline-block;
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-about {
        max-width: 100%;
        margin: 0 auto 1.5rem;
        font-size: 0.95rem;
        text-align: center;
    }

    .footer-col h4 {
        margin-bottom: 1.8rem;
        font-size: 1.2rem;
        text-align: center;
        width: 100%;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
        width: 40px;
    }

    .footer-links {
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .footer-links li {
        margin-bottom: 0.8rem;
        list-style: none !important;
        text-align: center;
        width: 100%;
    }

    .footer-links a {
        color: rgba(255, 255, 255, 0.7) !important;
        font-size: 1.05rem;
        text-decoration: none !important;
        display: block;
        width: 100%;
    }

    .footer-socials {
        justify-content: center;
        margin-top: 1rem;
        gap: 1.5rem;
    }

    .footer-socials a {
        width: 45px;
        height: 45px;
    }

    .footer-cta {
        display: block;
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
        padding: 1.5rem;
        background: rgba(212, 175, 55, 0.1);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .footer-cta .btn-gold {
        width: 100%;
        margin: 0;
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
        /* Reduced from 1.8rem */
    }

    /* Reduce container padding to let cards be wider */
    .main-wrapper {
        padding: 1rem;
        /* Reduced from 2rem or 1.5rem */
    }

    /* Smaller blocks (cards) */
    .bento-card {
        padding: 1rem 1.25rem;
        /* Reduced vertical padding (height) */
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* Center content vertically if height is fixed */
    }

    .bento-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
        /* Reduced gap for compactness - 'height kamaytir' effect on overall section */
        grid-auto-rows: auto;
    }

    /* Reduce header margin to save height */
    .bento-header {
        margin-bottom: 0.5rem;
    }

    /* Reset Spans for Mobile - Make everything full width */
    .card-large,
    .card-medium,
    .card-small {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.75rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    /* Reduce font sizes inside cards for mobile */
    .bento-card h3 {
        font-size: 1.1rem;
        /* Smaller titles */
        margin-bottom: 0.5rem;
    }

    .bento-card p {
        font-size: 0.85rem;
        /* Smaller text */
        line-height: 1.4;
    }

    .bento-header .bento-icon {
        font-size: 1.5rem;
        /* Smaller icons */
    }

    .bento-header h3 {
        font-size: 1.1rem;
    }

    .nav-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.5rem;
        /* Reduced from 1.8rem */
        margin-bottom: 2rem;
    }

    .comparison-table {
        font-size: 0.75rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem 0.5rem;
    }

    .comparison-table th i,
    .comparison-table td i {
        display: none;
        /* Hide icons on very small screens for space */
    }
}

/* Mobile Responsiveness for Floating Pill Navbar */
@media (max-width: 768px) {

    /* Hero Section Mobile Adjustments */
    .hero {
        padding: 4rem 0 2rem;
        /* Reduced padding */
        min-height: auto;
    }

    .hero-wrapper {
        flex-direction: column-reverse;
        /* Visuals on top or bottom? Let's keep Text on top for conversion, so default column. Wait, visual heavy design often puts visual first. Let's stick to Text first (default column) as requested by general UX, but usually 'column-reverse' puts visual on top if it was second in HTML. HTML order: Text, Visual. 'column' puts Text top. 'column-reverse' puts Visual top. Let's do Text Top. */
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .hero-text-side {
        text-align: center;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-btns {
        justify-content: center;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
        /* Smaller font */
    }

    .hero-visual-side {
        height: 300px;
        /* Smaller height on mobile */
        width: 100%;
    }

    .glowing-circle {
        width: 250px;
        height: 250px;
    }

    /* Adjust floating item positions for smaller circle */
    .item-1 {
        top: 10%;
        left: 50%;
        transform: translateX(-50%);
    }

    .item-2 {
        top: 60%;
        left: 10%;
    }

    .item-3 {
        top: 60%;
        right: 10%;
    }

    .navbar {
        width: 95%;
        max-width: 95%;
        top: 10px;
        left: 50%;
        transform: translateX(-50%);
        padding: 0.6rem 1rem;
        border-radius: 25px;
        /* Less rounded to save space */
    }

    .navbar.scrolled {
        width: 95%;
        top: 10px;
        border-radius: 25px;
        padding: 0.5rem 1rem;
    }

    .nav-logo {
        font-size: 1.2rem;
    }

    .nav-container {
        padding: 0 0.5rem;
    }

    /* Mobile Menu - Dropdown from navbar */
    .nav-links {
        position: absolute;
        width: calc(100% + 2rem);
        left: -1rem;
        top: calc(100% + 10px);
        border-radius: 16px;
        background: rgba(10, 10, 10, 0.98);
        border: 1px solid rgba(212, 175, 55, 0.2);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 1rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);

        /* Hidden by default */
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
        z-index: 9999;
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.75rem 1rem;
        text-align: center;
        border-radius: 10px;
        font-size: 0.95rem;
        transition: all 0.2s ease;
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(212, 175, 55, 0.1);
        color: var(--gold-primary);
    }

    .nav-toggle-label {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        cursor: pointer;
        z-index: 10000;
        position: relative;
    }

    .nav-toggle-label span {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--gold-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle-label span::before,
    .nav-toggle-label span::after {
        content: '';
        position: absolute;
        width: 22px;
        height: 2px;
        background: var(--gold-primary);
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-toggle-label span::before {
        top: calc(50% - 7px);
    }

    .nav-toggle-label span::after {
        top: calc(50% + 5px);
    }

    /* Hamburger to X Animation */
    .nav-toggle-label.active span {
        background: transparent;
    }

    .nav-toggle-label.active span::before {
        top: 50%;
        transform: rotate(45deg);
        background: var(--gold-primary);
    }

    .nav-toggle-label.active span::after {
        top: 50%;
        transform: rotate(-45deg);
        background: var(--gold-primary);
    }

    /* Nav actions */
    .nav-actions {
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .lang-btn {
        padding: 0.4rem 0.6rem;
        font-size: 0.8rem;
    }

    /* Hide the checkbox input */
    .nav-toggle {
        display: none;
    }
}

/* Continuing Mobile Styles */
@media (max-width: 768px) {
    .comparison-cta h3 {
        font-size: 1.3rem;
    }

    .comparison-cta p {
        font-size: 0.9rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    /* Ensure all media is fully responsive */
    img,
    video {
        max-width: 100% !important;
        height: auto !important;
    }

    .platform-logo-item img {
        width: 50px;
        height: 50px;
    }

    .result-bento-card img {
        height: 180px;
    }

    /* FAQ Mobile Optimization */
    .faq {
        padding: 3rem 1rem;
    }

    .faq-list {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .faq-item {
        position: relative !important;
        transform: none !important;
        opacity: 1 !important;
        margin-bottom: 0;
    }

    .faq-item.reveal {
        transform: none !important;
        opacity: 1 !important;
    }

    .faq-question {
        display: flex;
        padding: 1rem;
        font-size: 0.9rem;
        line-height: 1.4;
        background: var(--glass-bg);
        border-radius: 12px 12px 0 0;
    }

    .faq-item:not(.active) .faq-question {
        border-radius: 12px;
    }

    .faq-question span {
        flex: 1;
        padding-right: 0.5rem;
    }

    .faq-answer {
        font-size: 0.85rem;
        line-height: 1.5;
        max-height: 0 !important;
        padding: 0 1rem !important;
        overflow: hidden !important;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.02);
    }

    .faq-item.active .faq-answer {
        padding: 1rem !important;
        max-height: 350px !important;
        border-radius: 0 0 12px 12px;
    }
}

/* =========================================
   STICKY MOBILE CTA BUTTON
   ========================================= */
.sticky-cta-mobile {
    display: none;
    /* Hidden on desktop */
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: flex;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
        background: var(--gold-gradient);
        color: #000 !important;
        padding: 14px 32px;
        border-radius: 50px;
        font-weight: 700;
        font-size: 1rem;
        align-items: center;
        gap: 10px;
        box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        animation: pulseGlow 2s infinite ease-in-out;
        text-decoration: none !important;
    }

    .sticky-cta-mobile i {
        font-size: 1.2rem;
    }

    @keyframes pulseGlow {

        0%,
        100% {
            box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
        }

        50% {
            box-shadow: 0 8px 40px rgba(212, 175, 55, 0.8);
        }
    }

    /* Add padding to footer to avoid overlap */
    .footer {
        padding-bottom: 100px;
    }
}

/* =========================================
   HERO SECTION ENHANCEMENTS
   ========================================= */
.hero-title {
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    animation: fadeInUp 1s ease 0.2s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-btns {
    animation: fadeInUp 1s ease 0.4s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Button Hover Effects */
.btn-gold {
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-gold:hover::after {
    width: 300px;
    height: 300px;
}

.btn-outline {
    position: relative;
    overflow: hidden;
}

.btn-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-outline:hover::before {
    left: 100%;
}

/* Subtle Card Hover Glow */
.bento-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.4s ease;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1), transparent 70%);
    pointer-events: none;
}

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

/* =============================================
   COOKIE CONSENT BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 1.25rem 2rem;
    z-index: 10000;
    display: none;
    animation: slideUp 0.4s ease-out;
}

.cookie-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
}

.cookie-text h4 {
    font-size: 1rem;
    color: var(--gold-primary);
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: var(--gold-primary);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-main);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--gold-gradient);
    color: var(--bg-black);
}

.cookie-btn.accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--gold-glow);
}

.cookie-btn.decline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
}

.cookie-btn.decline:hover {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

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

    .cookie-text h4 {
        justify-content: center;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
        opacity: 1;
    }

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

/* ============================================
   VIDEO TUTORIALS SECTION
   ============================================ */
.tutorials-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.tutorials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tutorial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tutorial-card:hover {
    transform: translateY(-10px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.15);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.video-thumbnail img {
    width: 60%;
    height: auto;
    object-fit: contain;
    opacity: 0.6;
    transition: all 0.4s ease;
}

.video-thumbnail:hover img {
    opacity: 0.3;
    transform: scale(1.1);
}

.play-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
}

.play-icon i {
    color: var(--bg-black);
    font-size: 1.5rem;
    margin-left: 5px;
}

.video-thumbnail:hover .play-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.6);
}

.tutorial-info {
    padding: 1.5rem;
}

.tutorial-info h4 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.tutorial-info p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.5);
}

.back-to-top i {
    color: var(--bg-black);
    font-size: 1.2rem;
}

/* Responsive for tutorials */
@media (max-width: 992px) {
    .tutorials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    .tutorials-section {
        padding: 4rem 1rem;
    }

    .back-to-top {
        bottom: 80px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   PAID SERVICES SECTION
   ============================================ */
.paid-services-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.paid-services-section .section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 700px;
    margin: -2rem auto 3rem;
}

.paid-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.paid-service-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    cursor: default;
}

.paid-service-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.paid-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.paid-service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.paid-service-card:hover .service-icon {
    background: var(--gold-gradient);
    transform: scale(1.1);
}

.paid-service-card:hover .service-icon i {
    color: var(--bg-black);
}

.paid-service-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.paid-service-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
}

/* Service Badges */
.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 175, 55, 0.15);
    color: var(--gold-primary);
    padding: 0.35rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-badge.premium {
    background: var(--gold-gradient);
    color: var(--bg-black);
}

/* Paid Services Note/CTA */
.paid-services-note {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(255, 107, 107, 0.3);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 3rem;
}

.note-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 107, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.note-icon i {
    font-size: 1.4rem;
    color: #ff6b6b;
}

.note-content {
    flex-grow: 1;
}

.note-content h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ff6b6b;
    margin-bottom: 0.3rem;
}

.note-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

.paid-services-note .btn-gold {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

/* Responsive for Paid Services */
@media (max-width: 992px) {
    .paid-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile Swipe Slider for Paid Services - 640px and below */
@media (max-width: 640px) {

    /* Reduce spacing between all sections on mobile */
    .bento-section,
    .results-bento-section,
    .comparison,
    .instructions,
    .tutorials-section,
    .faq {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    /* Comparison - Card layout on mobile */
    .comparison {
        padding: 2.5rem 1rem;
    }

    .comparison .section-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .comparison-container {
        overflow: visible;
    }

    /* Hide table on mobile */
    .comparison-table {
        display: none;
    }

    /* Show mobile comparison cards */
    .comparison-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .comparison-card {
        background: var(--glass-bg);
        border: 1px solid var(--glass-border);
        border-radius: 16px;
        overflow: hidden;
    }

    .comparison-card-header {
        background: rgba(255, 255, 255, 0.03);
        padding: 0.75rem 1rem;
        font-weight: 600;
        font-size: 0.85rem;
        color: var(--text-primary);
        border-bottom: 1px solid var(--glass-border);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .comparison-card-header i {
        color: var(--gold-primary);
        font-size: 0.9rem;
    }

    .comparison-card-body {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .comparison-card-item {
        padding: 0.75rem;
        font-size: 0.8rem;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }

    .comparison-card-item.manual {
        background: rgba(239, 68, 68, 0.05);
        border-right: 1px solid var(--glass-border);
    }

    .comparison-card-item.robot {
        background: rgba(212, 175, 55, 0.08);
    }

    .comparison-card-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--text-secondary);
        font-weight: 600;
    }

    .comparison-card-item.manual .comparison-card-label {
        color: #ef4444;
    }

    .comparison-card-item.robot .comparison-card-label {
        color: var(--gold-primary);
    }

    .comparison-card-value {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .comparison-card-value i {
        font-size: 0.85rem;
        flex-shrink: 0;
    }

    .comparison-card-item.manual .comparison-card-value i {
        color: #ef4444;
    }

    .comparison-card-item.robot .comparison-card-value i {
        color: #22c55e;
    }

    .paid-services-section {
        padding: 2rem 0;
        overflow: hidden;
    }

    /* Disable reveal animation on this section to prevent overlap */
    .paid-services-section.reveal,
    .paid-services-section.reveal.active {
        opacity: 1 !important;
        transform: none !important;
    }

    .paid-services-section .container {
        padding: 0;
        display: flex;
        flex-direction: column;
    }

    .paid-services-section .section-title {
        display: block;
        position: static;
        width: 100%;
        padding: 0 1rem;
        margin: 0 0 0.5rem 0;
        font-size: 1.4rem;
        transform: none !important;
        opacity: 1 !important;
    }

    .paid-services-section .section-subtitle {
        display: block;
        position: static;
        width: 100%;
        padding: 0 1rem;
        font-size: 0.85rem;
        margin: 0 0 1rem 0;
        transform: none !important;
        opacity: 1 !important;
    }

    /* Convert grid to horizontal slider */
    .paid-services-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1rem;
        padding: 0 1rem 1.5rem;
        margin: 0;
    }

    .paid-services-grid::-webkit-scrollbar {
        display: none;
    }

    .paid-service-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
        padding: 1.5rem;
        margin: 0;
        border-radius: 20px;
        overflow: visible !important;
        border: none !important;
        cursor: default;
    }

    .paid-service-card::before {
        display: none !important;
    }

    .paid-service-card:first-child {
        margin-left: 0;
    }

    .paid-service-card:last-child {
        margin-right: 1rem;
    }

    /* Slider Dots Indicator */
    .services-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
        padding: 0 1rem;
    }

    .services-slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .services-slider-dots .dot.active {
        background: var(--gold-primary);
        width: 24px;
        border-radius: 4px;
    }

    /* Note section - Compact subtle banner */
    .paid-services-note {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem;
        margin: 1.5rem 1rem 0;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(212, 175, 55, 0.2);
    }

    .paid-services-note .note-icon {
        display: none;
        /* Hide icon on mobile for cleaner look */
    }

    .paid-services-note .note-content h4 {
        font-size: 0.85rem;
        text-align: center;
        margin-bottom: 0.15rem;
        color: var(--gold-primary);
        font-weight: 600;
    }

    .paid-services-note .note-content p {
        font-size: 0.78rem;
        text-align: center;
        line-height: 1.4;
        color: var(--text-secondary);
        margin-bottom: 0.5rem;
    }

    .paid-services-note .btn-gold {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        border-radius: 25px;
    }
}

/* Hide all slider dots on larger screens */
@media (min-width: 641px) {

    .services-slider-dots,
    .results-slider-dots,
    .tutorials-slider-dots,
    .bento-slider-dots {
        display: none !important;
    }
}

/* ============================================
   BENTO GRID MOBILE SWIPE SLIDER - 640px and below
   ============================================ */
@media (max-width: 640px) {
    .bento-section {
        padding: 4rem 0;
        overflow: hidden;
    }

    .bento-section .container {
        padding: 0;
    }

    .bento-section .section-title {
        padding: 0 1rem;
    }

    .bento-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1rem;
        padding: 1rem 1rem 1.5rem;
        cursor: grab;
        grid-template-columns: unset;
        grid-auto-rows: unset;
    }

    .bento-grid::-webkit-scrollbar {
        display: none;
    }

    .bento-grid.dragging {
        cursor: grabbing;
    }

    .bento-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
        min-height: 200px;
    }

    .bento-card.card-large {
        grid-column: unset;
        grid-row: unset;
    }

    .bento-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding: 0 1rem;
    }

    .bento-slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .bento-slider-dots .dot.active {
        background: var(--gold-primary);
        width: 24px;
        border-radius: 4px;
    }
}

/* ============================================
   RESULTS MOBILE SWIPE SLIDER - 640px and below
   ============================================ */
@media (max-width: 640px) {
    .results-bento-section {
        padding: 4rem 0;
        overflow: hidden;
    }

    .results-bento-section .container {
        padding: 0;
    }

    .results-header {
        padding: 0 1rem;
        margin-bottom: 0.5rem;
    }

    .results-header .slider-nav,
    .slider-nav {
        display: none !important;
    }

    .results-slider-container {
        overflow: visible;
    }

    .results-slider-track {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1rem;
        padding: 1rem 1rem 1.5rem;
        cursor: grab;
        transform: none !important;
        /* Override JS transforms */
    }

    .results-slider-track::-webkit-scrollbar {
        display: none;
    }

    .results-slider-track.dragging {
        cursor: grabbing;
    }

    .result-bento-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
    }

    .results-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding: 0 1rem;
    }

    .results-slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .results-slider-dots .dot.active {
        background: var(--gold-primary);
        width: 24px;
        border-radius: 4px;
    }

    .results-slider-footer {
        padding: 0 1rem;
        margin-top: 1.5rem !important;
    }
}

/* ============================================
   TUTORIALS MOBILE SWIPE SLIDER - 640px and below
   ============================================ */
@media (max-width: 640px) {
    .tutorials-section {
        padding: 4rem 0;
        overflow: hidden;
    }

    .tutorials-section .container {
        padding: 0;
    }

    .tutorials-section .section-title,
    .tutorials-section .section-subtitle {
        padding: 0 1rem;
    }

    .tutorials-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        gap: 1rem;
        padding: 1rem 1rem 1.5rem;
        cursor: grab;
    }

    .tutorials-grid::-webkit-scrollbar {
        display: none;
    }

    .tutorials-grid.dragging {
        cursor: grabbing;
    }

    .tutorial-card {
        flex: 0 0 85%;
        min-width: 85%;
        scroll-snap-align: center;
    }

    .tutorials-slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 0.5rem;
        padding: 0 1rem;
    }

    .tutorials-slider-dots .dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(212, 175, 55, 0.3);
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        padding: 0;
    }

    .tutorials-slider-dots .dot.active {
        background: var(--gold-primary);
        width: 24px;
        border-radius: 4px;
    }
}