/* ═══════════════════════════════════════
   AVA PAGE — Scoped dark-theme overrides
   Loaded only on /ava.php
   ═══════════════════════════════════════ */

/* Dark-theme token overrides scoped to AVA sections */
.ava-page,
.ava-page .ava-hero,
.ava-page .ava-steps,
.ava-page .ava-badge {
  --text2:   #A9B7C8;
  --border:  rgba(255,255,255,.12);
}

.ava-page {
  background: var(--navy);
  color: var(--white);
}

/* ═══════════════════════════════════════
   HERO (widget lives here — no CSS waveform)
   ═══════════════════════════════════════ */
.ava-hero {
  position: relative;
  padding: 170px 0 90px;
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(34,181,189,.14), transparent 60%),
    var(--navy);
  overflow: hidden;
}

.ava-hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .8rem;
  letter-spacing: .35em;
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.ava-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
}

.ava-hero h1 em {
  font-style: italic;
  color: var(--teal);
  text-shadow: 0 0 40px rgba(34,181,189,.5);
}

.ava-hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: #A9B7C8;
  font-weight: 300;
  max-width: 560px;
  margin: 18px auto 0;
}

/* Real widget mount — GHL Voice AI Chat Widget */
#talk-cta-mount {
  margin: 44px auto 0;
  min-height: 460px;
  max-width: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* §5 — Attribution badge (pill above widget) */
.ava-attribution-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(34,181,189,.4);
  border-radius: 30px;
  padding: 8px 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 600;
  background: rgba(34,181,189,.08);
}

.ava-attribution-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 8px rgba(34,181,189,.7);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════
   THREE WAYS AVA SHOWS UP
   ═══════════════════════════════════════ */
.ava-section {
  padding: 80px 0;
}

.ava-section .eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--teal);
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  margin-bottom: 22px;
}

.ava-section .eyebrow::before,
.ava-section .eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

.ava-tri-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.ava-tri-card {
  text-align: center;
  padding: 0 12px;
}

.ava-tri-icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(34,181,189,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 24px rgba(34,181,189,.15);
}

.ava-tri-icon svg {
  width: 34px;
  height: 34px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.6;
}

.ava-tri-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
  color: var(--gold);
  margin-bottom: 8px;
}

.ava-tri-card p {
  font-size: .92rem;
  color: #A9B7C8;
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   4-STEP PROCESS
   ═══════════════════════════════════════ */
.ava-steps {
  background: var(--navy2);
  padding: 90px 0;
}

.ava-steps .section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 52px;
}

.ava-step-row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  max-width: 640px;
  margin: 0 auto 40px;
  padding: 0 32px;
}

.ava-step-row:last-child {
  margin-bottom: 0;
}

.ava-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--gold);
  width: 52px;
  flex-shrink: 0;
}

.ava-step-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1.5px solid rgba(34,181,189,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ava-step-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.6;
}

.ava-step-text h4 {
  font-family: 'Barlow', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.ava-step-text p {
  font-size: .9rem;
  color: #A9B7C8;
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   TRUST / COMPLIANCE STRIP
   ═══════════════════════════════════════ */
.ava-trust {
  padding: 70px 0;
  text-align: center;
  background: var(--navy);
}

.ava-trust-note {
  max-width: 620px;
  margin: 0 auto 44px;
  font-size: .86rem;
  color: #A9B7C8;
  font-weight: 300;
  line-height: 1.7;
  padding: 0 32px;
}

.ava-trust-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  padding: 0 32px;
}

.ava-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 30px;
  padding: 10px 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .76rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #A9B7C8;
  font-weight: 600;
}

.ava-trust-badge svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
}

/* ═══════════════════════════════════════
   AVA INSIDE BADGE SHOWCASE
   ═══════════════════════════════════════ */
.ava-badge {
  background: var(--navy2);
  padding: 90px 0;
  text-align: center;
}

.ava-badge-showcase {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  border: 1.5px solid rgba(34,181,189,.45);
  border-radius: 16px;
  padding: 26px 40px;
  background: radial-gradient(circle at 50% 0%, rgba(34,181,189,.12), transparent 70%);
}

.ava-badge-powered {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .66rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #A9B7C8;
}

.ava-badge-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
}

.ava-badge-name em {
  font-style: italic;
  color: var(--teal);
}

.ava-badge-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}

.ava-badge-bis {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: .62rem;
  letter-spacing: .1em;
  color: #A9B7C8;
  margin-top: 10px;
}

/* ═══════════════════════════════════════
   MOBILE
   ═══════════════════════════════════════ */
@media (max-width: 780px) {
  .ava-tri-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ava-hero {
    padding: 140px 0 70px;
  }

  #talk-cta-mount {
    min-height: 400px;
    max-width: 320px;
  }

  .ava-step-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
