/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg1: #070B14;
  --bg2: #0B1120;
  --bg3: #111827;
  --acc: #00C2FF;
  --acc2: #38BDF8;
  --acc3: #3B82F6;
  --glow: #22D3EE;
  --txt: #F8FAFC;
  --txt2: #94A3B8;
  --txt3: #64748B;
  --glass: rgba(255,255,255,0.05);
  --glass2: rgba(0,194,255,0.07);
  --glass-border: rgba(255,255,255,0.08);
  --acc-border: rgba(0,194,255,0.2);
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg1);
  color: var(--txt);
  font-family: 'Manrope', 'Noto Sans Georgian', sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === UTILITIES === */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.text-center { text-align: center; }
.section-tag {
  display: inline-block;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.25);
  color: var(--acc);
  border-radius: 50px;
  padding: 0.35rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-sub {
  color: var(--txt2);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
}

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(50px); transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* === NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: rgba(7,11,20,0.85);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,194,255,0.1);
  transition: background 0.3s, padding 0.3s;
}
.navbar.scrolled {
  padding: 0.8rem 2rem;
  background: rgba(7,11,20,0.97);
  border-bottom-color: rgba(0,194,255,0.15);
}
.logo {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--acc);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.logo span { color: var(--txt); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links a {
  color: var(--txt2);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--acc);
  transform: scaleX(0);
  transition: transform 0.3s;
}
.nav-links a:hover { color: var(--txt); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-actions { display: flex; gap: 0.8rem; align-items: center; }
.btn-nav-call {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--acc);
  color: #070B14;
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-weight: 800;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  box-shadow: 0 0 20px rgba(0,194,255,0.3);
}
.btn-nav-call:hover {
  box-shadow: 0 0 40px rgba(0,194,255,0.6);
  transform: translateY(-2px);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--txt);
  border-radius: 2px;
  transition: all 0.3s;
}

/* === HERO === */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 5rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(0,194,255,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 10%, rgba(59,130,246,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(0,194,255,0.05) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridScroll 25s linear infinite;
}
@keyframes gridScroll { 0% { transform: translateY(0); } 100% { transform: translateY(60px); } }
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.hero-orb-1 {
  width: 500px; height: 500px;
  background: rgba(0,194,255,0.06);
  top: -150px; right: -100px;
  animation: orbFloat 10s ease-in-out infinite;
}
.hero-orb-2 {
  width: 350px; height: 350px;
  background: rgba(59,130,246,0.06);
  bottom: -100px; left: -80px;
  animation: orbFloat 10s ease-in-out infinite reverse;
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.08); }
}
.hero-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 950px;
}
.hero-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.25);
  border-radius: 50px;
  padding: 0.5rem 1.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--acc);
  margin-bottom: 2.5rem;
  animation: fadeDown 0.8s cubic-bezier(0.16,1,0.3,1) both;
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 0 0 rgba(0,194,255,0.5);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0% { box-shadow: 0 0 0 0 rgba(0,194,255,0.5); }
  70% { box-shadow: 0 0 0 12px rgba(0,194,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(0,194,255,0); }
}
.hero-h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.8rem;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.15s both;
}
.hero-h1 .line-acc {
  color: var(--acc);
  display: block;
  position: relative;
}
.hero-h1 .line-acc::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 50%; transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--acc), transparent);
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--txt2);
  line-height: 1.7;
  margin-bottom: 3rem;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.3s both;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.45s both;
}
.btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--acc);
  color: #070B14;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 1.05rem;
  transition: all 0.3s;
  box-shadow: 0 0 35px rgba(0,194,255,0.45);
  letter-spacing: 0.02em;
}
.btn-call:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 50px rgba(0,194,255,0.7);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(37,211,102,0.12);
  border: 1.5px solid rgba(37,211,102,0.35);
  color: #2DD45A;
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s;
}
.btn-whatsapp:hover {
  background: rgba(37,211,102,0.22);
  transform: translateY(-4px);
  box-shadow: 0 6px 30px rgba(37,211,102,0.3);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(255,255,255,0.12);
  color: var(--txt);
  padding: 1.1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: rgba(0,194,255,0.4);
  background: rgba(0,194,255,0.06);
  transform: translateY(-4px);
}
.hero-trust-badges {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s cubic-bezier(0.16,1,0.3,1) 0.6s both;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 0.65rem 1.2rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--txt2);
  backdrop-filter: blur(10px);
}
.trust-badge strong { color: var(--txt); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--txt3);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: fadeUp 1s 1.2s both;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, rgba(0,194,255,0.6), transparent);
  animation: scrollAnim 2.5s ease-in-out infinite;
}
@keyframes scrollAnim { 0%, 100% { opacity: 0.4; transform: scaleY(1); } 50% { opacity: 1; transform: scaleY(1.2); } }

