/* ─────────────────────────────────────────────────────────────────────────────
   ProView Connect Demo — Stylesheet
   Brand: ProView Connect
   Colors: Teal #0ab9af · Black #000000 · White #ffffff
   Font:   Plus Jakarta Sans (Google Fonts)
───────────────────────────────────────────────────────────────────────────── */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

/* ── Reset & base ─────────────────────────────────────────────────────────── */
.acd-wrap *,
.acd-wrap *::before,
.acd-wrap *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.acd-wrap {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #000;
  max-width: 860px;
  margin: 0 auto;
  padding: 24px 16px 60px;
}

/* ── Stage visibility ─────────────────────────────────────────────────────── */
.acd-stage {
  display: none;
  animation: acdIn .45s cubic-bezier(.22,.68,0,1.2) both;
}
.acd-stage.acd-active {
  display: block;
}

@keyframes acdIn {
  from { opacity: 0; transform: translateY(24px) scale(.98); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAGE 1 · FORM
───────────────────────────────────────────────────────────────────────────── */

/* Hero / intro */
.acd-hero {
  text-align: center;
  margin-bottom: 36px;
}

.acd-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(10,185,175,.1);
  color: #0ab9af;
  border: 1px solid rgba(10,185,175,.35);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.acd-hero h2 {
  line-height: 1.15;
  margin-bottom: 14px;
}

.acd-hero p {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto;
}

/* Form card */
.acd-form {
  background: #fff;
  border-radius: 18px;
  padding: 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
  border: 1.5px solid rgba(10,185,175,.2);
}

.acd-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.acd-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.acd-field.acd-full {
  margin-bottom: 20px;
}

.acd-field label {
  font-size: 13.5px;
  font-weight: 700;
  color: #000;
}

.acd-field label span {
  color: #0ab9af;
}

.acd-field input,
.acd-field select,
.acd-field textarea {
  font-family: inherit;
  font-size: 15px;
  color: #000;
  background: #fafafa;
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  padding: 0 16px;
  height: 48px;
  outline: none;
  transition: border-color .2s, box-shadow .2s, background .2s;
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.acd-field textarea {
  height: auto;
  padding: 13px 16px;
  resize: vertical;
  min-height: 90px;
}

.acd-field select {
  padding: 0 36px 0 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230ab9af' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
  cursor: pointer;
  text-overflow: ellipsis;
}

.acd-field input:focus,
.acd-field select:focus,
.acd-field textarea:focus {
  border-color: #0ab9af;
  background: #fff;
  box-shadow: 0 0 0 3.5px rgba(10,185,175,.15);
}

.acd-field small {
  font-size: 12px;
  color: #0ab9af;
  font-weight: 500;
  margin-top: 1px;
}

.acd-form-footer {
  text-align: center;
  margin-top: 8px;
}

/* Primary button */
.acd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #0ab9af;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 16px 36px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(10,185,175,.3);
  transition: transform .18s, box-shadow .18s, opacity .18s;
  text-decoration: none;
  white-space: normal;
  text-align: center;
}
.acd-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(10,185,175,.4);
}
.acd-btn:active:not(:disabled) {
  transform: translateY(0);
}
.acd-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}
.acd-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.acd-btn-outline {
  background: transparent;
  border: 2px solid #0ab9af;
  color: #0ab9af;
  box-shadow: none;
}
.acd-btn-outline:hover:not(:disabled) {
  background: rgba(10,185,175,.08);
  box-shadow: none;
}

/* Slide-to-submit */
@keyframes acdThumbGlow {
  0%, 100% { box-shadow: 0 2px 16px rgba(10,185,175,.45); }
  50%       { box-shadow: 0 4px 28px rgba(10,185,175,.85), 0 0 0 10px rgba(10,185,175,.13); }
}
@keyframes acdWrapBreath {
  0%, 100% { border-color: rgba(10,185,175,.3); }
  50%       { border-color: rgba(10,185,175,.65); }
}

.acd-slide-wrap {
  position: relative;
  height: 64px;
  max-width: 400px;
  margin: 0 auto;
  background: rgba(10,185,175,.1);
  border: 2px solid rgba(10,185,175,.3);
  border-radius: 999px;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: default;
  animation: acdWrapBreath 2s ease-in-out infinite;
}

