/* =====================================================
   VOICE AI REDESIGN — NEW SECTIONS
   ===================================================== */

/* ----- AI Badge (Hero) ----- */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(114, 183, 237, 0.12);
  border: 1px solid rgba(114, 183, 237, 0.35);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  color: var(--clr1);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4cff8a;
  display: inline-block;
  animation: pulse-green 1.5s infinite;
}
@keyframes pulse-green {
  0%   { box-shadow: 0 0 0 0   rgba(76, 255, 138, 0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(76, 255, 138, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(76, 255, 138, 0);   }
}

/* ----- Hero subtitle & actions ----- */
.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: #bbb;
  max-width: 520px;
}

/* ----- Hero trust numbers ----- */
.hero-trust {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}
.trust-item {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.trust-num {
  font-size: 24px;
  font-weight: 700;
  color: var(--clr1);
  font-family: "Orbitron", monospace;
}
.trust-label {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.15);
}

/* ----- Voice Visualizer (Hero right side) ----- */
.voice-visualizer-wrap {
  text-align: center;
  padding: 30px 20px;
}
.voice-globe {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.globe-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(114, 183, 237, 0.3);
}
.globe-ring.ring-1 { width: 200px; height: 200px; animation: spin-slow 18s linear infinite; }
.globe-ring.ring-2 { width: 150px; height: 150px; animation: spin-slow 12s linear infinite reverse; border-color: rgba(114,183,237,0.2); }
.globe-ring.ring-3 { width: 100px; height: 100px; animation: spin-slow 8s linear infinite; border-color: rgba(114,183,237,0.15); }
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.globe-core {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--clr2), var(--clr1));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(114, 183, 237, 0.4);
  z-index: 2;
}
.lang-bubble {
  position: absolute;
  background: rgba(114, 183, 237, 0.15);
  border: 1px solid rgba(114, 183, 237, 0.4);
  color: var(--clr1);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 20px;
  z-index: 3;
  animation: float-bubble 3s ease-in-out infinite;
}
.lang-bubble.l1 { top: 5px;   left: 10px;  animation-delay: 0.0s; }
.lang-bubble.l2 { top: 5px;   right: 10px; animation-delay: 0.5s; }
.lang-bubble.l3 { top: 50%;   left: -15px; animation-delay: 1.0s; animation-name: float-bubble-mid; transform: translateY(-50%); }
.lang-bubble.l4 { top: 50%;   right: -15px;animation-delay: 1.5s; animation-name: float-bubble-mid; transform: translateY(-50%); }
.lang-bubble.l5 { bottom: 5px;left: 10px;  animation-delay: 2.0s; }
.lang-bubble.l6 { bottom: 5px;right: 10px; animation-delay: 2.5s; }
@keyframes float-bubble {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
@keyframes float-bubble-mid {
  0%,100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 6px)); }
}

