*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
:root {
  --bg: #050816;
  --bg2: #080e24;
  --green: #10b981;
  --green-dark: #059669;
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --text: #e2e8f0;
  --text-muted: #94a3b8;
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(255,255,255,0.1);
}
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #0a0a0a; }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
body { background: var(--bg); color: var(--text); font-family: 'Inter', system-ui, sans-serif; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.text-center { text-align: center; }
.mt-12 { margin-top: 3rem; }

/* Utilities */
.glass { background: var(--glass); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid var(--glass-border); }
.gradient-text { background: linear-gradient(135deg, #10b981 0%, #3b82f6 50%, #8b5cf6 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.grid-overlay { position: absolute; inset: 0; background-image: linear-gradient(rgba(16,185,129,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(16,185,129,0.05) 1px, transparent 1px); background-size: 60px 60px; pointer-events: none; }
.opacity-20 { opacity: 0.2; }
.opacity-15 { opacity: 0.15; }
.text-green { color: var(--green); }
.text-blue { color: var(--blue); }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes float { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-10px); } }
@keyframes pulse-ring { 0%{ box-shadow:0 0 0 0 rgba(37,211,102,.6); } 70%{ box-shadow:0 0 0 14px rgba(37,211,102,0); } 100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); } }
@keyframes gradShift { 0%,100%{ background-position:0 50%; } 50%{ background-position:100% 50%; } }
@keyframes blink { 0%,100%{ opacity:1; } 50%{ opacity:.3; } }
.fade-in-up { opacity: 0; animation: fadeInUp 0.7s ease forwards; }

