/* AI Receptionist landing page — extends style.css */

.ar-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
}

.ar-hero .hero-inner {
  padding: 8rem 0 5rem;
}

.ar-hero-title {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  text-wrap: balance;
}

.ar-hero-hook {
  display: block;
  white-space: nowrap;
}

.ar-hero-accent {
  display: block;
  margin-top: 0.2em;
  color: transparent;
  background: linear-gradient(90deg, var(--secondary), hsl(199, 89%, 68%));
  -webkit-background-clip: text;
  background-clip: text;
}

.ar-smb-mission {
  font-size: clamp(1rem, 2.2vw, 1.125rem);
  line-height: 1.65;
  color: var(--g600);
  margin-bottom: 1.25rem;
}

.ar-smb-section .section-head h2 {
  margin-bottom: 1rem;
}

.ar-brands-head {
  text-align: center;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.45;
  max-width: 32rem;
  margin: 0 auto 0.75rem;
}

.ar-brands-strip .brands-label {
  margin-bottom: 1.25rem;
}

.ar-problem-solve {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.ar-problem-solve li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--g700);
  background: white;
  border: 1px solid var(--g200);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
}

/* ——— ROI / math block ——— */
.ar-roi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ar-roi-stat {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem;
  text-align: center;
}

.ar-roi-number {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}

.ar-roi-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--g800);
  margin-bottom: 0.5rem;
}

.ar-roi-detail {
  font-size: 0.82rem;
  color: var(--g600);
  line-height: 1.55;
  margin: 0;
}

.ar-math-punch {
  text-align: center;
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--primary);
  line-height: 1.5;
  max-width: 36rem;
  margin: 0 auto;
}

.ar-math-punch em {
  font-style: normal;
  color: var(--secondary);
}

.ar-math-roi {
  text-align: center;
  font-size: 1rem;
  color: var(--g600);
  line-height: 1.6;
  max-width: 40rem;
  margin: 1rem auto 0;
}

/* ——— The offer ——— */
.ar-offer-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.ar-offer-main {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.ar-offer-block {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.ar-offer-block h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.85rem;
}

.ar-offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ar-offer-list li {
  font-size: 0.9rem;
  color: var(--g700);
  line-height: 1.55;
  padding: 0.4rem 0 0.4rem 1.35rem;
  position: relative;
}

.ar-offer-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--secondary);
}

.ar-offer-process {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: offer-step;
}

.ar-offer-process li {
  font-size: 0.9rem;
  color: var(--g700);
  line-height: 1.55;
  padding: 0.65rem 0 0.65rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--g100);
}

.ar-offer-process li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.ar-offer-process li::before {
  counter-increment: offer-step;
  content: counter(offer-step);
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ar-offer-process li strong {
  color: var(--primary);
}

.ar-offer-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ar-offer-stat {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.ar-offer-stat-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 0.35rem;
}

.ar-offer-stat-value {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.ar-offer-stat-detail {
  font-size: 0.85rem;
  color: var(--g600);
  line-height: 1.55;
  margin: 0;
}

.ar-offer-stat-detail a {
  color: var(--secondary);
  font-weight: 600;
}

.ar-offer-guarantee {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #0c142c) 100%);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 0.75rem;
  padding: 1.25rem;
  color: white;
}

.ar-offer-guarantee strong {
  display: block;
  font-size: 0.92rem;
  margin-bottom: 0.45rem;
}

.ar-offer-guarantee p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  margin: 0;
}

.ar-offer-investment {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.5rem 1.75rem;
  text-align: center;
}

.ar-offer-investment p {
  font-size: 0.95rem;
  color: var(--g700);
  line-height: 1.65;
  margin: 0;
}

.ar-offer-investment a {
  color: var(--secondary);
  font-weight: 600;
}

.ar-offer-roi {
  margin-top: 0.75rem !important;
  font-weight: 600;
  color: var(--primary) !important;
}

.ar-honest-note {
  background: white;
  border: 1px solid var(--g200);
  border-left: 3px solid var(--secondary);
  border-radius: 0.65rem;
  padding: 1rem 1.15rem;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  color: var(--g700);
  line-height: 1.6;
}

.ar-honest-note strong {
  color: var(--primary);
}

/* ——— Three paths comparison ——— */
.ar-paths {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.ar-path-card {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.ar-path-card h3 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 0.35rem;
}

.ar-path-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--g500);
  margin-bottom: 0.85rem;
}

.ar-path-card p {
  font-size: 0.88rem;
  color: var(--g600);
  line-height: 1.6;
  margin: 0 0 1rem;
}

.ar-path-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  flex: 1;
}

.ar-path-list li {
  font-size: 0.85rem;
  color: var(--g700);
  line-height: 1.5;
  padding: 0.35rem 0 0.35rem 1.25rem;
  position: relative;
}

.ar-path-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--g300);
}

.ar-path-list li.ar-path-good::before {
  background: #22c55e;
}

.ar-path-list li.ar-path-bad::before {
  background: #ef4444;
}

.ar-path-verdict {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--g800);
  background: var(--g50);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: auto;
  line-height: 1.45;
}