.acd-slide-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(10,185,175,.18);
  border-radius: 999px;
  pointer-events: none;
}

.acd-slide-thumb {
  position: absolute;
  left: 6px; top: 6px;
  width: 52px; height: 52px;
  background: #0ab9af;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: grab;
  z-index: 2;
  will-change: transform;
  animation: acdThumbGlow 2s ease-in-out infinite;
}
.acd-slide-thumb:active { cursor: grabbing; }
.acd-slide-thumb svg {
  width: 20px;
  height: 20px;
  color: #fff;
  pointer-events: none;
}

.acd-slide-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 64px;
  font-size: 17px;
  font-weight: 800;
  color: #0ab9af;
  pointer-events: none;
  z-index: 1;
  letter-spacing: 1.5px;
  white-space: nowrap;
}

.acd-slide-wrap.acd-slide-submitting {
  pointer-events: none;
  animation: none;
}
.acd-slide-wrap.acd-slide-submitting .acd-slide-thumb {
  animation: none;
}
.acd-slide-wrap.acd-slide-submitting .acd-slide-label {
  padding-left: 0;
}
.acd-slide-wrap.acd-slide-disabled {
  opacity: .5;
  pointer-events: none;
  animation: none;
}

.acd-micro {
  margin-top: 12px;
  font-size: 11.5px;
  color: #aaa;
  line-height: 1.5;
}

/* Honeypot — visually hidden but not display:none (avoids bot detection) */
.acd-honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

/* Info button + popup */
.acd-info-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 5px;
  vertical-align: middle;
}
.acd-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1.5px solid #0ab9af;
  border-radius: 50%;
  background: transparent;
  color: #0ab9af;
  font-size: 10px;
  font-weight: 700;
  font-style: italic;
  line-height: 1;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.acd-info-btn:hover,
.acd-info-btn.acd-info-open {
  background: #0ab9af;
  color: #fff;
}
.acd-info-popup {
  display: none;
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  width: 260px;
  padding: 10px 13px;
  background: #fff;
  border: 1px solid rgba(10,185,175,.35);
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,.12);
  font-size: 12.5px;
  font-weight: 400;
  font-style: normal;
  color: #333;
  line-height: 1.55;
  white-space: normal;
  z-index: 100;
  pointer-events: none;
}
.acd-info-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: #fff;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.08));
}
.acd-info-wrap.acd-info-open .acd-info-popup {
  display: block;
}

.acd-error-box {
  margin-top: 16px;
  background: #fff3f3;
  border: 1.5px solid #f5c2c2;
  color: #b00;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* ─────────────────────────────────────────────────────────────────────────────
   SHARED: CENTER PANEL
───────────────────────────────────────────────────────────────────────────── */

.acd-center-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 24px;
  gap: 40px;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAGE 2 · SENDING
───────────────────────────────────────────────────────────────────────────── */

/* Pulsing phone orb */
.acd-pulse-wrap {
  position: relative;
  width: 110px;
  height: 110px;
  flex-shrink: 0;
}

.acd-pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(10,185,175,.4);
  animation: acdPulse 2.4s ease infinite;
}
.acd-pulse-ring.r2 { animation-delay: .8s; }

@keyframes acdPulse {
  0%   { transform: scale(1);   opacity: .9; }
  100% { transform: scale(2.2); opacity: 0;  }
}

.acd-pulse-core {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #0ab9af;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 36px rgba(10,185,175,.45);
  animation: acdGlow 2s ease infinite alternate;
}
.acd-pulse-core svg {
  width: 48px;
  height: 48px;
  color: #fff;
  animation: acdRockPhone .55s ease infinite alternate;
}

@keyframes acdGlow {
  from { box-shadow: 0 0 24px rgba(10,185,175,.35); }
  to   { box-shadow: 0 0 52px rgba(10,185,175,.65); }
}
@keyframes acdRockPhone {
  from { transform: rotate(-12deg); }
  to   { transform: rotate(12deg);  }
}

/* Steps list */
.acd-steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 360px;
}

