﻿/* =============================================
   ELEVA DIGITAL — Design System v2
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=DM+Sans:wght@300;400;500;600&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
  --blue: #0088FF;
  --blue-dim: #0066CC;
  --blue-glow: rgba(0,136,255,0.4);
  --red: #E01020;
  --red-glow: rgba(224,16,32,0.4);
  --bg: #06080E;
  --bg2: #0B0E1A;
  --bg3: #0F1220;
  --surface: rgba(255,255,255,0.04);
  --border: rgba(255,255,255,0.08);
  --text: #FFFFFF;
  --text-muted: rgba(255,255,255,0.5);
  --text-dim: rgba(255,255,255,0.7);
  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
  padding-top: var(--nav-h);
}

/* ── Custom Cursor ── */
#cursor {
  position: fixed;
  width: 12px; height: 12px;
  background: var(--blue);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s, opacity .2s;
  mix-blend-mode: normal;
}
#cursor-ring {
  position: fixed;
  width: 40px; height: 40px;
  border: 1.5px solid rgba(0,136,255,0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s cubic-bezier(.23,1,.32,1),
              height .35s cubic-bezier(.23,1,.32,1),
              border-color .35s;
}
body:has(a:hover) #cursor,
body:has(button:hover) #cursor { width:20px; height:20px; background: var(--red); }
body:has(a:hover) #cursor-ring,
body:has(button:hover) #cursor-ring { width:60px; height:60px; border-color: rgba(224,16,32,.4); }
@media (pointer: coarse) { #cursor, #cursor-ring { display:none; } body { cursor: auto; } }

/* ── Particles Canvas ── */
#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
}

/* ── Nav ── */
.ed-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 clamp(24px,5vw,80px);
  border-bottom: 1px solid transparent;
  background: rgba(6,8,14,0.92);
  backdrop-filter: blur(16px);
  transition: background .4s, border-color .4s, height .4s;
}
.ed-nav.scrolled {
  background: rgba(6,8,14,.92);
  backdrop-filter: blur(20px);
  border-color: var(--border);
  height: 64px;
}
.ed-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.ed-logo img { height: 44px; width: auto; display: block; }
.ed-nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.ed-nav-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #cbd5e1;
  text-decoration: none;
  transition: color .25s;
  position: relative;
}
.ed-nav-links a[aria-current="page"] { color: #fff; }
.ed-nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s;
}
.ed-nav-links a:hover { color: #fff; }
.ed-nav-links a:hover::after { transform: scaleX(1); }

.ed-btn-nav {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  padding: 10px 24px;
  border: 1px solid var(--blue);
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  background: transparent;
  transition: background .3s, color .3s;
  white-space: nowrap;
}
.ed-btn-nav:hover { background: var(--blue); color: #000; }

.ed-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.ed-hamburger span {
  display: block; width: 24px; height: 2px;
  background: #fff;
  transition: transform .3s, opacity .3s;
}
.ed-mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0;
  background: rgba(6,8,14,.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s;
}
.ed-mobile-menu.open { opacity: 1; pointer-events: auto; }
.ed-mobile-menu a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .1em;
  transition: color .25s;
}
.ed-mobile-menu a:hover { color: var(--blue); }

@media (max-width: 900px) {
  .ed-nav-links, .ed-btn-nav { display: none; }
  .ed-hamburger { display: flex; }
}

/* ── Buttons ── */
.ed-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
  transition: all .3s;
  border: none;
  cursor: pointer;
}
.ed-btn-primary {
  background: var(--blue);
  color: #000;
}
.ed-btn-primary:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 40px var(--blue-glow);
}
.ed-btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.2);
  clip-path: polygon(12px 0%, 100% 0%, calc(100% - 12px) 100%, 0% 100%);
}
.ed-btn-outline:hover {
  border-color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.05);
}
.ed-btn-red {
  background: var(--red);
  color: #fff;
}
.ed-btn-red:hover {
  background: #fff;
  color: var(--red);
  box-shadow: 0 0 40px var(--red-glow);
}
.ed-btn svg { transition: transform .3s; }
.ed-btn:hover svg { transform: translateX(4px); }

