:root {
    --bg-dark: #000000; 
    --primary: #ff6a00;
    --primary-glow: rgba(255, 106, 0, 0.4);
    --secondary-glow: rgba(147, 51, 234, 0.2);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-bg: rgba(255, 255, 255, 0.04);
}
/* --- GLOBAL STYLE & FONT OPTIMIZATION --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Outfit', sans-serif; -webkit-tap-highlight-color: transparent !important; outline: none !important; }
html { scroll-behavior: smooth; overflow-x: hidden; }        
body { 
    background-color: var(--bg-dark); 
    color: var(--text-main); 
    overflow-x: hidden; 
    min-height: 100vh; 
    position: relative; 
    width: 100%; 
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}        
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }

/* --- BRANDING COLORS --- */
.brand-zil { color: #ffffff; font-weight: inherit; }
.brand-fox { color: var(--primary); font-weight: inherit; }
.fox-text { color: var(--primary); font-weight: inherit; }

/* --- NAVBAR --- */
header { position: fixed; top: 20px; width: 100%; display: flex; justify-content: center; z-index: 2000; padding: 0 5%; transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease; }
header.nav-hidden { transform: translateY(-150%); opacity: 0; }
.navbar { width: 100%; max-width: 1100px; height: 75px; background: rgba(10, 10, 10, 0.8); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 100px; display: flex; justify-content: space-between; align-items: center; padding: 0 35px; box-shadow: 0 10px 30px rgba(0,0,0,0.8); }
.logo img { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--primary); transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1); filter: drop-shadow(0 0 10px var(--primary-glow)); }
.logo img:hover { transform: scale(1.2) rotate(15deg); filter: drop-shadow(0 0 20px var(--primary)); }
.nav-links { display: flex; gap: 35px; align-items: center; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-weight: 500; transition: 0.4s; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; position: relative; }
.nav-links a:hover { color: #fff; }
.nav-contact-btn { background: var(--primary); color: #000 !important; padding: 10px 22px; border-radius: 50px; font-weight: 700 !important; transition: all 0.4s ease; }
.nav-contact-btn:hover { box-shadow: 0 0 20px var(--primary), 0 0 40px var(--primary-glow); transform: scale(1.05); color: #fff !important; }
.mobile-toggle { display: none; color: #fff; font-size: 1.5rem; cursor: pointer; -webkit-tap-highlight-color: transparent; }

/* --- HERO SECTION --- */
.hero { min-height: 85vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; margin-top: 50px; }
.hero h1 { font-size: clamp(2.8rem, 8vw, 5.5rem); font-weight: 800; letter-spacing: -2px; line-height: 1.1; margin-bottom: 25px; }
.hero-description { color: var(--text-muted); font-size: clamp(1rem, 2.5vw, 1.15rem); max-width: 600px; line-height: 1.6; font-weight: 400; margin-bottom: 40px; }
.btn { display: inline-block; background: var(--primary); color: #000; padding: 18px 45px; font-size: 1.1rem; text-decoration: none; font-weight: 700; border-radius: 50px; transition: 0.3s; box-shadow: 0 10px 30px var(--primary-glow); border: none; cursor: pointer;}
.btn:hover { transform: translateY(-3px); box-shadow: 0 15px 40px var(--primary-glow); }
.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); box-shadow: none; padding: 12px 35px; font-size: 1rem;}
.btn-outline:hover { background: var(--primary); color: #000; box-shadow: 0 10px 25px var(--primary-glow); }

/* --- STATS SECTION --- */
.stats-section { padding: 40px 20px 80px 20px; width: 100%; text-align: center; max-width: 1000px; margin: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; }
.stat-box { background: var(--glass-bg); padding: 30px 20px; border-radius: 25px; border: 1px solid var(--glass-border); backdrop-filter: blur(10px); transition: 0.3s; }
.stat-box:hover { border-color: var(--primary); transform: translateY(-5px); }
.stat-number-wrapper { display: flex; justify-content: center; align-items: baseline; color: var(--text-main); font-size: 3rem; font-weight: 800; margin-bottom: 5px; }
.stat-box .plus { color: var(--primary); margin-left: 5px; }
.stat-box p { color: var(--text-muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 500; }        
.section { padding: 100px 20px; width: 100%; text-align: center; max-width: 1200px; margin: auto; }
.section-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 20px; }
.section-subtitle { color: var(--text-muted); font-size: 1.1rem; max-width: 650px; margin: 0 auto 60px; line-height: 1.6; }        

/* --- HOMEPAGE FEATURED CARDS --- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin-bottom: 40px; }
.service-link { text-decoration: none; color: inherit; display: block; -webkit-tap-highlight-color: transparent; }
.card { background: var(--glass-bg); padding: 40px 30px; border-radius: 25px; border: 1px solid var(--glass-border); transition: 0.5s; backdrop-filter: blur(15px); text-align: left; position: relative; overflow: hidden; height: 100%; cursor: pointer; }
.card:hover { transform: translateY(-10px); border-color: var(--primary); background: rgba(255, 255, 255, 0.08); box-shadow: 0 20px 40px rgba(255, 106, 0, 0.15); }
.card h3 { font-size: 1.3rem; margin-bottom: 15px; color: #fff; display: flex; align-items: center; gap: 10px; }
.card h3 i { color: var(--primary); font-size: 1.5rem; }
.card p { color: var(--text-muted); line-height: 1.6; font-size: 0.95rem; margin-bottom: 20px; }
.learn-more { color: var(--primary); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; display: flex; align-items: center; gap: 8px; }
.learn-more i { transition: 0.3s; }
.card:hover .learn-more i { transform: translateX(5px); }
.popular { position: absolute; top: 15px; right: -35px; background: var(--primary); color: #000; padding: 8px 40px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; transform: rotate(45deg); box-shadow: 0 0 20px var(--primary-glow); }

.btn-view-all { display: inline-flex; align-items: center; gap: 10px; background: transparent; border: 2px solid var(--primary); color: #fff; padding: 16px 40px; font-size: 1.05rem; text-decoration: none; font-weight: 700; border-radius: 50px; transition: 0.4s; }
.btn-view-all:hover { background: var(--primary); color: #000; box-shadow: 0 10px 30px var(--primary-glow); transform: translateY(-3px); }

/* --- THE PROCESS GRID --- */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; position: relative; }
.process-card { background: rgba(255,255,255,0.02); border: 1px dashed var(--glass-border); padding: 40px 25px; border-radius: 25px; text-align: center; position: relative; z-index: 2; transition: 0.4s; }
.process-card:hover { border-style: solid; border-color: var(--primary); background: var(--glass-bg); transform: translateY(-5px); }
.step-number { position: absolute; top: -15px; left: 50%; transform: translateX(-50%); width: 40px; height: 40px; background: var(--primary); color: #000; font-weight: 800; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; box-shadow: 0 5px 15px var(--primary-glow); }
.process-card h3 { margin: 30px 0 15px; font-size: 1.3rem; color: #fff; }
.process-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* --- PLATFORM GRID --- */
.platform-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.platform-card { background: var(--glass-bg); padding: 45px 30px; border-radius: 35px; border: 1px solid var(--glass-border); text-align: center; backdrop-filter: blur(12px); transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); position: relative; overflow: hidden; }
.platform-card::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 100px; height: 100px; background: var(--primary); filter: blur(60px); opacity: 0; transition: 0.5s; z-index: -1; }
.platform-card:hover { transform: translateY(-15px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(255, 106, 0, 0.15); }
.platform-card:hover::before { opacity: 0.5; }
.platform-icon { font-size: 3.5rem; margin-bottom: 25px; transition: 0.4s; display: inline-block; }
.platform-card:hover .platform-icon { transform: scale(1.15) rotate(5deg); }
.platform-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 12px; font-weight: 700; }
.platform-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }
.google-color { color: #4285F4; }
.youtube-color { color: #FF0000; }
.meta-color { color: #0668E1; }
.linkedin-color { color: #0A66C2; }
.tiktok-color { color: #ffffff; text-shadow: 3px 3px 0 #00f2fe, -3px -3px 0 #fe0979; }
.analytics-color { color: #F4B400; }
.notice-box { background: rgba(255, 106, 0, 0.08); border-left: 3px solid var(--primary); padding: 15px; margin-top: 20px; border-radius: 8px; text-align: left; }
.notice-title { color: #fff; font-size: 0.85rem; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.notice-title i { color: var(--primary); }
.notice-text { color: #d4d4d8 !important; font-size: 0.85rem !important; line-height: 1.5 !important; margin: 0 !important; font-weight: 400; }

/* --- WHY CHOOSE US --- */
.growth-system-box { background: var(--glass-bg); border: 1px solid var(--glass-border); border-radius: 30px; padding: 50px; text-align: left; }
.growth-system-box h3 { font-size: 2rem; color: #fff; margin-bottom: 20px; font-weight: 800; }
.growth-system-box p.lead-text { color: var(--text-muted); font-size: 1.1rem; margin-bottom: 30px; line-height: 1.6; }
.growth-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.growth-list h4 { color: var(--primary); font-size: 1.2rem; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 1px; }
.growth-list ul { list-style: none; padding: 0; }
.growth-list ul li { color: #d4d4d8; font-size: 1rem; margin-bottom: 15px; display: flex; align-items: center; gap: 12px; }
.growth-list ul li i { color: #4ade80; font-size: 1.1rem; }

/* --- CASE STUDIES --- */
.case-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 25px; }
.case-card { background: var(--glass-bg); padding: 40px; border-radius: 35px; border: 1px solid var(--glass-border); text-align: left; transition: 0.5s; position: relative; overflow: hidden; }
.case-card:hover { border-color: var(--primary); transform: translateY(-10px); }
.case-card .tag { background: rgba(255, 106, 0, 0.1); color: var(--primary); padding: 6px 15px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; }
.case-card h3 { margin: 20px 0 15px; font-size: 1.5rem; color: #fff; }
.case-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.case-stats { display: flex; gap: 20px; border-top: 1px solid var(--glass-border); padding-top: 20px; }
.stat-item span { display: block; color: var(--primary); font-size: 1.4rem; font-weight: 800; }
.stat-item small { color: var(--text-muted); font-size: 0.7rem; text-transform: uppercase; }        

/* --- TESTIMONIALS FIX --- */
.testimonial-section { width: 100%; padding: 100px 0; overflow: hidden; text-align: center; background: rgba(255,255,255,0.01); border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); }
.slider-container { width: 100%; overflow: hidden; padding: 40px 0; cursor: grab; }
.testimonial-slider { display: flex; width: max-content; gap: 30px; padding: 0 20px; animation: scrollSlider 50s linear infinite; }
.testimonial-slider:hover { animation-play-state: paused; }
@keyframes scrollSlider { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.testimonial-card { background: var(--glass-bg); padding: 40px; border-radius: 30px; border: 1px solid var(--glass-border); text-align: left; width: 380px; flex-shrink: 0; backdrop-filter: blur(10px); transition: 0.4s; }
.testimonial-card:hover { border-color: var(--primary); transform: scale(1.02); }
.testimonial-card i { color: var(--primary); font-size: 1.5rem; margin-bottom: 20px; opacity: 0.5; }
.testimonial-card p { color: var(--text-muted); font-style: italic; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }
.author-meta { display: flex; align-items: center; gap: 15px; }
.author-photo { width: 50px; height: 50px; border-radius: 50%; border: 2px solid var(--glass-border); object-fit: cover; background-color: rgba(255,255,255,0.05); }
.testimonial-card:hover .author-photo { border-color: var(--primary); }
.author span { color: #fff; font-weight: 700; display: block; }
.author small { color: var(--primary); font-weight: 500; font-size: 0.75rem; text-transform: uppercase; }        

/* --- GLOBAL FOOTPRINT --- */
.country-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-top: 20px; }
.country-card { background: var(--glass-bg); padding: 50px 40px; border-radius: 35px; border: 1px solid var(--glass-border); transition: 0.5s; cursor: pointer; }
.country-card:hover { border-color: var(--primary); transform: translateY(-10px); }
.country-card img { width: 60px; border-radius: 8px; margin-bottom: 20px; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.country-card h3 { color: #fff; font-size: 1.6rem; margin-bottom: 10px; }
.country-card p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }        

/* --- STATIC HOOK --- */
.static-hook { padding: 100px 20px; text-align: center; border-top: 1px solid var(--glass-border); }
.static-hook h2 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; margin-bottom: 30px; }

/* --- MASTER FOOTER --- */
.footer { padding: 100px 20px 40px 20px; border-top: 1px solid var(--glass-border); background: linear-gradient(to top, rgba(255, 106, 0, 0.05), transparent); overflow-x: auto; }
.footer-container { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 60px; text-align: left; max-width: 1200px; margin: auto; }
.logo-wrapper { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }
.footer-logo { width: 60px; height: 60px; border-radius: 50%; z-index: 2; border: 2px solid var(--primary); }
.rotating-ring { position: absolute; width: 100%; height: 100%; border: 2px solid transparent; border-top: 2px solid var(--primary); border-right: 2px solid var(--primary); border-radius: 50%; animation: rotateRing 4s linear infinite; }
@keyframes rotateRing { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.footer-column h4 { color: #fff; margin-bottom: 25px; text-transform: uppercase; letter-spacing: 2px; font-size: 1rem; position: relative; }
.footer-column h4::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 30px; height: 2px; background: var(--primary); }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 15px; }
.footer-column ul li a { color: var(--text-muted); text-decoration: none; transition: 0.3s; font-size: 0.95rem; }
.footer-column ul li a:hover { color: var(--primary); padding-left: 5px; }
.social-icons-box { display: flex; gap: 15px; }
.social-circle { width: 45px; height: 45px; background: rgba(255,255,255,0.05); border: 1px solid var(--glass-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; text-decoration: none; transition: 0.4s; }
.social-circle:hover { background: var(--primary); color: #000; transform: translateY(-5px); }
.footer-contact-links { margin-top: 25px; display: flex; flex-direction: column; gap: 12px; }
.footer-contact-links a { color: var(--text-muted); text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: 0.3s; display: flex; align-items: center; gap: 10px; }
.footer-contact-links a:hover { color: var(--primary); }
.footer-contact-links a i { color: var(--primary); }
.footer-bottom { padding-top: 40px; border-top: 1px solid var(--glass-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; margin-top: 60px; gap: 20px; }        

/* --- ELITE SMART AI BOT CSS --- */
#zilfox-bot-wrapper { position: fixed; bottom: 30px; right: 30px; z-index: 9999; display: flex; align-items: center; gap: 15px; }
@keyframes floatBot {
    0% { transform: translateY(0px); box-shadow: 0 0 20px rgba(255, 106, 0, 0.4), inset 0 0 10px rgba(255, 106, 0, 0.2); }
    50% { transform: translateY(-10px); box-shadow: 0 0 35px rgba(255, 106, 0, 0.7), inset 0 0 15px rgba(255, 106, 0, 0.4); }
    100% { transform: translateY(0px); box-shadow: 0 0 20px rgba(255, 106, 0, 0.4), inset 0 0 10px rgba(255, 106, 0, 0.2); }
}        
#zilfox-bot-icon { width: 65px; height: 65px; background: rgba(12, 13, 20, 0.9); backdrop-filter: blur(10px); border: 2px solid var(--primary); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; cursor: pointer; position: relative; z-index: 2; animation: floatBot 3.5s ease-in-out infinite; transition: all 0.3s ease; }
#zilfox-bot-icon:hover { background: var(--primary); color: #000; transform: scale(1.05); }
#zilfox-bot-window { display: none; width: 380px; background: rgba(12, 13, 20, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255, 106, 0, 0.3); border-radius: 20px; position: absolute; bottom: 85px; right: 0; box-shadow: 0 20px 50px rgba(0,0,0,0.9); overflow: hidden; flex-direction: column; font-family: 'Outfit', sans-serif; transition: border-color 0.4s ease, box-shadow 0.4s ease; }
#zilfox-bot-window.bot-typing-active { border-color: var(--primary); box-shadow: 0 0 30px var(--primary-glow), 0 20px 50px rgba(0,0,0,0.9); }
.bot-header { background: linear-gradient(90deg, rgba(15,15,20,0.6) 0%, rgba(30,15,5,0.6) 100%); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 18px 25px; display: flex; justify-content: space-between; align-items: center; color: #fff; }
.bot-header-left { display: flex; align-items: center; gap: 12px; }
.bot-avatar { width: 35px; height: 35px; background: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #000; font-size: 1.1rem; box-shadow: 0 0 10px var(--primary-glow); }
.bot-header-title { display: flex; flex-direction: column; }
.bot-header h4 { margin:0; font-size: 1rem; font-weight: 700; letter-spacing: 0.5px; }
.bot-status { font-size: 0.7rem; color: #4ade80; display: flex; align-items: center; gap: 5px; font-weight: 500; }
.bot-status::before { content: ""; width: 6px; height: 6px; background: #4ade80; border-radius: 50%; display: inline-block; box-shadow: 0 0 8px #4ade80; }
.bot-header .fa-times { cursor: pointer; color: var(--text-muted); transition: 0.3s; font-size: 1.2rem; }
.bot-header .fa-times:hover { color: #fff; transform: rotate(90deg); }        
.bot-messages { padding: 25px 20px; height: 360px; overflow-y: auto; display: flex; flex-direction: column; gap: 15px; font-size: 0.95rem; scroll-behavior: smooth;}
.bot-messages::-webkit-scrollbar { width: 4px; }
.bot-messages::-webkit-scrollbar-thumb { background: rgba(255,106,0,0.3); border-radius: 10px; }
.bot-msg-container { display: flex; gap: 10px; align-items: flex-end; align-self: flex-start; max-width: 90%; }
.bot-mini-avatar { width: 25px; height: 25px; background: rgba(255,106,0,0.1); color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.7rem; border: 1px solid rgba(255,106,0,0.2); flex-shrink: 0; }
.bot-msg { background: rgba(255,255,255,0.05); color: #e4e4e7; padding: 14px 18px; border-radius: 18px 18px 18px 4px; border: 1px solid rgba(255,255,255,0.05); line-height: 1.6; word-wrap: break-word; font-weight: 300; }
.bot-msg strong { color: #fff; font-weight: 600; }
.user-msg { background: linear-gradient(135deg, rgba(255,106,0,0.15) 0%, rgba(255,106,0,0.05) 100%); color: #fff; padding: 12px 18px; border-radius: 18px 18px 4px 18px; align-self: flex-end; max-width: 85%; border: 1px solid rgba(255,106,0,0.2); word-wrap: break-word; font-weight: 400; }        

/* --- NAYA BUTTON CSS YAHAN ADD KIYA HAI --- */
.bot-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 20px;
    background: rgba(255, 106, 0, 0.1);
    color: var(--primary) !important;
    border: 1px solid rgba(255, 106, 0, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.bot-cta-btn:hover {
    background: var(--primary);
    color: #000 !important;
    box-shadow: 0 5px 15px var(--primary-glow);
    transform: translateY(-2px);
}
.bot-faq-options { padding: 0 20px 15px 20px; display: flex; flex-wrap: wrap; gap: 6px; transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1); transform-origin: bottom center; }
.bot-faq-options.hidden-options { opacity: 0; transform: scale(0.9); pointer-events: none; height: 0; padding: 0 20px; overflow: hidden; margin-top: -10px; }
.bot-faq-btn { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); color: var(--text-muted); padding: 7px 12px; border-radius: 50px; font-size: 0.75rem; cursor: pointer; transition: 0.3s; font-family: inherit; }
.bot-faq-btn:hover { background: rgba(255,106,0,0.1); color: #fff; border-color: var(--primary); }
.bot-input-area { padding: 15px 20px; border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 12px; align-items: center; background: rgba(0,0,0,0.4); z-index: 5; }
.bot-input-area input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #fff; outline: none; font-size: 0.95rem; padding: 12px 15px; border-radius: 50px; transition: 0.3s; font-family: inherit; }
.bot-input-area input:focus { border-color: rgba(255,106,0,0.5); background: rgba(255,255,255,0.08); }
.bot-input-area input::placeholder { color: #71717a; font-weight: 300; }
.bot-send-btn { width: 40px; height: 40px; border-radius: 50%; background: var(--primary); border: none; color: #000; font-size: 1rem; cursor: pointer; transition: 0.3s; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.bot-send-btn:hover { transform: scale(1.1); box-shadow: 0 0 15px var(--primary-glow); }        
.typing-indicator { display: none; align-items: center; gap: 4px; padding: 10px 20px 15px; }
.dot { width: 6px; height: 6px; background: var(--text-muted); border-radius: 50%; animation: typing 1.4s infinite ease-in-out both; }
.dot:nth-child(1) { animation-delay: -0.32s; }
.dot:nth-child(2) { animation-delay: -0.16s; }
@keyframes typing { 0%, 80%, 100% { transform: scale(0); } 40% { transform: scale(1); background: var(--primary); } }
.fade-in { animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(15px); } to { opacity: 1; transform: translateY(0); } }

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 768px) {
    .section { padding: 60px 15px; }
    .hero { margin-top: 80px; min-height: 70vh; padding: 0 15px; }
    .stats-section { padding: 20px 15px 60px 15px; }
    .testimonial-section { padding: 60px 0; }
    .footer { padding: 60px 15px 30px 15px; }
    .mobile-toggle { display: block; }
    .nav-links { position: fixed; top: 80px; left: 15px; right: 15px; background: rgba(10,10,10,0.98); flex-direction: column; padding: 40px; border-radius: 25px; border: 1px solid var(--glass-border); transform: translateY(-150%); opacity: 0; transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1); }
    .nav-links.active { transform: translateY(0); opacity: 1; }                
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .logo-wrapper { margin: 0 auto; }
    .footer-column h4::after { left: 50%; transform: translateX(-50%); }
    .social-icons-box { justify-content: center; }
    .footer-contact-links a { justify-content: center; }
    .footer-bottom { justify-content: center; text-align: center; }
    .testimonial-card { width: 300px; padding: 30px; margin: 0; }
    #zilfox-bot-wrapper { bottom: 20px; right: 20px; gap: 10px; }
    #zilfox-bot-window { width: calc(100vw - 40px); right: 0; bottom: 75px; }
}