.acd-step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 10px;
  background: #f5f5f5;
  border: 1.5px solid transparent;
  color: #bbb;
  font-size: 14px;
  font-weight: 600;
  transition: all .35s ease;
}

.acd-step.active {
  background: rgba(10,185,175,.07);
  border-color: rgba(10,185,175,.3);
  color: #000;
}

.acd-step.done {
  background: rgba(10,185,175,.05);
  border-color: rgba(10,185,175,.18);
  color: #0ab9af;
}

.acd-step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ddd;
  flex-shrink: 0;
  transition: background .3s;
}
.acd-step.active .acd-step-dot {
  background: #0ab9af;
  animation: acdDotBeat 1s ease infinite;
  box-shadow: 0 0 0 3px rgba(10,185,175,.25);
}
.acd-step.done .acd-step-dot {
  background: #0ab9af;
}

@keyframes acdDotBeat {
  0%, 100% { box-shadow: 0 0 0 3px rgba(10,185,175,.25); }
  50%       { box-shadow: 0 0 0 6px rgba(10,185,175,.08); }
}

.acd-step-text { flex: 1; }

.acd-check {
  width: 17px;
  height: 17px;
  color: #0ab9af;
  opacity: 0;
  transition: opacity .3s;
  flex-shrink: 0;
}
.acd-step.done .acd-check { opacity: 1; }

/* ─────────────────────────────────────────────────────────────────────────────
   STAGE 3 · RINGING
───────────────────────────────────────────────────────────────────────────── */

.acd-phone-card {
  width: 100%;
  max-width: 380px;
  background: linear-gradient(160deg, #0ab9af 0%, #07918a 100%);
  border-radius: 28px;
  padding: 36px 28px;
  color: #fff;
  text-align: center;
  box-shadow: 0 16px 60px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.acd-phone-top {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
  width: 100%;
}

.acd-avatar {
  width: 54px;
  height: 54px;
  background: rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.acd-avatar svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.acd-caller-tag {
  font-size: 11px;
  opacity: .55;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.acd-caller-name {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.2;
  margin: 3px 0;
}
.acd-caller-sub {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  font-weight: 500;
}

/* Ringing rings */
.acd-ring-wrap {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.acd-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(10,185,175,.55);
  animation: acdRingWave 2.1s ease infinite;
}
.acd-ring.w2 { animation-delay: .7s; }
.acd-ring.w3 { animation-delay: 1.4s; }

@keyframes acdRingWave {
  0%   { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.7); opacity: 0; }
}

.acd-ring-core {
  position: relative;
  z-index: 1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0ab9af;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 28px rgba(10,185,175,.5);
  animation: acdPhoneRing .45s ease infinite alternate;
}
.acd-ring-core svg {
  width: 38px;
  height: 38px;
  color: #fff;
}

@keyframes acdPhoneRing {
  from { transform: rotate(-10deg) scale(1);    }
  to   { transform: rotate(10deg)  scale(1.04); }
}

.acd-ring-label {
  font-size: 15px;
  font-weight: 700;
  opacity: .9;
  animation: acdBlink 1.6s ease infinite;
}

.acd-ring-sub {
  font-size: 13px;
  opacity: .55;
  line-height: 1.5;
  max-width: 260px;
  margin: 0 auto;
}

@keyframes acdBlink {
  0%, 100% { opacity: .75; }
  50%       { opacity: .25; }
}

/* Progress bar */
.acd-ring-progress {
  width: 100%;
  max-width: 280px;
  height: 4px;
  background: rgba(255,255,255,.15);
  border-radius: 999px;
  overflow: hidden;
}

.acd-ring-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0ab9af, rgba(10,185,175,.4));
  border-radius: 999px;
  transition: width .3s linear;
}

/* Answer button */
.acd-btn-answer {
  background: linear-gradient(135deg, #22c55e, #16a34a);
  box-shadow: 0 6px 22px rgba(34,197,94,.4);
  font-size: 17px;
  padding: 17px 42px;
  width: 100%;
  max-width: 260px;
  border-radius: 999px;
  transition: transform .2s, box-shadow .2s, background .3s, opacity .3s;
}
.acd-btn-answer:not(:disabled):hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 10px 30px rgba(34,197,94,.5);
}
.acd-btn-answer.acd-ready {
  animation: acdAnswerPulse 1.4s ease infinite;
}

@keyframes acdAnswerPulse {
  0%, 100% { box-shadow: 0 6px 22px rgba(34,197,94,.4); }
  50%       { box-shadow: 0 6px 36px rgba(34,197,94,.7); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAGE 4 · ACTIVE CALL
───────────────────────────────────────────────────────────────────────────── */

.acd-call-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.acd-call-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #1a1a1a;
  color: #fff;
  padding: 15px 22px;
  border-radius: 14px;
  flex-wrap: wrap;
  gap: 10px;
}

.acd-call-live {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  font-size: 15px;
}

.acd-live-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0ab9af;
  animation: acdLiveDot 1s ease infinite;
}

@keyframes acdLiveDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(.7); }
}