/* ── Labels / Eyebrow ── */
.ed-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.ed-eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--blue);
}

/* ── Section headings ── */
.ed-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(44px, 7vw, 96px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -.03em;
}
.ed-h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
}
.ed-h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  line-height: 1.2;
}
.ed-p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--text-dim);
  font-weight: 300;
}
.text-blue { color: var(--blue); }
.text-red { color: var(--red); }
.text-muted { color: var(--text-muted); }

/* ── Cards ── */
.ed-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  padding: 32px;
  position: relative;
  transition: border-color .35s, transform .35s, box-shadow .35s;
  overflow: hidden;
}
.ed-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity .35s;
}
.ed-card:hover {
  border-color: rgba(0,136,255,.25);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(0,136,255,.15);
}
.ed-card:hover::before { opacity: 1; }

.ed-card-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,136,255,.1);
  border: 1px solid rgba(0,136,255,.2);
  margin-bottom: 28px;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  color: var(--blue);
  font-size: 24px;
}

/* ── Section Divider (angled) ── */
.ed-angle-down {
  position: relative;
}
.ed-angle-down::after {
  content: '';
  position: absolute;
  bottom: -40px; left: 0; right: 0;
  height: 80px;
  background: inherit;
  clip-path: polygon(0 0, 100% 0, 100% 40%, 0 100%);
  z-index: 2;
}

/* ── Stats ── */
.ed-stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -.03em;
  color: #fff;
}
.ed-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 8px;
}

/* ── Reveal Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1);
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity .8s cubic-bezier(.23,1,.32,1), transform .8s cubic-bezier(.23,1,.32,1);
}
.reveal-right.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }

/* ── Glow Effects ── */
.glow-blue { box-shadow: 0 0 60px var(--blue-glow); }
.glow-red  { box-shadow: 0 0 60px var(--red-glow); }

/* ── Footer ── */
.ed-footer {
  background: #030408;
  border-top: 1px solid var(--border);
  padding: 80px clamp(24px,5vw,80px) 40px;
  position: relative;
  z-index: 10;
}
.ed-footer-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.ed-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}
.ed-footer-logo img { height: 32px; margin-bottom: 20px; }
.ed-footer-desc {
  font-size: 14px;
  line-height: 1.8;
  color: #94a3b8;
  max-width: 280px;
}
.ed-footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.ed-footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.ed-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  transition: color .25s;
}
.ed-footer-col a:hover { color: #fff; }
.ed-footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.ed-footer-bottom p { font-size: 13px; color: var(--text-muted); }
.ed-footer-social { display: flex; gap: 12px; }
.ed-footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: border-color .25s, color .25s, background .25s;
}
.ed-footer-social a:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: rgba(0,136,255,.08);
}

@media (max-width: 900px) {
  .ed-footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .ed-footer-grid { grid-template-columns: 1fr; }
  .ed-footer-bottom { flex-direction: column; text-align: center; }
}

/* ── FAQ Accordion ── */
.ed-faq-item {
  border-bottom: 1px solid var(--border);
}
.ed-faq-q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 17px;
  font-weight: 600;
  text-align: left;
  padding: 28px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transition: color .25s;
}
.ed-faq-q:hover { color: var(--blue); }
.ed-faq-icon {
  width: 28px; height: 28px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, border-color .3s;
  font-size: 18px;
  line-height: 1;
}
.ed-faq-item.open .ed-faq-icon { transform: rotate(45deg); border-color: var(--blue); }
.ed-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.23,1,.32,1);
}
.ed-faq-body-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
}

/* ── Section spacing ── */
.ed-section { padding: 120px clamp(24px,5vw,80px); }
.ed-section-sm { padding: 80px clamp(24px,5vw,80px); }
.ed-container {
  max-width: 1400px;
  margin: 0 auto;
}

/* ── WA Float Button ── */
.ed-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.ed-wa:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
.ed-wa svg { width: 28px; height: 28px; }
@keyframes waPulse {
  0%,100% { box-shadow: 0 8px 30px rgba(37,211,102,.4); }
  50% { box-shadow: 0 8px 50px rgba(37,211,102,.7); }
}

