/* ==========================================================================
   PREMIUM SAAS-STYLE LANDING PAGE STYLESHEET
   Colors: #0B0B0B (Bg), #151515 (Surface), #F4B400 (Golden), #FF6B00 (Orange)
   ========================================================================== */

/* 1. DESIGN SYSTEM VARIABLES */
:root {
    --color-bg: #0B0B0B;
    --color-surface: #151515;
    --color-surface-card: #1C1C1C;
    --color-surface-hover: #242424;
    
    --color-gold: #F4B400;
    --color-gold-hover: #d39b00;
    --color-orange: #FF6B00;
    --color-orange-hover: #dd5c00;
    
    --color-white: #FFFFFF;
    --color-muted: #A5A5A5;
    --color-border: #2A2A2A;
    
    --gradient-primary: linear-gradient(135deg, var(--color-gold) 0%, var(--color-orange) 100%);
    --gradient-dark: linear-gradient(180deg, rgba(21,21,21,0.8) 0%, rgba(11,11,11,0.95) 100%);
    
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-medium: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    
    --shadow-premium: 0 10px 30px rgba(0, 0, 0, 0.6);
    --shadow-gold: 0 0 20px rgba(244, 180, 0, 0.2);
    
    --container-width: 1200px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: var(--color-bg);
    color: var(--color-white);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #222;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

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

button {
    font-family: inherit;
}

/* 3. LAYOUT UTILITIES */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.grid {
    display: grid;
    gap: 30px;
}

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

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

/* Section Headers */
.section-header {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--color-muted);
    max-width: 650px;
    margin: 0 auto;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* 4. PREMIUM BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition-medium);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1rem;
    border-radius: 10px;
}

.btn-small {
    padding: 8px 18px;
    font-size: 0.8rem;
}

.btn-gold {
    background: var(--gradient-primary);
    color: #000;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(244, 180, 0, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 180, 0, 0.35);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid #333;
}

.btn-outline:hover {
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-2px);
}

.icon-arrow {
    margin-left: 8px;
    transition: transform var(--transition-fast);
}

.btn:hover .icon-arrow {
    transform: translateX(4px);
}

/* 6. HERO SECTION */
.hero-section {
    position: relative;
    padding-top: 120px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-bg-overlay {
    position: absolute;
    top: -10%;
    right: -10%;
    width: 60%;
    height: 70%;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.06) 0%, rgba(255, 107, 0, 0.01) 60%, rgba(0,0,0,0) 100%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

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

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 180, 0, 0.06);
    border: 1px solid rgba(244, 180, 0, 0.15);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: var(--color-gold);
    border-radius: 50%;
    box-shadow: 0 0 0 var(--color-gold);
    animation: pulse 1.5s infinite;
}

.pulse-dot.green {
    background-color: #00E676;
    box-shadow: 0 0 0 rgba(0, 230, 118, 0.4);
    animation: pulseGreen 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 180, 0, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(244, 180, 0, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(244, 180, 0, 0); }
}

@keyframes pulseGreen {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(0, 230, 118, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 230, 118, 0); }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin: 0 auto 36px auto;
    max-width: 650px;
    line-height: 1.5;
}

.hero-ctas {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 48px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-icon {
    color: var(--color-gold);
    font-weight: bold;
}

.badge-text {
    font-size: 0.9rem;
    color: var(--color-muted);
}

.hero-visual {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: visible;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    transition: transform var(--transition-slow);
}

.hero-img-wrapper:hover .hero-img {
    transform: scale(1.02);
}

/* Floating widgets inside Hero (Removed for Ads Compliance) */

/* 6.5. TRANSPARENCY SECTION */
.transparency-section {
    padding: 120px 0;
    background-color: var(--color-surface);
}

.transparency-grid {
    margin-top: 20px;
}

@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
    100% { transform: translateY(0); }
}

/* 7. WHY US / FEATURES SECTION */
.why-play-section {
    padding: 120px 0;
    background-color: var(--color-bg);
}