/* ——— RC answer block ——— */
.ar-answer {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #0c142c) 100%);
  border-radius: 1rem;
  padding: 2rem 2rem 2.25rem;
  color: white;
  border: 1px solid rgba(14, 165, 233, 0.35);
  box-shadow: 0 0 48px rgba(14, 165, 233, 0.15);
}

.ar-answer-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.ar-answer h3 {
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.ar-answer > p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  max-width: 40rem;
}

.ar-answer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.ar-answer-point {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.65rem;
  padding: 1rem 1.1rem;
}

.ar-answer-point strong {
  display: block;
  font-size: 0.92rem;
  color: white;
  margin-bottom: 0.35rem;
}

.ar-answer-point span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

.ar-answer-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.ar-answer-note {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  margin: 0;
}

/* ——— Demo challenge ——— */
.ar-challenge-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 1.75rem;
}

.ar-challenge-step {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0.45rem 1rem;
}

.ar-challenge-step strong {
  color: var(--secondary);
  margin-right: 0.25rem;
}

.ar-phone-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(14, 165, 233, 0.35);
  border-radius: 1rem;
  padding: 1.25rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 0 40px rgba(14, 165, 233, 0.12);
}

.ar-phone-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--secondary);
}

.ar-phone-number {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: white;
  letter-spacing: 0.02em;
}

.ar-phone-number a {
  color: inherit;
  transition: color var(--ease);
}

.ar-phone-number a:hover {
  color: var(--secondary-hover);
}

.ar-phone-hint {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.ar-demo-pill {
  display: block;
  text-align: center;
  max-width: 22rem;
  margin: 1rem auto 0;
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.ar-flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  counter-reset: ar-step;
}

.ar-flow-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  width: 100%;
}

.ar-flow-row--bottom {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: calc((100% - 2.5rem) / 3 * 2 + 1.25rem);
  max-width: 100%;
}

.ar-flow-step {
  position: relative;
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.5rem 1.25rem 1.25rem;
  counter-increment: ar-step;
}

.ar-flow-step::before {
  content: counter(ar-step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.12);
  color: var(--secondary);
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.ar-flow-step h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--primary);
}

.ar-flow-step p {
  font-size: 0.88rem;
  color: var(--g600);
  line-height: 1.6;
  margin: 0;
}

.ar-transcript {
  background: var(--primary-dark);
  border-radius: 1rem;
  padding: 1.75rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 36rem;
  margin: 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ar-transcript-line {
  margin-bottom: 0.85rem;
}

.ar-transcript-line:last-child {
  margin-bottom: 0;
}

.ar-transcript-line .speaker {
  font-weight: 600;
  color: var(--secondary);
  margin-right: 0.35rem;
}

.ar-transcript-line.user .speaker {
  color: rgba(255, 255, 255, 0.55);
}

.ar-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.ar-feature {
  background: white;
  border: 1px solid var(--g200);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.ar-feature-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background: rgba(14, 165, 233, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.ar-feature h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.ar-feature p {
  font-size: 0.88rem;
  color: var(--g600);
  margin: 0;
  line-height: 1.6;
}

.ar-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}

.ar-industry {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  padding: 0.45rem 1rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
}

.ar-faq details {
  border-bottom: 1px solid var(--g200);
  padding: 1.25rem 0;
}

.ar-faq details:first-child {
  border-top: 1px solid var(--g200);
}

.ar-faq summary {
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ar-faq summary::-webkit-details-marker {
  display: none;
}

.ar-faq summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--secondary);
  flex-shrink: 0;
}

.ar-faq details[open] summary::after {
  content: "−";
}

.ar-faq p {
  margin-top: 0.75rem;
  color: var(--g600);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-right: 2rem;
}

.ar-sticky-cta {
  display: none;
}

@media (max-width: 1024px) {
  .ar-roi-grid,
  .ar-paths,
  .ar-answer-grid,
  .ar-offer-layout {
    grid-template-columns: 1fr;
  }
  .ar-flow-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .ar-flow-row--bottom {
    width: 100%;
  }
  .ar-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .ar-hero {
    min-height: auto;
    padding-top: 4.75rem;
    padding-bottom: 0;
  }
  .ar-hero .hero-inner {
    padding: 1.25rem 0 3rem;
  }
  .ar-hero .hero-badge {
    margin-bottom: 1.25rem;
  }
  .ar-hero-hook {
    white-space: normal;
    text-wrap: balance;
  }
  .ar-hero-title {
    font-size: clamp(1.85rem, 7vw, 2.5rem);
  }
  .ar-answer {
    padding: 1.5rem 1.25rem;
  }
  .ar-flow-row,
  .ar-flow-row--bottom {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .ar-feature-grid {
    grid-template-columns: 1fr;
  }
  .ar-sticky-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 0.75rem 1rem;
    background: rgba(12, 20, 44, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0.75rem;
  }
  .ar-sticky-cta .btn {
    flex: 1;
    height: 3rem;
    font-size: 0.9rem;
  }
  body.ar-page {
    padding-bottom: 4.5rem;
  }
}