/* === STATS BAR === */
.stats-bar {
  background: var(--bg2);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  padding: 1.5rem 2rem;
}
.stats-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat-block {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}
.stat-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.stat-text { line-height: 1.2; }
.stat-num { font-size: 1.4rem; font-weight: 900; color: var(--acc); }
.stat-lbl { font-size: 0.75rem; color: var(--txt2); font-weight: 500; }

/* === SERVICES === */
.services {
  padding: 7rem 0;
  background: var(--bg2);
}
.services-header { margin-bottom: 4rem; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}
.service-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(0,194,255,0.1), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(0,194,255,0.32);
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(0,0,0,0.4), 0 0 40px rgba(0,194,255,0.07);
}
.card-top-glow {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 10%, var(--acc) 50%, transparent 90%);
  opacity: 0;
  transition: opacity 0.4s;
}
.service-card:hover .card-top-glow { opacity: 1; }
.svc-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  transition: all 0.3s;
}
.service-card:hover .svc-icon {
  background: rgba(0,194,255,0.15);
  border-color: rgba(0,194,255,0.35);
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 750;
  margin-bottom: 0.7rem;
  color: var(--txt);
}
.service-card p {
  font-size: 0.86rem;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.svc-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--acc);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: gap 0.3s;
}
.service-card:hover .svc-cta { gap: 0.85rem; }

/* === WHY US === */
.why-us {
  padding: 7rem 0;
  background: var(--bg1);
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 900px; height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2.5rem; }
.why-feat {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 1.5rem;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  transition: all 0.35s;
}
.why-feat:hover {
  border-color: rgba(0,194,255,0.22);
  background: rgba(0,194,255,0.06);
  transform: translateX(8px);
}
.wf-icon {
  width: 46px; height: 46px;
  border-radius: 14px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-feat h4 { font-size: 0.97rem; font-weight: 750; margin-bottom: 0.35rem; }
.why-feat p { font-size: 0.84rem; color: var(--txt2); line-height: 1.55; }
.stats-showcase {
  background: linear-gradient(140deg, rgba(0,194,255,0.1) 0%, rgba(59,130,246,0.06) 60%, rgba(0,0,0,0) 100%);
  border: 1px solid rgba(0,194,255,0.18);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}
.stats-showcase::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 250px; height: 250px;
  border-radius: 50%;
  background: rgba(0,194,255,0.05);
}
.stats-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.stat-showcase-item { text-align: center; }
.ssn { font-size: 2.8rem; font-weight: 900; color: var(--acc); line-height: 1; }
.ssl { font-size: 0.75rem; color: var(--txt2); font-weight: 500; margin-top: 0.3rem; }
.response-meter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1.2rem 1.5rem;
}
.meter-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
}
.meter-text { font-size: 0.8rem; color: var(--txt2); }
.meter-val { font-size: 0.8rem; font-weight: 800; color: var(--acc); }
.meter-track {
  height: 6px;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  overflow: hidden;
}
.meter-fill {
  height: 100%;
  width: 82%;
  background: linear-gradient(90deg, var(--acc3), var(--acc));
  border-radius: 3px;
  animation: meterAnim 2s cubic-bezier(0.16,1,0.3,1) 0.5s both;
}
@keyframes meterAnim { from { width: 0; } }
.meter-note {
  font-size: 0.78rem;
  color: var(--acc);
  font-weight: 700;
  margin-top: 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

/* === COVERAGE === */
.coverage {
  padding: 7rem 0;
  background: var(--bg2);
}
.coverage-header { text-align: center; margin-bottom: 3.5rem; }
.map-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(0,194,255,0.15);
  height: 420px;
  background: var(--bg3);
  position: relative;
}
.map-frame svg { width: 100%; height: 100%; }
.coverage-zones {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.zone-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.zone-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--acc);
  box-shadow: 0 0 10px rgba(0,194,255,0.5);
  flex-shrink: 0;
}
.zone-name { font-size: 0.88rem; font-weight: 600; }
.zone-dist { font-size: 0.75rem; color: var(--txt2); }