.acd-timer {
  font-size: 20px;
  font-weight: 800;
  color: #0ab9af;
  font-variant-numeric: tabular-nums;
  letter-spacing: .5px;
}

/* Audio status badge */
.acd-audio-status {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.1);
  padding: 5px 10px;
  border-radius: 6px;
  white-space: nowrap;
}
.acd-audio-status.acd-audio-error {
  background: rgba(200,50,50,.25);
  color: #f87171;
}

/* Call action group (mute + hangup) */
.acd-call-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

/* Mute button */
.acd-btn-mute {
  background: rgba(255,255,255,.1);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.2);
  box-shadow: none;
  font-size: 14px;
  padding: 10px 18px;
  border-radius: 8px;
  gap: 7px;
}
.acd-btn-mute:hover:not(:disabled) {
  background: rgba(255,255,255,.2);
  transform: none;
  box-shadow: none;
}
.acd-btn-mute.acd-muted {
  background: rgba(10,185,175,.15);
  border-color: rgba(10,185,175,.5);
  color: #0ab9af;
  box-shadow: none;
}
.acd-btn-mute svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* Hang up */
.acd-btn-hangup {
  background: linear-gradient(135deg, #e53e3e, #c53030);
  box-shadow: 0 4px 16px rgba(229,62,62,.35);
  font-size: 14px;
  padding: 10px 22px;
  border-radius: 8px;
}
.acd-btn-hangup svg {
  width: 16px;
  height: 16px;
}
.acd-btn-hangup:hover:not(:disabled) {
  box-shadow: 0 6px 22px rgba(229,62,62,.5);
}

.acd-call-body {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
}

/* Transcript card */
.acd-transcript-card {
  background: #fff;
  border-radius: 14px;
  border: 1.5px solid rgba(10,185,175,.22);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}

.acd-tc-header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  background: rgba(10,185,175,.07);
  border-bottom: 1px solid rgba(10,185,175,.16);
  font-weight: 700;
  font-size: 13.5px;
}
.acd-tc-header svg {
  width: 17px;
  height: 17px;
  color: #0ab9af;
}

.acd-live-badge {
  margin-left: auto;
  background: #0ab9af;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 1px;
  animation: acdBlink 1.6s ease infinite;
}

.acd-transcript-body {
  padding: 18px 20px;
  min-height: 160px;
  max-height: 280px;
  overflow-y: auto;
  font-size: 15px;
  line-height: 1.75;
  scroll-behavior: smooth;
}

.acd-line {
  margin-bottom: 10px;
  animation: acdIn .3s ease both;
}
.acd-line strong {
  color: #0ab9af;
}
.acd-line-you strong {
  color: #000;
}

/* Partial / in-progress text — inline span inside the block element.
   Nothing is ever removed from the DOM; only the text content changes. */
.acd-partial-tail {
  opacity: .6;
  font-style: italic;
}
.acd-partial-tail::after {
  content: '▋';
  display: inline-block;
  margin-left: 2px;
  color: #0ab9af;
  animation: acdCursor .75s step-end infinite;
}
.acd-line-you .acd-partial-tail::after {
  color: #000;
}
@keyframes acdCursor {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0; }
}

/* Typing dots */
.acd-typing {
  display: flex;
  gap: 5px;
  padding: 4px 0;
}
.acd-typing span {
  width: 8px;
  height: 8px;
  background: #0ab9af;
  border-radius: 50%;
  animation: acdTyping 1.4s ease infinite;
}
.acd-typing span:nth-child(2) { animation-delay: .2s; }
.acd-typing span:nth-child(3) { animation-delay: .4s; }