/* =========================================
   WHATSAPP CHAT WIDGET
   ========================================= */
.ed-wa { display: none !important; }

.wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}
.wa-trigger {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: flex-end;
}
.wa-badge {
  position: absolute;
  top: -4px; right: -4px;
  width: 20px; height: 20px;
  background: #ef4444;
  color: white;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(239,68,68,.5);
  animation: wa-badge-pop .4s cubic-bezier(.34,1.56,.64,1) both;
}
@keyframes wa-badge-pop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }

.wa-label-pill {
  background: rgba(6,8,14,.92);
  border: 1px solid rgba(255,255,255,.12);
  color: white;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
  opacity: 0;
  transform: translateX(8px);
  pointer-events: none;
  transition: opacity .35s ease, transform .35s ease;
  position: relative;
}
.wa-label-pill.visible { opacity: 1; transform: translateX(0); pointer-events: auto; }
.wa-label-pill::after {
  content: '';
  position: absolute;
  right: -7px; top: 50%;
  transform: translateY(-50%);
  border: 7px solid transparent;
  border-left-color: rgba(6,8,14,.92);
  border-right: 0;
}
.wa-btn {
  position: relative;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg,#128C7E 0%,#25D366 100%);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37,211,102,.45);
  transition: transform .25s cubic-bezier(.34,1.56,.64,1), box-shadow .25s ease;
  outline: none;
  flex-shrink: 0;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 12px 40px rgba(37,211,102,.6); }