/* === REVIEWS === */
.reviews { padding: 7rem 0; background: var(--bg1); }
.reviews-header { text-align: center; margin-bottom: 4rem; }
.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0,194,255,0.07);
  border: 1px solid rgba(0,194,255,0.18);
  border-radius: 60px;
  padding: 0.8rem 2rem;
  margin-bottom: 1.5rem;
}
.rating-big { font-size: 2.5rem; font-weight: 900; color: var(--acc); line-height: 1; }
.rating-stars { color: #FBBF24; font-size: 1.1rem; }
.rating-info { font-size: 0.8rem; color: var(--txt2); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px;
  padding: 2rem;
  position: relative;
  transition: all 0.3s;
}
.review-card:hover {
  border-color: rgba(0,194,255,0.2);
  transform: translateY(-5px);
}
.review-quote {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  font-size: 4rem;
  color: rgba(0,194,255,0.08);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
}
.review-stars { color: #FBBF24; font-size: 0.9rem; margin-bottom: 1rem; }
.review-text {
  font-size: 0.9rem;
  color: var(--txt2);
  line-height: 1.7;
  margin-bottom: 1.4rem;
}
.reviewer-row { display: flex; align-items: center; gap: 0.9rem; }
.avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(0,194,255,0.1);
  border: 2px solid rgba(0,194,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.82rem;
  color: var(--acc);
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; }
.reviewer-info { font-size: 0.74rem; color: var(--txt3); margin-top: 0.1rem; }

/* === FAQ === */
.faq { padding: 7rem 0; background: var(--bg2); }
.faq-header { text-align: center; margin-bottom: 3.5rem; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s;
}
.faq-item.open { border-color: rgba(0,194,255,0.28); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.6rem;
  cursor: pointer;
  font-weight: 650;
  font-size: 0.95rem;
  gap: 1rem;
  background: rgba(255,255,255,0.03);
  transition: background 0.3s;
  user-select: none;
}
.faq-q:hover { background: rgba(0,194,255,0.06); }
.faq-arrow-btn {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.35s;
  color: var(--acc);
  font-size: 0.7rem;
}
.faq-item.open .faq-arrow-btn {
  transform: rotate(180deg);
  background: var(--acc);
  color: #070B14;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1);
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 1.6rem 1.4rem;
  font-size: 0.9rem;
  color: var(--txt2);
  line-height: 1.7;
}

/* === CONTACT === */
.contact { padding: 7rem 0; background: var(--bg1); }
.contact-header { text-align: center; margin-bottom: 4rem; }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact-channels { display: flex; flex-direction: column; gap: 1rem; }
.channel {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.3rem 1.6rem;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  transition: all 0.35s;
}
.channel:hover {
  transform: translateX(8px);
  border-color: rgba(0,194,255,0.25);
  background: rgba(0,194,255,0.06);
}
.ch-icon {
  width: 50px; height: 50px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.ch-call .ch-icon { background: rgba(0,194,255,0.1); border: 1px solid rgba(0,194,255,0.2); }
.ch-wa .ch-icon { background: rgba(37,211,102,0.1); border: 1px solid rgba(37,211,102,0.2); }
.ch-vb .ch-icon { background: rgba(127,90,194,0.1); border: 1px solid rgba(127,90,194,0.2); }
.ch-em .ch-icon { background: rgba(251,191,36,0.1); border: 1px solid rgba(251,191,36,0.2); }
.ch-label { font-size: 0.74rem; color: var(--txt2); font-weight: 500; margin-bottom: 0.2rem; }
.ch-value { font-weight: 750; font-size: 0.97rem; }
.contact-hero-card {
  background: linear-gradient(135deg, rgba(0,194,255,0.1) 0%, rgba(59,130,246,0.06) 100%);
  border: 1px solid rgba(0,194,255,0.18);
  border-radius: 28px;
  padding: 3rem 2.5rem;
  text-align: center;
}
.emergency-pulse-ring {
  width: 150px; height: 150px;
  border-radius: 50%;
  background: rgba(0,194,255,0.08);
  border: 2px solid rgba(0,194,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 3.5rem;
  position: relative;
  animation: emergencyPulse 3s ease-in-out infinite;
}
.emergency-pulse-ring::before {
  content: '';
  position: absolute;
  inset: -16px;
  border-radius: 50%;
  border: 1px solid rgba(0,194,255,0.12);
  animation: emergencyPulse 3s ease-in-out infinite 0.8s;
}
@keyframes emergencyPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,194,255,0.3); }
  50% { box-shadow: 0 0 0 25px rgba(0,194,255,0); }
}
.emg-title { font-size: 1.6rem; font-weight: 900; color: var(--acc); margin-bottom: 0.4rem; }
.emg-sub { font-size: 0.88rem; color: var(--txt2); margin-bottom: 2rem; }

/* === FOOTER === */
.footer {
  background: var(--bg3);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 5rem 0 2.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer-brand-logo {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--acc);
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}
.footer-brand-logo span { color: var(--txt); }
.footer-desc {
  font-size: 0.86rem;
  color: var(--txt2);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 300px;
}
.footer-ctas { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.footer-btn-call {
  background: var(--acc);
  color: #070B14;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 800;
  transition: all 0.3s;
}
.footer-btn-call:hover { box-shadow: 0 0 20px rgba(0,194,255,0.5); }
.footer-btn-wa {
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.3);
  color: #2DD45A;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}
.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--acc);
  margin-bottom: 1.2rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  color: var(--txt2);
  font-size: 0.85rem;
  transition: color 0.25s;
}
.footer-col ul li a:hover { color: var(--acc); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.78rem; color: var(--txt3); }
.footer-langs { display: flex; gap: 0.5rem; }
.lang-btn {
  background: none;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--txt2);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
}
.lang-btn:hover, .lang-btn.active {
  border-color: var(--acc);
  color: var(--acc);
}