/* Buttons */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.75rem 1.75rem; background: linear-gradient(135deg, #10b981, #059669); color: white; font-weight: 700; border-radius: 0.75rem; text-decoration: none; font-size: 0.95rem; transition: all 0.2s ease; box-shadow: 0 0 20px rgba(16,185,129,0.3); border: none; cursor: pointer; }
.btn-primary:hover { background: linear-gradient(135deg, #34d399, #10b981); transform: translateY(-1px); box-shadow: 0 0 30px rgba(16,185,129,0.5); }
.btn-ghost { display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem; padding: 0.75rem 1.75rem; background: var(--glass); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.2); color: white; font-weight: 600; border-radius: 0.75rem; text-decoration: none; font-size: 0.95rem; transition: all 0.2s ease; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(16,185,129,0.5); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.1rem; border-radius: 0.875rem; }
.btn-xl { padding: 1.25rem 3rem; font-size: 1.25rem; border-radius: 1rem; }
.btn-full { width: 100%; }

/* Badge */
.badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; border-radius: 9999px; font-size: 0.8rem; font-weight: 500; background: var(--glass); backdrop-filter: blur(8px); }
.badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); animation: blink 2s ease infinite; }
.badge-blue { border: 1px solid rgba(59,130,246,0.3); color: #60a5fa; }
.badge-purple { border: 1px solid rgba(139,92,246,0.3); color: #a78bfa; }
.badge-orange { border: 1px solid rgba(249,115,22,0.3); color: #fb923c; }
.badge-yellow { border: 1px solid rgba(234,179,8,0.3); color: #facc15; }
.badge-green { border: 1px solid rgba(16,185,129,0.3); color: #34d399; }

/* NAVBAR */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 0; transition: all 0.3s ease; }
.navbar.scrolled { background: rgba(5,8,22,0.85); backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); padding: 0.75rem 0; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon { width: 32px; height: 32px; border-radius: 8px; background: linear-gradient(135deg, #34d399, #10b981); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 15px rgba(16,185,129,0.4); }
.logo span { font-size: 1.25rem; font-weight: 800; }
.logo-web { color: white; }
.logo-factory { background: linear-gradient(135deg, #10b981, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.logo-rd { color: #34d399; }
.nav-links { list-style: none; display: flex; gap: 2rem; }
.nav-link { color: #94a3b8; text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.nav-link:hover { color: var(--green); }
.nav-cta { white-space: nowrap; }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.mobile-toggle span { display: block; width: 22px; height: 2px; background: white; border-radius: 1px; transition: all 0.2s; }
@media(max-width:768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(5,8,22,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid var(--glass-border); padding: 1.5rem; flex-direction: column; gap: 1rem; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
}

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; background: linear-gradient(-45deg, #050816, #0d1b2a, #0a1628, #050816); background-size: 400% 400%; animation: gradShift 12s ease infinite; }
.hero-bg { position: absolute; inset: 0; }
.orb-1 { width: 400px; height: 400px; background: rgba(16,185,129,0.08); top: 10%; left: 5%; animation: float 6s ease-in-out infinite; }
.orb-2 { width: 320px; height: 320px; background: rgba(139,92,246,0.08); bottom: 10%; right: 5%; animation: float 8s ease-in-out infinite reverse; }
.hero-content { position: relative; z-index: 2; text-align: center; padding-top: 6rem; padding-bottom: 4rem; }
.hero-title { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.02em; color: white; margin: 1.5rem 0; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.25rem); color: #94a3b8; max-width: 640px; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; max-width: 800px; margin: 0 auto; }
@media(min-width:640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat-card { border-radius: 1rem; padding: 1.25rem; text-align: center; transition: all 0.3s ease; }
.stat-card:hover { transform: translateY(-4px); border-color: rgba(16,185,129,0.3); }
.stat-icon { width: 40px; height: 40px; border-radius: 8px; background: rgba(16,185,129,0.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.stat-value { font-size: 1.75rem; font-weight: 800; color: white; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.7rem; color: #64748b; }
.tech-stack { margin-top: 3rem; }
.tech-label { color: #475569; font-size: 0.8rem; margin-bottom: 1rem; }
.tech-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; opacity: 0.6; }
.tech-tag { font-size: 0.75rem; color: #94a3b8; font-weight: 500; padding: 0.25rem 0.75rem; border-radius: 9999px; border: 1px solid #334155; }
.hero-fade-bottom { position: absolute; bottom: 0; left: 0; right: 0; height: 8rem; background: linear-gradient(to top, #050816, transparent); pointer-events: none; }

/* SECTIONS */
.section { position: relative; padding: 6rem 0; background: var(--bg); }
.section-dark { background: linear-gradient(to bottom, var(--bg), #080e24); }
.section-bg { position: absolute; inset: 0; pointer-events: none; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-title { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 800; color: white; margin: 1rem 0; letter-spacing: -0.02em; line-height: 1.2; }
.section-subtitle { color: #94a3b8; font-size: 1.1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* SERVICES */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { position: relative; border-radius: 1.25rem; padding: 1.75rem; transition: transform 0.3s ease, box-shadow 0.3s ease; }
.service-card:hover { transform: translateY(-6px); }
.service-badge { position: absolute; top: 1rem; right: 1rem; padding: 0.2rem 0.6rem; border-radius: 9999px; font-size: 0.7rem; font-weight: 700; color: white; }
.service-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; transition: transform 0.3s ease; }
.service-card:hover .service-icon { transform: scale(1.1); }
.service-title { font-size: 1.15rem; font-weight: 700; color: white; margin-bottom: 0.75rem; }
.service-desc { color: #94a3b8; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.25rem; }
.service-features { list-style: none; margin-bottom: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; }
.service-features li { color: #cbd5e1; font-size: 0.8rem; display: flex; align-items: center; gap: 0.5rem; }
.service-features li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex-shrink: 0; }
.service-cta { color: var(--green); font-size: 0.875rem; font-weight: 600; text-decoration: none; transition: all 0.2s; display: inline-block; }
.service-cta:hover { letter-spacing: 0.02em; }

/* BENEFITS */
.benefits-layout { display: grid; grid-template-columns: 1fr; gap: 4rem; }
@media(min-width:1024px) { .benefits-layout { grid-template-columns: 1fr 1fr; align-items: start; } }
.benefits-left { position: sticky; top: 7rem; }
.differentiators { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.differentiators li { display: flex; align-items: center; gap: 0.75rem; color: #e2e8f0; font-size: 0.875rem; font-weight: 500; }
.check-icon { display: inline-flex; align-items: center; justify-content: center; width: 20px; height: 20px; border-radius: 50%; background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.4); color: var(--green); font-size: 0.7rem; flex-shrink: 0; }
.mini-cta { border-radius: 1rem; padding: 1.25rem; border-color: rgba(16,185,129,0.2) !important; }
.mini-cta h4 { color: white; font-weight: 600; margin-bottom: 0.5rem; }
.mini-cta p { color: #94a3b8; font-size: 0.875rem; margin-bottom: 1rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.benefit-card { border-radius: 1rem; padding: 1.5rem; transition: border-color 0.2s ease; }
.benefit-card:hover { border-color: rgba(255,255,255,0.2); }
.benefit-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.benefit-card h4 { color: white; font-size: 0.8rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1.4; }
.benefit-card p { color: #64748b; font-size: 0.75rem; line-height: 1.5; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1200px) { .process-grid { grid-template-columns: repeat(5, 1fr); } }
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem; }
.process-icon { position: relative; width: 64px; height: 64px; border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.process-number { position: absolute; top: -8px; right: -8px; width: 22px; height: 22px; border-radius: 50%; background: #080e24; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; }
.process-card { border-radius: 1rem; padding: 1.25rem; width: 100%; }
.process-card h3 { color: white; font-weight: 700; font-size: 0.9rem; margin-bottom: 0.5rem; }
.process-card p { color: #94a3b8; font-size: 0.75rem; line-height: 1.5; margin-bottom: 0.75rem; }
.process-duration { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.2rem 0.6rem; border-radius: 9999px; background: rgba(255,255,255,0.05); font-size: 0.7rem; color: #94a3b8; }
.process-duration::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--green); }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media(min-width:640px) { .testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }
.rating-badge { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.6rem 1.25rem; border-radius: 9999px; margin-top: 1.5rem; }
.stars { color: #facc15; letter-spacing: -1px; }
.stars.small { font-size: 0.75rem; }
.rating-score { color: white; font-weight: 700; }
.rating-count { color: #64748b; font-size: 0.8rem; }
.testimonial-card { border-radius: 1.25rem; padding: 1.75rem; transition: border-color 0.2s ease; display: flex; flex-direction: column; }
.testimonial-card:hover { border-color: rgba(255,255,255,0.2); }
.quote-icon { margin-bottom: 1rem; }
.testimonial-text { color: #cbd5e1; font-size: 0.875rem; line-height: 1.7; flex: 1; margin-bottom: 1rem; font-style: italic; }
.testimonial-metric { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.3rem 0.75rem; border-radius: 9999px; background: rgba(16,185,129,0.1); border: 1px solid rgba(16,185,129,0.2); color: var(--green); font-size: 0.75rem; font-weight: 600; margin-bottom: 1.25rem; align-self: flex-start; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); }
.author-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 700; color: white; flex-shrink: 0; }
.author-name { font-size: 0.875rem; font-weight: 600; color: white; }
.author-role { font-size: 0.7rem; color: #64748b; }

/* CTA SECTION */
.cta-section { position: relative; padding: 7rem 0; overflow: hidden; background: var(--bg); }
.cta-bg { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(5,150,105,0.1), transparent, rgba(139,92,246,0.08)); }
.orb-cta-1 { width: 500px; height: 500px; background: rgba(16,185,129,0.07); top: -15%; left: 15%; }
.orb-cta-2 { width: 400px; height: 400px; background: rgba(139,92,246,0.07); bottom: -15%; right: 15%; }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-title { font-size: clamp(2.25rem, 5vw, 4rem); font-weight: 900; color: white; margin: 1.5rem 0; line-height: 1.15; letter-spacing: -0.02em; }
.cta-subtitle { color: #94a3b8; font-size: 1.15rem; max-width: 600px; margin: 0 auto 2.5rem; line-height: 1.7; }
.cta-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; margin-top: 2rem; }
.cta-trust span { display: flex; align-items: center; gap: 0.4rem; color: #64748b; font-size: 0.8rem; }
.cta-trust span::before { content:''; width:6px; height:6px; border-radius:50%; background:var(--green); }
.urgency-badge { display: inline-flex; align-items: center; gap: 0.75rem; padding: 0.75rem 1.5rem; border-radius: 0.75rem; margin-top: 2rem; border-color: rgba(249,115,22,0.3) !important; }
.urgency-badge { color: #fbbf24; font-size: 0.875rem; }
.urgency-dot { width: 8px; height: 8px; border-radius: 50%; background: #f97316; animation: blink 1.5s ease infinite; flex-shrink: 0; }

/* CONTACT */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media(min-width:1024px) { .contact-layout { grid-template-columns: 2fr 3fr; align-items: start; } }
.contact-info { display: flex; flex-direction: column; gap: 1rem; }
.contact-card { display: flex; align-items: flex-start; gap: 1rem; padding: 1.25rem; border-radius: 1rem; text-decoration: none; transition: border-color 0.2s ease; }
.contact-card:hover { border-color: rgba(255,255,255,0.2); }
.contact-icon { width: 44px; height: 44px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-label { color: #64748b; font-size: 0.7rem; margin-bottom: 0.2rem; }
.contact-value { color: white; font-size: 0.875rem; font-weight: 600; transition: color 0.2s; }
.contact-card:hover .contact-value { color: var(--green); }
.hours-card { border-radius: 1rem; padding: 1.25rem; }
.hours-card h4 { color: white; font-weight: 600; font-size: 0.875rem; margin-bottom: 0.75rem; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.8rem; color: #94a3b8; margin-bottom: 0.5rem; }
.contact-form-wrapper { border-radius: 1.25rem; padding: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
@media(min-width:640px) { .form-row { grid-template-columns: repeat(2, 1fr); } }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; color: #cbd5e1; font-size: 0.875rem; font-weight: 500; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; border-radius: 0.75rem; padding: 0.75rem 1rem; font-size: 0.875rem; font-family: inherit; transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px rgba(16,185,129,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(148,163,184,0.5); }
.form-group select option { background: #0f172a; color: white; }
.form-group textarea { resize: none; }
.form-note { text-align: center; color: #475569; font-size: 0.75rem; margin-top: 1rem; }

/* FOOTER */
.footer { background: #030612; border-top: 1px solid var(--glass-border); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; margin-bottom: 3rem; }
@media(min-width:640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media(min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; } }
.footer-desc { color: #64748b; font-size: 0.875rem; line-height: 1.6; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-btn { width: 36px; height: 36px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #64748b; text-decoration: none; transition: all 0.2s; }
.social-btn:hover { color: var(--green); border-color: rgba(16,185,129,0.4); }
.footer-heading { color: white; font-size: 0.875rem; font-weight: 600; margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.footer-links a { color: #64748b; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--green); }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact a { color: #64748b; text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-contact a:hover { color: var(--green); }
.footer-contact p { color: #475569; font-size: 0.75rem; line-height: 1.6; }
.footer-wa-btn { display: inline-flex !important; align-items: center; gap: 0.5rem; padding: 0.6rem 1.1rem; border-radius: 0.5rem; background: rgba(16,185,129,0.1) !important; border: 1px solid rgba(16,185,129,0.3); color: var(--green) !important; font-weight: 600 !important; font-size: 0.8rem; margin-top: 0.25rem; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; flex-direction: column; gap: 0.5rem; align-items: center; text-align: center; }
@media(min-width:640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p { color: #475569; font-size: 0.75rem; }

/* WhatsApp float */
.wa-float { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 56px; height: 56px; border-radius: 50%; background: #25d366; display: flex; align-items: center; justify-content: center; text-decoration: none; box-shadow: 0 4px 20px rgba(37,211,102,0.5); animation: pulse-ring 2s ease-in-out infinite; transition: transform 0.2s; }
.wa-float:hover { transform: scale(1.1); }

/* AI Chat button */
.chat-btn { position: fixed; bottom: 6.5rem; right: 1.5rem; z-index: 199; width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, #7c3aed, #8b5cf6); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(139,92,246,0.4); transition: transform 0.2s; }
.chat-btn:hover { transform: scale(1.1); }
.chat-notif { position: absolute; top: -4px; right: -4px; width: 18px; height: 18px; border-radius: 50%; background: var(--green); display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; color: white; }

/* Chat panel */
.chat-panel { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 200; width: 340px; border-radius: 1.25rem; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 20px 60px rgba(0,0,0,0.5); border-color: rgba(255,255,255,0.1) !important; }
@media(min-width:480px) { .chat-panel { width: 380px; } }
.chat-header { background: linear-gradient(135deg, #7c3aed, #6d28d9); padding: 1rem 1.25rem; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.chat-agent { display: flex; align-items: center; gap: 0.75rem; }
.agent-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; }
.agent-name { color: white; font-weight: 600; font-size: 0.875rem; }
.agent-status { display: flex; align-items: center; gap: 0.4rem; }
.status-dot { width: 6px; height: 6px; border-radius: 50%; background: #34d399; animation: blink 2s ease infinite; }
.agent-status span:last-child { color: #c4b5fd; font-size: 0.7rem; }
.chat-close { background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer; font-size: 1rem; padding: 0.25rem; transition: color 0.2s; }
.chat-close:hover { color: white; }
.chat-messages { flex: 1; overflow-y: auto; padding: 1rem; display: flex; flex-direction: column; gap: 0.75rem; min-height: 220px; max-height: 260px; background: #0a0f1e; }
.chat-msg { max-width: 85%; padding: 0.6rem 0.9rem; border-radius: 1rem; font-size: 0.8rem; line-height: 1.5; }
.chat-msg.bot { background: rgba(255,255,255,0.08); color: #e2e8f0; border: 1px solid rgba(255,255,255,0.08); border-bottom-left-radius: 4px; }
.chat-msg.user { background: #059669; color: white; border-bottom-right-radius: 4px; align-self: flex-end; }
.chat-typing { display: flex; gap: 4px; padding: 0.6rem 0.9rem; background: rgba(255,255,255,0.08); border-radius: 1rem; border-bottom-left-radius: 4px; align-self: flex-start; max-width: 80px; }
.chat-typing span { width: 6px; height: 6px; border-radius: 50%; background: #a78bfa; animation: blink 1s ease infinite; }
.chat-typing span:nth-child(2) { animation-delay: 0.15s; }
.chat-typing span:nth-child(3) { animation-delay: 0.3s; }
.chat-quick { padding: 0.75rem; background: #0a0f1e; border-top: 1px solid rgba(255,255,255,0.05); display: flex; gap: 0.5rem; overflow-x: auto; flex-shrink: 0; }
.chat-quick button { flex-shrink: 0; padding: 0.4rem 0.75rem; border-radius: 9999px; border: 1px solid rgba(139,92,246,0.4); background: none; color: #a78bfa; font-size: 0.7rem; cursor: pointer; transition: background 0.2s; }
.chat-quick button:hover { background: rgba(139,92,246,0.15); }
.chat-input-row { display: flex; gap: 0.5rem; padding: 0.75rem; background: #080d1a; border-top: 1px solid rgba(255,255,255,0.08); flex-shrink: 0; }
.chat-input-row input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: #e2e8f0; border-radius: 0.625rem; padding: 0.6rem 0.9rem; font-size: 0.8rem; font-family: inherit; }
.chat-input-row input:focus { outline: none; border-color: rgba(139,92,246,0.5); }
.chat-input-row input::placeholder { color: #475569; }
.chat-send { width: 38px; height: 38px; border-radius: 0.625rem; background: #7c3aed; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background 0.2s; }
.chat-send:hover { background: #6d28d9; }
