/* ==========================================================================
   KIOSK2U - DYNAMIC BLACK & GOLD CASINO TECH DESIGN SYSTEM (ENHANCED ANIMATIONS)
   ========================================================================== */

:root {
    /* Color Palette */
    --bg-dark: #07080c;
    --bg-card: rgba(18, 22, 31, 0.65);
    --bg-card-hover: rgba(28, 35, 50, 0.85);
    
    /* Gold Gradients & Accents */
    --gold-primary: #f5cf66;
    --gold-light: #ffe89e;
    --gold-dark: #b8860b;
    --gold-gradient: linear-gradient(135deg, #ffe28a 0%, #d4af37 50%, #aa7c11 100%);
    --gold-gradient-hover: linear-gradient(135deg, #fff0b3 0%, #e5c158 50%, #c49219 100%);
    
    /* Neon Accents */
    --cyan-accent: #00f2fe;
    --green-accent: #00e676;
    --whatsapp-green: #25d366;
    --telegram-blue: #0088cc;
    
    /* Text Colors */
    --text-main: #f0f4f8;
    --text-muted: #94a3b8;
    --text-gold: #f3ce63;
    
    /* Fonts */
    --font-heading: 'Outfit', 'Montserrat', sans-serif;
    --font-body: 'Montserrat', sans-serif;
    
    /* Layout & Transitions */
    --container-max: 1200px;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

/* Animated Canvas Background */
#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
}

.ambient-light {
    position: fixed;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(140px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.25;
    animation: floatAmbient 18s ease-in-out infinite alternate;
}

.light-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.6), transparent 70%);
}

.light-2 {
    bottom: -150px;
    right: -100px;
    background: radial-gradient(circle, rgba(0, 242, 254, 0.4), transparent 70%);
    animation-delay: -9s;
}

@keyframes floatAmbient {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, 80px) scale(1.2); }
    100% { transform: translate(-80px, 150px) scale(0.9); }
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography & Helpers */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.gold-gradient-text {
    background: var(--gold-gradient);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    animation: shineGold 6s linear infinite;
}

@keyframes shineGold {
    to { background-position: 200% center; }
}

.gold-text { color: var(--gold-primary); }
.green-text { color: var(--green-accent); }
.blue-text { color: var(--cyan-accent); }
.text-center { text-align: center; }

/* Scroll-triggered reveal animation classes */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: rotate(30deg) translateY(-100%);
    transition: transform 0.8s ease;
}

.btn:hover::after {
    transform: rotate(30deg) translateY(100%);
}

.btn-lg {
    padding: 16px 38px;
    font-size: 1.05rem;
}

.btn-gold {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.6);
}

.btn-glow {
    animation: pulseGlow 3s infinite alternate;
}

@keyframes pulseGlow {
    0% { box-shadow: 0 0 15px rgba(212, 175, 55, 0.4); }
    100% { box-shadow: 0 0 32px rgba(212, 175, 55, 0.8), 0 0 12px rgba(255, 232, 158, 0.6); }
}

.btn-outline {
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-main);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--gold-primary);
    transform: translateY(-3px);
    color: var(--gold-light);
}

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(212, 175, 55, 0.18);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: var(--transition);
    position: relative;
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

.section {
    padding: 100px 0;
    position: relative;
}

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

.section-title {
    font-size: 2.5rem;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

/* ==========================================================================
   HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(7, 8, 12, 0.94);
    backdrop-filter: blur(15px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
    letter-spacing: 1px;
}

.logo-k {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.2rem;
}

.b2b-badge {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    font-size: 0.65rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 6px;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gold-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-primary);
}

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

.header-btns {
    display: flex;
    gap: 12px;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.6rem;
    cursor: pointer;
}

/* Mobile Nav Overlay Backlayer */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    z-index: 998;
}

.nav-overlay.active {
    display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    padding-top: 170px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold-light);
    margin-bottom: 20px;
    animation: fadeIn 1s ease;
}

.hero-title {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hl-item {
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Device Showcase Float Animations */
.hero-media {
    position: relative;
}

.device-showcase {
    position: relative;
    display: flex;
    justify-content: center;
}

.desktop-mockup {
    width: 92%;
    padding: 15px;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, 0.35);
    background: rgba(12, 15, 22, 0.92);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9);
    animation: floatDesktop 6s ease-in-out infinite alternate;
}

@keyframes floatDesktop {
    0% { transform: translateY(0px); }
    100% { transform: translateY(-12px); }
}