/* === FLOATING ELEMENTS === */
.float-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 9998;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 30px rgba(37,211,102,0.55);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waFloat 3.5s ease-in-out infinite;
}
.float-wa:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 45px rgba(37,211,102,0.8);
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
.sticky-call-btn {
  position: fixed;
  bottom: 2rem; left: 2rem;
  z-index: 9998;
  background: var(--acc);
  color: #070B14;
  padding: 0.75rem 1.6rem;
  border-radius: 50px;
  font-weight: 900;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 28px rgba(0,194,255,0.55);
  transition: all 0.3s;
  letter-spacing: 0.04em;
}
.sticky-call-btn:hover {
  box-shadow: 0 6px 45px rgba(0,194,255,0.85);
  transform: translateY(-3px);
}

/* === ANIMATIONS === */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(35px); }
  to { opacity: 1; transform: translateY(0); }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 2.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn-call, .btn-whatsapp, .btn-outline { width: 100%; justify-content: center; }
  .why-grid, .contact-layout { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  section { padding: 5rem 0; }
}

/* ============================================ */
/* === SERVICE DETAIL PAGES (added) ========== */
/* ============================================ */

/* Service nav dropdown */
.nav-item-drop { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 140%; left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 250px;
  background: rgba(11,17,32,0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(0,194,255,0.15);
  border-radius: 16px;
  padding: 0.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.nav-item-drop:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.8rem;
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--txt2);
  transition: all 0.2s;
}
.nav-dropdown a:hover { background: rgba(0,194,255,0.08); color: var(--txt); }
.nav-dropdown a::after { display: none; }
.nav-dropdown .dd-ico { font-size: 1rem; width: 22px; text-align: center; }

/* Service page hero */
.svc-hero {
  position: relative;
  overflow: hidden;
  padding: 9rem 2rem 4rem;
  background:
    radial-gradient(ellipse 60% 50% at 50% 20%, rgba(0,194,255,0.08) 0%, transparent 70%),
    linear-gradient(180deg, var(--bg1) 0%, var(--bg2) 100%);
  border-bottom: 1px solid var(--glass-border);
}
.svc-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,194,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,194,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.svc-hero-inner { max-width: 1000px; margin: 0 auto; position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: 0.8rem;
  color: var(--txt3);
  margin-bottom: 2rem;
}
.breadcrumb a { color: var(--txt2); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb .sep { color: var(--txt3); }
.breadcrumb .current { color: var(--acc); font-weight: 600; }
.svc-hero-icon {
  width: 84px; height: 84px;
  border-radius: 22px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  margin-bottom: 1.6rem;
  box-shadow: 0 0 40px rgba(0,194,255,0.12);
}
.svc-hero h1 {
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.svc-hero h1 .acc { color: var(--acc); }
.svc-hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: var(--txt2);
  line-height: 1.7;
  max-width: 680px;
  margin-bottom: 2.2rem;
}
.svc-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Service detail body */
.svc-body { padding: 5rem 0; background: var(--bg1); }
.svc-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3.5rem;
  align-items: start;
}
.svc-main h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1.3rem;
}
.svc-main h2:not(:first-child) { margin-top: 3.2rem; }
.svc-main p { color: var(--txt2); font-size: 1rem; line-height: 1.8; margin-bottom: 1.1rem; }
.svc-main strong { color: var(--txt); }