.games-section {
    padding: 120px 0;
    background-color: var(--color-surface);
}

.why-card {
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border);
    padding: 40px 36px;
    border-radius: 16px;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(244,180,0,0.02) 0%, rgba(0,0,0,0) 100%);
    opacity: 0;
    transition: opacity var(--transition-medium);
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(244, 180, 0, 0.2);
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

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

.card-icon-wrapper {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition-fast);
}

.why-card:hover .card-icon-wrapper {
    background: rgba(244, 180, 0, 0.1);
    border-color: rgba(244, 180, 0, 0.2);
    transform: scale(1.05);
}

.why-card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.why-card-description {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 9. HOW IT WORKS SECTION */
.how-it-works-section {
    padding: 120px 0;
    background-color: var(--color-bg);
}

.steps-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 60px;
    position: relative;
}

.step-card {
    flex: 1;
    background-color: var(--color-surface-card);
    border: 1px solid var(--color-border);
    padding: 30px;
    border-radius: 16px;
    position: relative;
    transition: all var(--transition-medium);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 0, 0.25);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 16px;
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-description {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--color-border);
    align-self: center;
    margin: 0 10px;
    flex-shrink: 0;
}

/* 13. USER FEEDBACK SECTION */
.testimonials-section {
    padding: 120px 0;
    background-color: var(--color-surface);
}

.testimonials-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}

.testimonial-slider {
    position: relative;
    min-height: 240px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: all var(--transition-slow);
    text-align: center;
}

.testimonial-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    position: relative;
}

.stars {
    color: var(--color-gold);
    font-size: 1.4rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.t-text {
    font-size: 1.35rem;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
    color: #e2e2e2;
}

.avatar-author-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 28px;
}

.user-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #000;
    font-size: 1.15rem;
    font-family: var(--font-heading);
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.t-author {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    text-align: left;
}

.t-status {
    display: block;
    font-size: 0.8rem;
    color: var(--color-gold);
    font-weight: 600;
    text-transform: uppercase;
    text-align: left;
    margin-top: 2px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.slider-arrow {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    color: var(--color-white);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.slider-arrow:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: scale(1.05);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #333;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--color-gold);
    width: 20px;
    border-radius: 4px;
}

/* 14. FAQ SECTION */
.faq-section {
    padding: 120px 0;
    background-color: var(--color-bg);
}

.faq-container {
    max-width: 800px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.faq-item:hover {
    border-color: rgba(255,255,255,0.08);
}

.faq-trigger {
    width: 100%;
    background: transparent;
    border: none;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
}

.faq-icon {
    font-size: 1.3rem;
    color: var(--color-gold);
    transition: transform var(--transition-medium);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-medium) ease-out;
}

.faq-content p {
    padding: 0 24px 24px;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-item.active .faq-content {
    max-height: 200px;
    transition: max-height var(--transition-medium) ease-in;
}

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

.faq-item.active {
    border-color: rgba(244,180,0,0.2);
}

/* 15. FINAL CTA SECTION */
.final-cta-section {
    padding: 140px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--color-bg);
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(244, 180, 0, 0.05) 0%, rgba(255, 107, 0, 0.01) 60%, rgba(0,0,0,0) 100%);
    filter: blur(60px);
    pointer-events: none;
}

.cta-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.final-cta-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: var(--color-muted);
    margin-bottom: 40px;
}

.final-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}



/* 17. CONVERSION WIDGETS */

/* Floating CTA */
.floating-cta-card {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 320px;
    background: rgba(21, 21, 21, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(244, 180, 0, 0.25);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.6);
    z-index: 90;
    transform: translateY(150px);
    opacity: 0;
    transition: all var(--transition-slow);
}

.floating-cta-card.show {
    transform: translateY(0);
    opacity: 1;
}