@keyframes acdTyping {
  0%, 100% { transform: translateY(0);   opacity: .4; }
  50%       { transform: translateY(-7px); opacity: 1; }
}

/* Lead details card */
.acd-lead-card {
  background: rgba(10,185,175,.07);
  border-radius: 14px;
  padding: 20px 22px;
  border: 1px solid rgba(10,185,175,.18);
  align-self: start;
}

.acd-lead-card h4 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.1px;
  color: #999;
  font-weight: 800;
  margin-bottom: 14px;
}

.acd-lead-dl {
  display: grid;
  gap: 12px;
}

.acd-lead-dl dt {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #aaa;
  font-weight: 700;
  margin-bottom: 1px;
}

.acd-lead-dl dd {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  word-break: break-word;
}

/* ─────────────────────────────────────────────────────────────────────────────
   STAGE 5 · COMPLETE
───────────────────────────────────────────────────────────────────────────── */

.acd-complete {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.acd-tick {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #0ab9af;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(10,185,175,.45);
}
.acd-tick svg {
  width: 38px;
  height: 38px;
  color: #fff;
}

.acd-complete h2 {
  font-size: clamp(26px, 5vw, 36px);
  font-weight: 800;
}

.acd-complete p {
  color: #555;
  font-size: 16px;
  line-height: 1.65;
  max-width: 500px;
}

.acd-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.acd-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.acd-stat strong {
  font-size: 38px;
  font-weight: 900;
  color: #0ab9af;
  line-height: 1;
}
.acd-stat span {
  font-size: 13px;
  color: #555;
  font-weight: 600;
}

.acd-cta-row {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─────────────────────────────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────────────────────────────── */

/* ── Tablet / large phone  ≤ 660px ───────────────────────────────────────── */
@media (max-width: 660px) {

  .acd-wrap {
    padding: 16px 14px 48px;
  }

  .acd-hero {
    margin-bottom: 24px;
  }
  .acd-hero p {
    font-size: 15px;
  }

  .acd-form {
    padding: 24px 18px;
    border-radius: 14px;
  }
  .acd-row {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-bottom: 14px;
  }
  .acd-field.acd-full {
    margin-bottom: 14px;
  }

  .acd-slide-wrap {
    max-width: 100%;
  }

  .acd-center-panel {
    padding: 32px 16px 40px;
    gap: 28px;
  }

  .acd-steps {
    max-width: 100%;
  }

  .acd-phone-card {
    padding: 28px 20px;
  }

  .acd-call-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px 16px;
  }
  .acd-call-bar > *:first-child {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .acd-call-actions {
    width: 100%;
    justify-content: flex-end;
  }

  .acd-call-body {
    grid-template-columns: 1fr;
  }
  .acd-transcript-body {
    max-height: 220px;
  }

  .acd-stats {
    gap: 24px;
  }
  .acd-stat strong {
    font-size: 30px;
  }
  .acd-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .acd-cta-row .acd-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ── Small phone  ≤ 420px ─────────────────────────────────────────────────── */
@media (max-width: 420px) {

  .acd-form {
    padding: 20px 14px;
  }

  .acd-field input,
  .acd-field select,
  .acd-field textarea {
    font-size: 14px;
  }

  .acd-pulse-wrap {
    width: 90px;
    height: 90px;
  }
  .acd-pulse-core svg {
    width: 40px;
    height: 40px;
  }
  .acd-ring-wrap {
    width: 110px;
    height: 110px;
  }
  .acd-ring-core {
    width: 68px;
    height: 68px;
  }
  .acd-ring-core svg {
    width: 32px;
    height: 32px;
  }

  .acd-phone-card {
    padding: 22px 16px;
    border-radius: 18px;
    gap: 18px;
  }

  .acd-btn-mute,
  .acd-btn-hangup {
    font-size: 13px;
    padding: 9px 14px;
  }

  .acd-stats {
    gap: 16px 28px;
  }
  .acd-stat strong {
    font-size: 26px;
  }
}