/* Feature list */
.feature-list { list-style: none; display: grid; gap: 0.9rem; margin: 0.5rem 0 1rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  font-size: 0.92rem;
  color: var(--txt2);
  transition: all 0.3s;
}
.feature-list li:hover { border-color: rgba(0,194,255,0.22); background: rgba(0,194,255,0.04); }
.feature-list .fl-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 7px;
  background: rgba(0,194,255,0.12);
  border: 1px solid rgba(0,194,255,0.3);
  color: var(--acc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 900;
  margin-top: 1px;
}
.feature-list li strong { color: var(--txt); display: block; margin-bottom: 0.15rem; }

/* Process steps */
.steps { display: grid; gap: 1rem; margin-top: 0.5rem; counter-reset: step; }
.step {
  position: relative;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.3rem 1.4rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
}
.step-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--acc);
  color: #070B14;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px rgba(0,194,255,0.3);
}
.step-txt h4 { font-size: 1rem; font-weight: 700; margin-bottom: 0.3rem; color: var(--txt); }
.step-txt p { font-size: 0.88rem; color: var(--txt2); margin: 0; line-height: 1.6; }

/* Sidebar */
.svc-sidebar { position: sticky; top: 100px; display: grid; gap: 1.2rem; }
.sb-card {
  background: linear-gradient(160deg, rgba(0,194,255,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  text-align: center;
}
.sb-card .sb-emoji { font-size: 2.2rem; margin-bottom: 0.8rem; }
.sb-card h3 { font-size: 1.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.sb-card p { font-size: 0.86rem; color: var(--txt2); line-height: 1.6; margin-bottom: 1.4rem; }
.sb-card .btn-call, .sb-card .btn-whatsapp { width: 100%; justify-content: center; margin-bottom: 0.8rem; padding: 0.95rem 1rem; font-size: 0.98rem; }
.sb-info {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 18px;
  padding: 1.5rem 1.6rem;
}
.sb-info-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.7rem 0;
  font-size: 0.88rem;
  color: var(--txt2);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.sb-info-row:last-child { border-bottom: none; }
.sb-info-row .sbi-ico {
  width: 34px; height: 34px;
  border-radius: 10px;
  background: rgba(0,194,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sb-info-row strong { color: var(--txt); }

/* Other services */
.other-services { padding: 5rem 0; background: var(--bg2); border-top: 1px solid var(--glass-border); }
.os-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
  margin-top: 3rem;
}
.os-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.3rem 1.4rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  transition: all 0.35s cubic-bezier(0.16,1,0.3,1);
}
.os-card:hover {
  border-color: rgba(0,194,255,0.3);
  transform: translateY(-5px);
  background: rgba(0,194,255,0.04);
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}
.os-card .os-ico {
  width: 48px; height: 48px;
  border-radius: 13px;
  background: rgba(0,194,255,0.08);
  border: 1px solid rgba(0,194,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; flex-shrink: 0;
  transition: all 0.3s;
}
.os-card:hover .os-ico { transform: scale(1.1) rotate(-5deg); background: rgba(0,194,255,0.15); }
.os-card .os-txt { font-size: 0.95rem; font-weight: 700; color: var(--txt); }
.os-card .os-arrow { margin-left: auto; color: var(--acc); font-weight: 800; transition: transform 0.3s; }
.os-card:hover .os-arrow { transform: translateX(4px); }

/* Make homepage service cards fully clickable links */
a.service-card { display: block; color: inherit; }

@media (max-width: 900px) {
  .svc-layout { grid-template-columns: 1fr; }
  .svc-sidebar { position: static; }
}

/* === MOBILE MENU (added) === */
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(7,11,20,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
  padding: 5rem 2rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--txt2);
  padding: 0.7rem 1rem;
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--acc); }
.mobile-menu .mm-sub {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--txt3);
  margin-top: 1.5rem;
  margin-bottom: 0.3rem;
}
.mobile-menu .mm-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem 1.5rem;
}
.mobile-menu .mm-services a { font-size: 0.95rem; color: var(--txt2); }
.mobile-menu .mm-call {
  margin-top: 1.8rem;
  background: var(--acc);
  color: #070B14 !important;
  border-radius: 50px;
  padding: 0.9rem 2.4rem;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 0 30px rgba(0,194,255,0.4);
}