.wa-btn:focus-visible { outline: 3px solid rgba(37,211,102,.5); outline-offset: 3px; }
.wa-ico-open, .wa-ico-close {
  position: absolute;
  font-size: 28px;
  color: white;
  transition: opacity .2s ease, transform .3s cubic-bezier(.34,1.56,.64,1);
}
.wa-ico-close { font-size: 22px; opacity: 0; transform: rotate(-90deg) scale(.5); }
.wa-ico-open  { opacity: 1; transform: rotate(0) scale(1); }
.wa-btn.open .wa-ico-open  { opacity: 0; transform: rotate(90deg) scale(.5); }
.wa-btn.open .wa-ico-close { opacity: 1; transform: rotate(0) scale(1); }
.wa-btn.open { background: linear-gradient(135deg,#374151,#1f2937); box-shadow: 0 8px 28px rgba(0,0,0,.35); }
.wa-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(37,211,102,.35);
  animation: wa-ring-pulse 2.5s ease-out infinite;
  pointer-events: none;
}
.wa-ring.r2 { animation-delay: 1.1s; }
@keyframes wa-ring-pulse { 0%{transform:scale(1);opacity:.7} 100%{transform:scale(2.1);opacity:0} }

.wa-modal {
  position: absolute;
  bottom: calc(100% + 16px);
  right: 0;
  width: 340px;
  background: rgba(6,8,14,.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.04);
  overflow: hidden;
  transform: translateY(16px) scale(.94);
  transform-origin: bottom right;
  opacity: 0;
  pointer-events: none;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), opacity .25s ease;
}
.wa-modal.open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
.wa-modal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(135deg,#0a7a6e 0%,#25D366 100%);
  position: relative;
  overflow: hidden;
}
.wa-modal-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,.06) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.06) 1px,transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}
.wa-header-avatar { position: relative; flex-shrink: 0; }
.wa-header-avatar > i {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.wa-hdr-dot {
  position: absolute;
  bottom: 1px; right: 1px;
  width: 11px; height: 11px;
  background: #bbf7d0;
  border: 2px solid #25D366;
  border-radius: 50%;
  box-shadow: 0 0 6px rgba(187,247,208,.8);
}
.wa-header-info { flex: 1; min-width: 0; }
.wa-header-info strong { display: block; font-size: 15px; font-weight: 700; color: white; letter-spacing: -.2px; }
.wa-header-info span { font-size: 12px; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: 5px; }
.wa-online-indicator {
  display: inline-block;
  width: 7px; height: 7px;
  background: #bbf7d0;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(187,247,208,.9);
  animation: wa-online-pulse 2s ease-in-out infinite;
}
@keyframes wa-online-pulse { 0%,100%{box-shadow:0 0 4px rgba(187,247,208,.7)} 50%{box-shadow:0 0 10px rgba(187,247,208,1)} }
.wa-close-btn {
  background: rgba(255,255,255,.15);
  border: none;
  color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .2s ease;
}
.wa-close-btn:hover { background: rgba(255,255,255,.28); }
.wa-modal-body {
  max-height: 280px;
  overflow-y: auto;
  padding: 20px 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: rgba(4,10,28,.6);
}
.wa-modal-body::-webkit-scrollbar { width: 4px; }
.wa-modal-body::-webkit-scrollbar-thumb { background: rgba(255,255,255,.1); border-radius: 4px; }
.wa-typing {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 16px 16px 16px 4px;
  width: fit-content;
}
.wa-typing span {
  width: 7px; height: 7px;
  background: rgba(255,255,255,.35);
  border-radius: 50%;
  animation: wa-dot-bounce 1.3s ease-in-out infinite;
}
.wa-typing span:nth-child(2) { animation-delay: .18s; }
.wa-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes wa-dot-bounce { 0%,60%,100%{transform:translateY(0)} 30%{transform:translateY(-6px);background:rgba(37,211,102,.8)} }
.wa-bubble-wrap { opacity: 0; transform: translateY(6px); }
.wa-bubble-wrap.wa-bubble-in { animation: wa-bubble-appear .35s ease forwards; }
@keyframes wa-bubble-appear { to{opacity:1;transform:translateY(0)} }
.wa-bubble {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px 16px 16px 4px;
  padding: 12px 14px;
  max-width: 92%;
}
.wa-bubble p { font-size: 14px; color: rgba(255,255,255,.85); line-height: 1.55; margin: 0; }
.wa-bubble p + p { margin-top: 6px; }
.wa-bubble p strong { color: white; font-weight: 700; }
.wa-bubble-time { display: block; font-size: 10px; color: rgba(255,255,255,.3); text-align: right; margin-top: 6px; }
.wa-quick-wrap { display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateY(8px); }
.wa-quick-wrap.wa-quick-in { animation: wa-quick-appear .35s ease forwards; }
@keyframes wa-quick-appear { to{opacity:1;transform:translateY(0)} }
.wa-quick-label {
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  text-transform: uppercase;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
}
.wa-quick-label i { color: #25D366; }
.wa-quick {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(37,211,102,.25);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: background .2s, border-color .2s, color .2s, transform .2s;
  font-family: inherit;
}
.wa-quick i { color: #25D366; font-size: 13px; flex-shrink: 0; }
.wa-quick:hover { background: rgba(37,211,102,.1); border-color: rgba(37,211,102,.55); color: white; transform: translateX(3px); }
.wa-modal-footer { padding: 12px 14px 14px; border-top: 1px solid rgba(255,255,255,.06); background: rgba(4,10,28,.8); }
.wa-input-row { display: flex; gap: 8px; align-items: center; }
#wa-input {
  flex: 1;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
  color: white;
  font-family: inherit;
  outline: none;
  transition: border-color .2s, background .2s;
}
#wa-input::placeholder { color: rgba(255,255,255,.28); }
#wa-input:focus { border-color: rgba(37,211,102,.5); background: rgba(37,211,102,.04); box-shadow: 0 0 0 3px rgba(37,211,102,.07); }
.wa-send-btn {
  width: 38px; height: 38px;
  background: linear-gradient(135deg,#128C7E,#25D366);
  border: none;
  border-radius: 10px;
  color: white;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 4px 12px rgba(37,211,102,.35);
}
.wa-send-btn:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.5); }
.wa-footer-note { font-size: 11px; color: rgba(255,255,255,.25); text-align: center; margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 5px; }
.wa-footer-note i { color: #25D366; }
@media(max-width:480px) {
  .wa-widget { bottom: 16px; right: 16px; }
  .wa-modal  { width: calc(100vw - 32px); right: -4px; }
  .wa-btn    { width: 54px; height: 54px; }
  .wa-ico-open { font-size: 24px; }
}

/* ── Noise texture overlay ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: .4;
}