.window-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.window-title { margin-left: 10px; font-size: 0.75rem; color: var(--text-muted); }

.mockup-header-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
}

.balance-badge {
    background: rgba(212, 175, 55, 0.15);
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.score-num { color: var(--gold-primary); font-weight: 800; }

.mockup-search-row { display: flex; gap: 10px; margin-bottom: 15px; }

.mockup-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.mockup-btn-ok {
    background: var(--gold-primary);
    color: #000;
    padding: 8px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 6px;
}

.quick-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 15px;
}

.stat-mini {
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    border-radius: 6px;
    font-size: 0.7rem;
    text-align: center;
}

.stat-mini span { display: block; color: var(--text-muted); }
.stat-mini strong { font-size: 0.85rem; }

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

.provider-pill {
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 4px;
    text-align: center;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--gold-light);
}

.phone-mockup {
    position: absolute;
    bottom: -35px;
    right: -10px;
    width: 215px;
    z-index: 10;
    animation: floatPhone 5s ease-in-out infinite alternate;
}

@keyframes floatPhone {
    0% { transform: translateY(0px) rotate(1deg); }
    100% { transform: translateY(-16px) rotate(-1deg); }
}

.phone-frame {
    background: #000;
    border: 3px solid rgba(212, 175, 55, 0.7);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.95);
}

.phone-screen-img {
    width: 100%;
    display: block;
}

.floating-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 15;
    animation: pulseBadge 3s infinite alternate;
}

@keyframes pulseBadge {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
}

.floating-badge i { font-size: 1.3rem; }
.floating-badge small { display: block; font-size: 0.7rem; color: var(--text-muted); }
.floating-badge strong { font-size: 0.85rem; color: #fff; }

.badge-1 { top: -20px; left: -50px; }
.badge-2 { bottom: 20px; left: -60px; }


/* ==========================================================================
   WHY CHOOSE KIOSK2U (SECTION 2)
   ========================================================================== */
.cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.card-feature {
    padding: 35px 25px;
    text-align: center;
}

.card-icon-wrapper {
    width: 65px;
    height: 65px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.card-feature:hover .card-icon-wrapper {
    transform: scale(1.15) rotate(10deg);
    background: rgba(212, 175, 55, 0.25);
    border-color: var(--gold-primary);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.card-emoji { font-size: 2rem; }

.card-feature h3 { font-size: 1.2rem; margin-bottom: 10px; }

.card-highlight {
    color: var(--gold-primary);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.card-desc { font-size: 0.85rem; color: var(--text-muted); }

/* ==========================================================================
   PROVIDERS & LOGOS (SECTION 3)
   ========================================================================== */
.providers-section {
    background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.06) 0%, transparent 75%);
}

.provider-banner-wrapper {
    max-width: 900px;
    margin: 0 auto 40px;
}

.provider-main-card {
    padding: 12px;
    overflow: hidden;
}

.provider-banner-img {
    width: 100%;
    border-radius: 14px;
    display: block;
    transition: transform 0.5s ease;
}

.provider-main-card:hover .provider-banner-img {
    transform: scale(1.02);
}

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

.logo-box {
    padding: 20px 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.logo-icon {
    font-size: 1.6rem;
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

.logo-box:hover .logo-icon {
    transform: scale(1.25);
}

.logo-name {
    font-weight: 700;
    font-size: 0.85rem;
}

.section-footer-note {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold-light);
}

/* ==========================================================================
   HOW IT WORKS (SECTION 4)
   ========================================================================== */
.steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.step-card {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
}

.step-num {
    display: inline-block;
    background: var(--gold-gradient);
    color: #000;
    font-weight: 800;
    font-size: 0.75rem;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.step-icon {
    font-size: 2.2rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon {
    transform: translateY(-5px) scale(1.1);
}

.step-card h3 { font-size: 1.1rem; margin-bottom: 10px; }
.step-card p { font-size: 0.85rem; color: var(--text-muted); }

.step-arrow {
    font-size: 1.4rem;
    color: var(--gold-primary);
    animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(6px); opacity: 1; }
}

/* ==========================================================================
   EVERYTHING YOU NEED (SECTION 5)
   ========================================================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 22px;
}

.check-icon {
    font-size: 1.4rem;
    color: var(--gold-primary);
    margin-top: 2px;
}

.feature-info h4 { font-size: 1.05rem; margin-bottom: 4px; }
.feature-info p { font-size: 0.8rem; color: var(--text-muted); }

/* ==========================================================================
   SERIOUS AGENTS BANNER (SECTION 6)
   ========================================================================== */
.serious-banner {
    padding: 65px 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(18, 22, 31, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.4);
    text-align: center;
}

.badge-gold {
    display: inline-block;
    color: var(--gold-primary);
    text-transform: uppercase;
    font-weight: 800;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.serious-banner h2 { font-size: 2.6rem; margin-bottom: 20px; }

.banner-desc {
    max-width: 800px;
    margin: 0 auto 35px;
    font-size: 1.15rem;
    line-height: 1.7;
    color: #e2e8f0;
}

/* ==========================================================================
   STATS SECTION (SECTION 7)
   ========================================================================== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.stat-card {
    padding: 30px 15px;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: var(--font-heading);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

/* ==========================================================================
   REAL SUPPORT / PROOF (SECTION 8)
   ========================================================================== */
.proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-top: 40px;
}

.proof-card { padding: 12px; display: flex; align-items: center; }

.proof-img-container { width: 100%; border-radius: 14px; overflow: hidden; }

.proof-img { width: 100%; display: block; }

.chat-widget-card {
    padding: 25px;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.chat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.chat-user { display: flex; align-items: center; gap: 12px; }

.avatar {
    width: 42px;
    height: 42px;
    background: var(--gold-gradient);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.user-details strong { display: block; font-size: 0.95rem; }
.online-status { font-size: 0.75rem; color: var(--text-muted); }

.chat-apps { display: flex; gap: 12px; font-size: 1.5rem; }
.whatsapp-color { color: var(--whatsapp-green); }
.telegram-color { color: var(--telegram-blue); }

.chat-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 0.88rem;
}

.msg-author {
    font-weight: 700;
    font-size: 0.75rem;
    margin-bottom: 4px;
    color: var(--gold-primary);
}

.msg-time {
    display: block;
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.5);
    text-align: right;
    margin-top: 4px;
}

.agent-msg {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.08);
    border-top-left-radius: 2px;
}

.support-msg {
    align-self: flex-end;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-top-right-radius: 2px;
}

.chat-connect-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    background: var(--whatsapp-green);
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: var(--transition);
}

.chat-connect-btn:hover {
    background: #1eb957;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
}

/* ==========================================================================
   FAQ SECTION (SECTION 9)
   ========================================================================== */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    color: var(--gold-primary);
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    max-height: 250px;
    padding-bottom: 22px;
}

/* ==========================================================================
   FINAL CTA (SECTION 10)
   ========================================================================== */
.cta-box {
    padding: 70px 40px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.22) 0%, rgba(18, 22, 31, 0.95) 80%);
    border: 1px solid var(--gold-primary);
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.3);
    border-radius: 24px;
}