/* === SOCIAL LINKS (added) === */
.sb-social { display: grid; gap: 0.6rem; margin-top: 0.2rem; }
.social-btn {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.85rem 1.1rem;
  border-radius: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  border: 1px solid transparent;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.social-btn .s-ico {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
  font-weight: 900;
}
.social-btn .s-arrow { margin-left: auto; opacity: 0.6; transition: transform 0.3s; }
.social-btn:hover .s-arrow { transform: translateX(4px); opacity: 1; }
.social-fb {
  background: rgba(24,119,242,0.1);
  border-color: rgba(24,119,242,0.3);
  color: #4d94ff;
}
.social-fb .s-ico { background: #1877F2; color: #fff; }
.social-fb:hover { background: rgba(24,119,242,0.2); transform: translateY(-3px); box-shadow: 0 8px 26px rgba(24,119,242,0.25); }
.social-yt {
  background: rgba(255,0,0,0.08);
  border-color: rgba(255,0,0,0.28);
  color: #ff6b6b;
}
.social-yt .s-ico { background: #FF0000; color: #fff; }
.social-yt:hover { background: rgba(255,0,0,0.16); transform: translateY(-3px); box-shadow: 0 8px 26px rgba(255,0,0,0.22); }
.sb-social-title {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--txt3);
  font-weight: 700;
  margin: 0 0 0.7rem;
  text-align: center;
}
/* footer social inline */
.footer-social-row { display: flex; align-items: center; gap: 0.6rem; }
.footer-social-row .fs-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
}

/* ============================================ */
/* === AI PRICE CALCULATOR (added) =========== */
/* ============================================ */
.calc-section { padding: 7rem 0; background: var(--bg1); position: relative; overflow: hidden; }
.calc-section::before {
  content: '';
  position: absolute; top: -10%; left: 50%; transform: translateX(-50%);
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,194,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.calc-wrap { max-width: 720px; margin: 3rem auto 0; position: relative; z-index: 2; }
.calc-card {
  background: linear-gradient(180deg, rgba(11,17,32,0.9), rgba(7,11,20,0.95));
  border: 1px solid rgba(0,194,255,0.18);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 60px rgba(0,194,255,0.06);
}
.calc-head {
  display: flex; align-items: center; gap: 0.9rem;
  padding: 1.1rem 1.5rem;
  background: rgba(0,194,255,0.06);
  border-bottom: 1px solid rgba(0,194,255,0.12);
}
.calc-avatar {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(135deg, var(--acc), var(--acc3));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: #070B14; flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,194,255,0.4);
}
.calc-head-txt { flex: 1; line-height: 1.3; }
.calc-head-txt .ch-name { font-weight: 800; font-size: 0.98rem; }
.calc-head-txt .ch-status { font-size: 0.74rem; color: var(--txt2); display: flex; align-items: center; gap: 0.4rem; }
.calc-head-txt .ch-status .dot { width: 7px; height: 7px; border-radius: 50%; background: #2DD45A; box-shadow: 0 0 0 0 rgba(45,212,90,0.5); animation: pulseDot 2s infinite; }
.calc-reset { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); color: var(--txt2); border-radius: 10px; padding: 0.4rem 0.7rem; font-size: 0.75rem; cursor: pointer; font-family: inherit; transition: all 0.2s; }
.calc-reset:hover { color: var(--txt); border-color: rgba(0,194,255,0.3); }

.calc-body {
  padding: 1.5rem;
  height: 420px;
  overflow-y: auto;
  display: flex; flex-direction: column; gap: 0.9rem;
  scroll-behavior: smooth;
}
.calc-body::-webkit-scrollbar { width: 6px; }
.calc-body::-webkit-scrollbar-thumb { background: rgba(0,194,255,0.2); border-radius: 6px; }

.msg { display: flex; gap: 0.7rem; max-width: 88%; animation: msgIn 0.4s cubic-bezier(0.16,1,0.3,1); }
@keyframes msgIn { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: translateY(0); } }
.msg-ava { width: 32px; height: 32px; border-radius: 10px; background: rgba(0,194,255,0.12); border: 1px solid rgba(0,194,255,0.25); display: flex; align-items: center; justify-content: center; font-size: 0.95rem; flex-shrink: 0; }
.msg-bubble { padding: 0.85rem 1.1rem; border-radius: 16px; font-size: 0.92rem; line-height: 1.55; }
.msg.bot .msg-bubble { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-top-left-radius: 4px; color: var(--txt); }
.msg.user { align-self: flex-end; flex-direction: row-reverse; }
.msg.user .msg-bubble { background: var(--acc); color: #070B14; font-weight: 600; border-top-right-radius: 4px; }
.msg.user .msg-ava { background: rgba(0,194,255,0.2); }
.msg-bubble strong { font-weight: 800; }

.typing { display: flex; gap: 4px; padding: 0.4rem 0; }
.typing span { width: 8px; height: 8px; border-radius: 50%; background: var(--acc); opacity: 0.5; animation: typingBounce 1.2s infinite; }
.typing span:nth-child(2) { animation-delay: 0.2s; }
.typing span:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingBounce { 0%, 60%, 100% { transform: translateY(0); opacity: 0.4; } 30% { transform: translateY(-6px); opacity: 1; } }

.calc-foot { padding: 1rem 1.5rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); }
.calc-chips { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.chip {
  background: rgba(0,194,255,0.07);
  border: 1px solid rgba(0,194,255,0.25);
  color: var(--acc);
  border-radius: 50px;
  padding: 0.6rem 1.1rem;
  font-size: 0.85rem; font-weight: 600;
  cursor: pointer; font-family: inherit;
  transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.chip:hover { background: var(--acc); color: #070B14; transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,194,255,0.3); }
.chip-row-input { display: flex; gap: 0.5rem; width: 100%; }
.chip-input {
  flex: 1; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 12px; padding: 0.7rem 1rem; color: var(--txt); font-family: inherit; font-size: 0.9rem; outline: none;
}
.chip-input:focus { border-color: rgba(0,194,255,0.4); }
.chip-send { background: var(--acc); color: #070B14; border: none; border-radius: 12px; padding: 0 1.2rem; font-weight: 800; cursor: pointer; font-family: inherit; }

/* Result card inside chat */
.calc-result { width: 100%; max-width: 100%; }
.calc-result .msg-bubble { width: 100%; }
.result-total { font-size: 1.9rem; font-weight: 900; color: var(--acc); margin: 0.3rem 0 0.2rem; }
.result-label { font-size: 0.74rem; color: var(--txt2); text-transform: uppercase; letter-spacing: 0.1em; }
.result-rows { margin: 0.9rem 0; display: grid; gap: 0.4rem; }
.result-row { display: flex; justify-content: space-between; font-size: 0.84rem; color: var(--txt2); padding: 0.35rem 0; border-bottom: 1px dashed rgba(255,255,255,0.08); }
.result-row span:last-child { color: var(--txt); font-weight: 600; }
.result-note { font-size: 0.76rem; color: var(--txt3); margin-top: 0.6rem; line-height: 1.5; }
.result-ctas { display: flex; gap: 0.6rem; margin-top: 1rem; flex-wrap: wrap; }
.result-ctas a { flex: 1; min-width: 140px; justify-content: center; padding: 0.85rem 1rem; font-size: 0.92rem; border-radius: 12px; display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 800; transition: all 0.3s; }
.result-ctas .rc-call { background: var(--acc); color: #070B14; box-shadow: 0 0 25px rgba(0,194,255,0.35); }
.result-ctas .rc-call:hover { transform: translateY(-3px); }
.result-ctas .rc-wa { background: rgba(37,211,102,0.14); border: 1px solid rgba(37,211,102,0.35); color: #2DD45A; }
.result-ctas .rc-wa:hover { background: rgba(37,211,102,0.24); transform: translateY(-3px); }

@media (max-width: 600px) {
  .calc-body { height: 380px; }
  .msg { max-width: 95%; }
  .result-total { font-size: 1.6rem; }
}