.close-floating-cta {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: var(--color-muted);
    font-size: 1.2rem;
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-floating-cta:hover {
    color: var(--color-white);
}

.floating-badge {
    display: inline-block;
    background: rgba(255, 107, 0, 0.15);
    color: var(--color-orange);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.floating-cta-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.floating-cta-card p {
    font-size: 0.85rem;
    color: var(--color-muted);
    line-height: 1.4;
    margin-bottom: 12px;
}

/* Mobile Sticky Bar */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(21, 21, 21, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(244, 180, 0, 0.2);
    padding: 12px 20px;
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 89;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
    transform: translateY(100%);
    transition: transform var(--transition-medium);
}

.mobile-sticky-bar.show {
    transform: translateY(0);
}

.sticky-bar-text {
    display: flex;
    flex-direction: column;
}

.sticky-bar-text strong {
    font-size: 0.85rem;
    color: var(--color-white);
}

.sticky-bar-text span {
    font-size: 0.75rem;
    color: var(--color-gold);
    font-weight: 600;
}

/* 18. GLOWING AND PREMIUM HIGHLIGHT EFFECTS */
.glow-border {
    position: relative;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    background: linear-gradient(135deg, rgba(255,107,0,0.3) 0%, rgba(244,180,0,0.15) 50%, rgba(0,0,0,0) 100%);
    border-radius: 17px;
    z-index: -1;
    pointer-events: none;
}

/* Custom Interactive Cursor Glow */
.cursor-glow {
    position: fixed;
    top: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(244,180,0,0.035) 0%, rgba(0,0,0,0) 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

body:hover .cursor-glow {
    opacity: 1;
}

/* Scroll Animation Trigger Class */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* 18. COMPLIANT FOOTER */
.main-footer {
    background-color: var(--color-bg);
    border-top: 1px solid var(--color-border);
    padding: 80px 0 30px;
    font-size: 0.9rem;
    color: var(--color-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-about .logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    display: inline-block;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-about .logo span {
    color: var(--color-gold);
}

.footer-about-text {
    line-height: 1.6;
    max-width: 400px;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-white);
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-link-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link-group a {
    color: var(--color-muted);
    transition: color var(--transition-fast);
    display: inline-block;
}

.footer-link-group a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid var(--color-border);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-copyright {
    text-align: center;
    font-size: 0.85rem;
}

/* ==========================================================================
   19. RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablets / Medium Desktops (up to 1024px) */
@media (max-width: 1024px) {
    .section-title { font-size: 2.4rem; }
    .hero-title { font-size: 3.2rem; }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 600px;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .hero-badges {
        justify-content: center;
    }
    
    .hero-visual {
        max-width: 650px;
        margin: 0 auto;
        width: 100%;
    }
    
    .why-grid, .transparency-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-timeline {
        gap: 20px;
    }
}

/* Small Tablets / Mobiles (up to 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }
    
    .hero-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    .section-title { font-size: 2rem; }
    .hero-title { font-size: 2.5rem; }
    
    .hero-ctas {
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        margin: 0 0 36px 0 !important;
        gap: 12px !important;
    }
    
    .hero-ctas .btn {
        width: 100% !important;
        display: inline-flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    .hero-badges {
        justify-content: center;
        gap: 16px 20px;
        max-width: 340px;
        margin: 0 auto;
    }
    
    .nav-links, .header-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .why-grid, .transparency-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-timeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .step-line {
        width: 2px;
        height: 30px;
        align-self: center;
        margin: 10px 0;
    }
    
    .final-cta-title { font-size: 2.2rem; }
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    .final-cta-buttons .btn {
        width: 100%;
        max-width: 320px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-copyright {
        flex-direction: column;
        text-align: center;
    }
    
    /* Show mobile sticky bar */
    .mobile-sticky-bar {
        display: flex;
    }
    
    /* Adjust floating CTA card position for mobile */
    .floating-cta-card {
        bottom: 80px; /* Offset above sticky footer */
        right: 20px;
        left: 20px;
        width: calc(100% - 40px);
    }
}