.cta-sparkle {
    font-size: 2.5rem;
    color: var(--gold-primary);
    margin-bottom: 15px;
    animation: spinSparkle 8s linear infinite;
    display: inline-block;
}

@keyframes spinSparkle {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.cta-box h2 { font-size: 2.8rem; margin-bottom: 15px; }

.cta-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 35px;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #050608;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-links { display: flex; gap: 20px; }

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-primary); }

/* FLOATING MOBILE CONTACT BAR */
.floating-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(9, 10, 15, 0.95);
    backdrop-filter: blur(15px);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 12px 16px;
    z-index: 999;
    box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.8);
}

.mobile-bar-container {
    display: flex;
    gap: 12px;
}

.mobile-bar-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 10px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    text-align: center;
}


/* ==========================================================================
   RESPONSIVE DESIGN (OPTIMIZED FOR MOBILE & TABLETS)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-highlights { justify-content: center; }
    .hero-btns { justify-content: center; }
    .cards-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .logos-grid { grid-template-columns: repeat(4, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(3, 1fr); }
    .proof-grid { grid-template-columns: 1fr; }
    .steps-flow { flex-direction: column; gap: 10px; }
    .step-arrow { transform: rotate(90deg); margin: 5px 0; animation: pulseArrowMobile 2s infinite ease-in-out; }
    
    @keyframes pulseArrowMobile {
        0%, 100% { transform: rotate(90deg) translateY(0); opacity: 0.6; }
        50% { transform: rotate(90deg) translateY(6px); opacity: 1; }
    }
}

@media (max-width: 768px) {
    body { padding-bottom: 75px; } /* Space for mobile floating bar */
    .section { padding: 50px 0; }
    .container { padding: 0 16px; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(10, 12, 18, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        align-items: flex-start;
        padding: 90px 30px 40px;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.9);
        border-left: 1px solid rgba(212, 175, 55, 0.3);
    }
    
    .nav-menu.active { right: 0; }
    .mobile-toggle { display: block; z-index: 1000; }
    .header-btns { display: none; }
    
    /* Hero Section Mobile Overhaul */
    .hero { 
        padding-top: 90px; 
        padding-bottom: 30px; 
        text-align: center;
        overflow: hidden;
    }
    .hero-grid {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    .hero-content {
        width: 100%;
        max-width: 100%;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .trust-pill {
        font-size: 0.75rem;
        padding: 5px 14px;
        margin: 0 0 12px 0;
        display: inline-flex;
        align-items: center;
        gap: 6px;
    }
    .hero-title { 
        font-size: 1.65rem; 
        line-height: 1.25;
        margin-bottom: 12px;
        text-align: center;
    }
    .hero-subtitle { 
        font-size: 0.85rem; 
        line-height: 1.45;
        margin-bottom: 20px;
        color: #a0aec0;
        text-align: center;
    }
    .hero-highlights { 
        display: flex;
        flex-direction: column; 
        align-items: center;
        gap: 8px;
        margin-bottom: 22px;
        width: 100%;
    }
    .hl-item {
        justify-content: center;
        font-size: 0.8rem;
        padding: 8px 12px;
        background: rgba(212, 175, 55, 0.08);
        border: 1px solid rgba(212, 175, 55, 0.25);
        border-radius: 8px;
        width: 100%;
        max-width: 320px;
        box-sizing: border-box;
    }
    .hero-btns { 
        display: flex;
        flex-direction: column; 
        align-items: center;
        width: 100%; 
        gap: 10px;
    }
    .hero-btns .btn { 
        width: 100%; 
        max-width: 320px;
        padding: 12px 20px;
        font-size: 0.95rem;
        box-sizing: border-box;
    }
    .hero-media {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    /* Device Showcase Mobile Redesign */
    .hero-media {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    .device-showcase {
        width: 100%;
        max-width: 360px;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        position: relative;
    }
    .desktop-mockup { 
        width: 100%; 
        padding: 12px;
        border-radius: 14px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
        animation: none;
    }
    .mockup-header-bar {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .balance-badge {
        width: 100%;
        text-align: center;
    }
    .mockup-search-row {
        gap: 6px;
    }
    .mockup-input {
        font-size: 0.75rem;
    }
    .mockup-btn-ok {
        padding: 6px 14px;
    }
    .window-title { font-size: 0.65rem; }
    .quick-stats-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }
    .stat-mini {
        padding: 6px 2px;
        font-size: 0.62rem;
    }
    .stat-mini strong { font-size: 0.75rem; }

    /* Phone Mockup clean placement below desktop mockup */
    .phone-mockup {
        position: relative;
        bottom: 0;
        right: 0;
        width: 160px;
        margin: -25px auto 0;
        animation: floatPhone 4s ease-in-out infinite alternate;
        z-index: 10;
    }
    .phone-frame {
        border-width: 2px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.9);
    }
    .badge-1, .badge-2 { display: none; }

    /* Other Sections Mobile Adjustments */
    .cards-grid-4 { grid-template-columns: 1fr; }
    .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .logo-box { padding: 14px 6px; }
    .features-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    
    .serious-banner { padding: 35px 18px; }
    .serious-banner h2 { font-size: 1.75rem; }
    .cta-box { padding: 35px 18px; }
    .cta-box h2 { font-size: 1.8rem; }
    .cta-btns { flex-direction: column; width: 100%; }
    .cta-btns .btn { width: 100%; }

    /* Footer Mobile Overhaul */
    .footer {
        padding: 35px 0 20px;
        text-align: center;
        border-top: 1px solid rgba(212, 175, 55, 0.2);
    }
    .footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 22px;
        text-align: center;
    }
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .footer-brand p {
        font-size: 0.85rem;
        margin-top: 6px;
    }
    .footer-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px 20px;
    }
    .footer-links a {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--text-muted);
    }
    .footer-copy {
        font-size: 0.75rem;
        line-height: 1.5;
        opacity: 0.7;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
    }

    .floating-mobile-bar { display: block; }
}

@media (max-width: 480px) {
    .logos-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.7rem; }
    .stat-number { font-size: 1.85rem; }
}