/* ----- Waveform bars ----- */
.waveform { height: 40px; }
.waveform .bar {
  width: 4px;
  background: linear-gradient(to top, var(--clr2), var(--clr1));
  border-radius: 4px;
  animation: wave 1.2s ease-in-out infinite;
  min-height: 4px;
}
.waveform .bar:nth-child(1)  { animation-delay: 0.00s; }
.waveform .bar:nth-child(2)  { animation-delay: 0.10s; }
.waveform .bar:nth-child(3)  { animation-delay: 0.20s; }
.waveform .bar:nth-child(4)  { animation-delay: 0.30s; }
.waveform .bar:nth-child(5)  { animation-delay: 0.40s; }
.waveform .bar:nth-child(6)  { animation-delay: 0.50s; }
.waveform .bar:nth-child(7)  { animation-delay: 0.60s; }
.waveform .bar:nth-child(8)  { animation-delay: 0.70s; }
.waveform .bar:nth-child(9)  { animation-delay: 0.80s; }
.waveform .bar:nth-child(10) { animation-delay: 0.90s; }
.waveform .bar:nth-child(11) { animation-delay: 1.00s; }
.waveform .bar:nth-child(12) { animation-delay: 0.90s; }
.waveform .bar:nth-child(13) { animation-delay: 0.80s; }
.waveform .bar:nth-child(14) { animation-delay: 0.70s; }
.waveform .bar:nth-child(15) { animation-delay: 0.60s; }
.waveform .bar:nth-child(16) { animation-delay: 0.50s; }
.waveform .bar:nth-child(17) { animation-delay: 0.40s; }
.waveform .bar:nth-child(18) { animation-delay: 0.30s; }
.waveform .bar:nth-child(19) { animation-delay: 0.20s; }
.waveform .bar:nth-child(20) { animation-delay: 0.10s; }
@keyframes wave {
  0%,100% { height: 6px;  }
  50%      { height: 36px; }
}
.waveform-label {
  font-size: 12px;
  color: var(--clr1);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ----- About float badge ----- */
.about .image { position: relative; }
.about-float-badge {
  position: absolute;
  bottom: 20px;
  right: -20px;
  background: linear-gradient(145deg, #1d1d1d, #181818);
  box-shadow: 7px 7px 21px #0b0b0b, -7px -7px 21px #2b2b2b;
  border-radius: 16px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(114, 183, 237, 0.2);
  z-index: 2;
}
.afb-icon {
  width: 40px;
  height: 40px;
  background: rgba(114, 183, 237, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-float-badge strong { color: #eee; font-size: 13px; display: block; }

/* ----- Stats Bar ----- */
.stats-bar {
  background: linear-gradient(145deg, #181818, #1d1d1d);
  border-top: 1px solid rgba(114, 183, 237, 0.1);
  border-bottom: 1px solid rgba(114, 183, 237, 0.1);
}
.stat-pill { display: flex; align-items: center; gap: 10px; }
.stat-num {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  font-family: "Orbitron", monospace;
}
.stat-text {
  font-size: 12px;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* ----- How It Works ----- */
.hiw-card {
  background: linear-gradient(145deg, #1d1d1d, #181818);
  box-shadow: 7px 7px 21px #0b0b0b, -7px -7px 21px #2b2b2b;
  border-radius: 30px;
  padding: 35px 28px;
  height: 100%;
  position: relative;
  border: 1px solid rgba(255,255,255,0.04);
  transition: 0.35s;
}
.hiw-card:hover {
  transform: translateY(-6px);
  border-color: rgba(114, 183, 237, 0.2);
}
.hiw-card-featured {
  background: linear-gradient(135deg, var(--clr2), #004f80);
  box-shadow: 0 0 40px rgba(0,105,170,0.4);
  border-color: rgba(114, 183, 237, 0.4);
}
.hiw-card-featured h4,
.hiw-card-featured p { color: #fff !important; }
.hiw-step {
  font-size: 42px;
  font-weight: 900;
  color: rgba(114, 183, 237, 0.15);
  font-family: "Orbitron", monospace;
  line-height: 1;
  margin-bottom: 12px;
}
.hiw-step.featured { color: rgba(255,255,255,0.25); }
.hiw-icon {
  width: 56px;
  height: 56px;
  background: rgba(114, 183, 237, 0.12);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.hiw-card-featured .hiw-icon { background: rgba(255,255,255,0.2); }
.hiw-card h4 { color: #ddd; font-size: 17px; margin-bottom: 10px; }
.hiw-card p  { color: #aaa; font-size: 14px; line-height: 1.7; }

/* ----- Language Grid ----- */
.languages-section {
  background: linear-gradient(145deg, #181818, #1d1d1d);
  border-radius: 30px;
  margin-left: 12px;
  margin-right: 12px;
}
.lang-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.lang-tag {
  background: rgba(114, 183, 237, 0.08);
  border: 1px solid rgba(114, 183, 237, 0.25);
  color: #ddd;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 14px;
  transition: 0.3s;
  cursor: default;
}
.lang-tag:hover {
  background: rgba(114, 183, 237, 0.18);
  border-color: rgba(114, 183, 237, 0.5);
  color: #fff;
  transform: scale(1.05);
}

/* ----- Global Numbers & Branded Calling ----- */
.global-card {
  background: linear-gradient(145deg, #1d1d1d, #181818);
  box-shadow: 7px 7px 21px #0b0b0b, -7px -7px 21px #2b2b2b;
  border-radius: 30px;
  padding: 35px;
  height: 100%;
  border: 1px solid rgba(255,255,255,0.04);
  transition: 0.35s;
}
.global-card:hover {
  transform: translateY(-5px);
  border-color: rgba(114, 183, 237, 0.2);
}
.branded-card {
  background: linear-gradient(135deg, #0a1a2e, #0d2540);
  border-color: rgba(114, 183, 237, 0.2);
}
.gc-icon {
  width: 64px;
  height: 64px;
  background: rgba(114, 183, 237, 0.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.branded-icon {
  background: linear-gradient(135deg, var(--clr2), var(--clr1));
}
.global-card h4 { color: #eee; font-size: 20px; margin-bottom: 12px; }
.global-card p  { color: #bbb; line-height: 1.7; }
.gc-list { list-style: none; padding: 0; margin: 0; }
.gc-list li {
  color: #ccc;
  font-size: 14px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 8px;
}
.gc-list li:last-child { border-bottom: none; }
.gc-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr1);
  flex-shrink: 0;
}

/* ----- Hero bg box ----- */
.hero-bg-box {
  background: #171717 url(../images/lines.png) center/cover;
  padding: 20px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .about-float-badge { right: 10px; bottom: 10px; }
  .trust-num { font-size: 20px; }
  .global-card { margin-bottom: 20px; }
  .languages-section { margin-left: 0; margin-right: 0; border-radius: 0; }
}
@media (max-width: 768px) {
  .voice-globe  { width: 160px; height: 160px; }
  .globe-ring.ring-1 { width: 160px; height: 160px; }
  .globe-ring.ring-2 { width: 120px; height: 120px; }
  .globe-ring.ring-3 { width: 80px;  height: 80px;  }
  .stat-pill { flex-direction: column; gap: 4px; text-align: center; }
  .stat-divider { display: none; }
  .about-float-badge { position: static; margin-top: 12px; justify-content: center; }
}
