*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --teal: #4A6572;
  --teal-mid: #5a7784;
  --teal-light: #E8F1F5;
  --teal-pale: #f2f7fa;
  --coral: #F87462;
  --coral-hover: #e8604e;
  --coral-light: #fff0ee;
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-2: #f0f4f6;
  --border: rgba(74, 101, 114, 0.12);
  --border-md: rgba(74, 101, 114, 0.2);
  --text: #1e2c33;
  --text-2: #4a6572;
  --text-3: #8aa0ab;
  --green: #1d6e4f;
  --green-light: #e2f5ec;
  --red: #9b2226;
  --red-light: #fce4e4;
  --amber: #7d4e00;
  --amber-light: #fdf0d5;
  --blue: #1a4a7a;
  --blue-light: #dbeafe;
  --radius: 14px;
  --radius-sm: 9px;
  --shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  font-size: 15px;
  line-height: 1.6;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.05);
}

.avc-header-inner {
  max-width: 1140px;
  margin: 0 auto;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.avc-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.avc-logo-mark {
  width: 36px;
  height: 36px;
}

.avc-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.avc-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--teal);
  letter-spacing: -0.01em;
}

.avc-logo-tagline {
  font-size: 10px;
  color: var(--text-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.avc-header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.avc-header-phone {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.15s;
}

.avc-header-phone:hover {
  color: var(--coral);
}

.avc-header-cta {
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 9px 18px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
  font-family: 'Inter', sans-serif;
}

.avc-header-cta:hover {
  background: var(--coral-hover);
}

.avc-header-cta:active {
  transform: scale(0.98);
}

.avc-header-cta-short {
  display: none;
}

.avc-header-cta-long {
  display: inline;
}

@media (max-width: 480px) {
  .avc-header-cta-short {
    display: inline;
  }

  .avc-header-cta-long {
    display: none;
  }
}

.avc-trust-bar {
  background: var(--teal);
  padding: 10px 2rem;
  overflow: hidden;
}

.avc-trust-bar-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.avc-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.88);
  white-space: nowrap;
}

.avc-trust-divider {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.25);
}

.avc-hero {
  background: var(--teal-light);
  padding: 3rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.avc-hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--bg);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.avc-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 101, 114, 0.1);
  border: 1px solid rgba(74, 101, 114, 0.2);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.25rem;
}

.avc-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.avc-hero h1 em {
  font-style: italic;
  color: var(--teal);
}

.avc-hero p {
  font-size: 16px;
  color: var(--text-2);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  font-weight: 400;
  line-height: 1.7;
}

.avc-hero-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.avc-hero-step {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border-md);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  margin: 4px;
}

.avc-step-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avc-main {
  max-width: 1140px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 400px;
/*   grid-template-columns: 1fr minmax(0, 400px); */
  gap: 1.5rem;
  align-items: start;
}

.avc-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: fadeUp 0.4s ease both;
}

.avc-panel:nth-child(2) {
  animation-delay: 0.07s;
}

.avc-results-panel {
  animation: fadeUp 0.4s 0.2s ease both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avc-panel-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--surface);
}

.avc-panel-step {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avc-panel-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.01em;
}

.avc-panel-body {
  padding: 1.5rem;
}

.avc-norwood-section {
  margin-bottom: 1rem;
}

.avc-norwood-row-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 6px;
  margin-top: 12px;
}

.avc-norwood-row-label:first-child {
  margin-top: 0;
}

.avc-norwood-grid {
  display: grid;
  gap: 7px;
  margin-bottom: 0;
}

.avc-norwood-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.avc-norwood-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.avc-nw-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 10px 6px 9px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--surface);
  transition: all 0.16s ease;
  overflow: hidden;
}

.avc-nw-btn:hover {
  border-color: var(--teal);
  background: var(--teal-light);
}

.avc-nw-btn.active {
  background: var(--teal);
  border-color: var(--teal);
}

.avc-nw-btn.active .avc-nw-label {
  color: rgba(255, 255, 255, 0.65);
}

.avc-nw-btn.active .avc-nw-stage {
  color: #fff;
}

.avc-nw-stage {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
}

.avc-nw-label {
  font-size: 10px;
  color: var(--text-3);
  text-align: center;
  line-height: 1.3;
}

.avc-nw-flag {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1px 5px;
  border-radius: 3px;
  margin-bottom: 2px;
  text-align: center;
}

.avc-nw-flag-maybe {
  background: var(--amber-light);
  color: var(--amber);
}

.avc-nw-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.avc-nw-legend-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: var(--text-3);
}

.avc-nw-legend-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

@media (max-width: 640px) {
  .avc-nw-btn svg {
    width: 38px !important;
    height: 44px !important;
  }

  .avc-nw-btn {
    padding: 7px 3px 7px;
  }

  .avc-nw-stage {
    font-size: 11px;
  }

  .avc-nw-label {
    font-size: 9px;
  }

  .avc-nw-flag {
    font-size: 7px;
    padding: 1px 3px;
  }
}

.avc-field {
  margin-bottom: 1.25rem;
}

.avc-field:last-child {
  margin-bottom: 0;
}

.avc-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
  display: block;
  line-height: 1.4;
}

.avc-hint {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.5;
}

.avc-btn-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.avc-opt-btn {
  padding: 10px 10px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-2);
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: center;
  line-height: 1.35;
  transition: all 0.14s ease;
  border-radius: 100px !important;
}

.avc-opt-btn:hover {
  border-color: var(--teal-mid);
  color: var(--teal);
  background: var(--teal-pale);
}

.avc-opt-btn.active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 600;
}

.avc-divider {
  height: 1px;
  background: var(--border);
  margin: 1.25rem 0;
}

.avc-results-panel {
  position: sticky;
  top: 82px;
}

.avc-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 1rem;
}

.avc-metric-card {
  background: var(--teal-pale);
  border: 1px solid var(--teal-light);
  border-radius: var(--radius-sm);
  padding: 13px 13px 11px;
}

.avc-metric-label {
  font-size: 11px;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 5px;
  line-height: 1.3;
  letter-spacing: 0.01em;
}

.avc-metric-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.avc-metric-sub {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 4px;
  line-height: 1.4;
}

.avc-viability-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.avc-viability-title {
  font-size: 13px;
  font-weight: 600;
}

.avc-badge {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}

.avc-badge-green {
  background: var(--green-light);
  color: var(--green);
}

.avc-badge-amber {
  background: var(--amber-light);
  color: var(--amber);
}

.avc-badge-red {
  background: var(--red-light);
  color: var(--red);
}

.avc-viability-track {
  height: 7px;
  background: var(--surface-2);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 6px;
  border: 1px solid var(--border);
}

.avc-viability-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1), background 0.4s;
}

.avc-viability-note {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.55;
}

.avc-rec-card {
  border-radius: var(--radius-sm);
  padding: 14px;
  margin-bottom: 1rem;
  border-left: 3px solid;
}

.avc-rec-card.avc-rec-fue {
  background: var(--green-light);
  border-color: var(--green);
}

.avc-rec-card.avc-rec-both {
  background: var(--amber-light);
  border-color: var(--amber);
}

.avc-rec-card.avc-none {
  background: var(--surface-2);
  border-color: var(--border-md);
}

.avc-rec-type {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.avc-rec-card.avc-fue .avc-rec-type {
  color: var(--green);
}

.avc-rec-card.avc-both .avc-rec-type {
  color: var(--amber);
}

.avc-rec-card.avc-none .avc-rec-type {
  color: var(--text-3);
}

.avc-rec-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text);
}

.avc-rec-body {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
}

.avc-cost-bridge {
  background: var(--teal);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin: 1rem 0 0;
  text-align: center;
}

.avc-cost-bridge-range {
  margin-bottom: 10px;
}

.avc-cost-bridge-label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
}

.avc-cost-bridge-price {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.avc-cost-bridge-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 12px 16px;
  cursor: pointer;
  margin-bottom: 8px;
  transition: background 0.15s, transform 0.1s;
}

.avc-cost-bridge-cta:hover {
  background: var(--coral-hover);
}

.avc-cost-bridge-cta:active {
  transform: scale(0.98);
}

.avc-cost-bridge-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
}

.avc-cost-bridge.avc-hidden {
  display: none;
}

.avc-insight {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.avc-insight:last-child {
  border-bottom: none;
}

.avc-insight-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
  margin-top: 7px;
  flex-shrink: 0;
}

.avc-insight-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
}

.avc-pkg-card {
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px;
}

.avc-pkg-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 12px;
}

.avc-pkg-size {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 4px;
}

.avc-pkg-grafts {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.1;
}

.avc-pkg-hairs {
  font-size: 12px;
  color: var(--text-2);
  margin-top: 2px;
}

.avc-pkg-price-wrap {
  text-align: right;
  flex-shrink: 0;
}

.avc-pkg-from-label {
  font-size: 10px;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.avc-pkg-price {
  font-size: 26px;
  font-weight: 700;
  color: var(--teal);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.avc-pkg-desc {
  font-size: 12px;
  color: var(--text-2);
  margin-bottom: 8px;
  line-height: 1.5;
}

.avc-pkg-monthly {
  font-size: 12px;
  font-weight: 600;
  color: var(--teal);
  background: rgba(74, 101, 114, 0.1);
  border-radius: 4px;
  padding: 5px 8px;
  display: inline-block;
  margin-bottom: 12px;
}

.avc-pkg-cta {
  display: block;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.avc-pkg-cta:hover {
  background: var(--coral-hover);
}

.avc-post-unlock-cta {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--teal-light);
  border: 1.5px solid var(--teal);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-top: 1rem;
}

.avc-post-unlock-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.avc-post-unlock-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.avc-post-unlock-text {
  font-size: 12px;
  color: var(--text-2);
  line-height: 1.6;
  margin-bottom: 10px;
}

.avc-post-unlock-btn {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
  margin-bottom: 8px;
}

.avc-post-unlock-btn:hover {
  background: var(--coral-hover);
}

.avc-post-unlock-note {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

.avc-disclaimer {
  background: var(--surface-2);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.6;
  margin-top: 1rem;
  border: 1px solid var(--border);
}

.avc-cost-section-title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 12px;
}

.avc-gate-wrap {
  position: relative;
}

.avc-gate-wrap.avc-locked .avc-gateable {
  filter: blur(6px);
  pointer-events: none;
  user-select: none;
  transition: filter 0.5s ease;
}

.avc-gate-wrap.avc-unlocked .avc-gateable {
  filter: none;
  transition: filter 0.6s ease;
}

.avc-gate-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: calc(100% - 1rem);
  max-width: 320px;
  background: var(--surface);
  border: 1px solid var(--border-md);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.avc-gate-overlay.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -46%) scale(0.97);
}

.avc-gate-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-bottom: 1.1rem;
}

.avc-gate-brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--teal);
}

.avc-gate-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 7px;
}

.avc-gate-sub {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.55;
  margin-bottom: 1.1rem;
}

.avc-gate-perks {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 1.2rem;
  text-align: left;
}

.avc-gate-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-2);
}

.avc-perk-tick {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--green-light);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avc-gate-field {
  margin-bottom: 9px;
  text-align: left;
}

.avc-gate-field label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-2);
  margin-bottom: 5px;
}

.avc-gate-input {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s;
}

.avc-gate-input:focus {
  outline: none;
  border-color: var(--teal);
}

.avc-gate-input.avc-error {
  border-color: var(--red);
}

.avc-gate-btn {
  width: 100%;
  padding: 13px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.12s;
}

.avc-gate-btn:hover {
  background: var(--coral-hover);
}

.avc-gate-btn:active {
  transform: scale(0.98);
}

.avc-gate-btn.avc-loading {
  opacity: 0.6;
  pointer-events: none;
}

.avc-gate-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 8px;
  min-height: 16px;
  text-align: center;
}

.avc-gate-privacy {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 10px;
  line-height: 1.5;
}

.avc-unlock-banner {
  background: var(--green-light);
  border: 1px solid #a8d5b5;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  font-size: 13px;
  color: var(--green);
  font-weight: 500;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.avc-unlock-banner.show {
  opacity: 1;
  transform: translateY(0);
}

.avc-banner-tick {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avc-bottom-trust {
  background: var(--teal);
  padding: 2.5rem 2rem;
  margin-top: 1rem;
}

.avc-bottom-trust-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.avc-trust-block-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
}

.avc-trust-block-headline {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.2;
}

.avc-trust-block-body {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.avc-trust-block-cta {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.avc-trust-block-cta:hover {
  background: var(--coral-hover);
}

.avc-trust-stat {
  margin-bottom: 12px;
}

.avc-trust-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.avc-trust-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.avc-trust-review {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 8px;
}

.avc-trust-review-stars {
  color: #f4c430;
  font-size: 13px;
  margin-bottom: 5px;
}

.avc-trust-review-text {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
  font-style: italic;
}

.avc-trust-review-name {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 5px;
}

@media (max-width: 900px) {
  .avc-main {
    grid-template-columns: 1fr;
  }

  .avc-results-panel {
    position: static;
  }

  .avc-bottom-trust-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (max-width: 640px) {
  .avc-hero {
    padding: 2.5rem 1.25rem 4rem;
  }

  .avc-hero h1 {
    font-size: 1.9rem;
  }

  .avc-main {
    padding: 1.5rem 1rem 3rem;
    gap: 1rem;
  }

  .avc-header-phone {
    display: none;
  }

  .avc-trust-bar-inner {
    gap: 1rem;
  }

  .avc-trust-divider {
    display: none;
  }

  .avc-norwood-grid-5 {
    grid-template-columns: repeat(3, 1fr);
  }

  #avc-patient-age {
    grid-template-columns: 1fr 1fr !important;
  }

  #avc-hair-contrast {
    grid-template-columns: 1fr !important;
  }

  .avc-pkg-header {
    flex-direction: column;
    gap: 8px;
  }

  .avc-pkg-price-wrap {
    text-align: left;
  }

  .avc-pkg-price {
    font-size: 22px;
  }

  .avc-post-unlock-cta {
    flex-direction: column;
    gap: 10px;
  }

  .avc-post-unlock-icon {
    display: none;
  }

  .avc-gate-overlay {
    padding: 1.25rem 1.1rem 1.1rem;
  }

  .avc-bottom-trust-inner>div:last-child {
    display: none;
  }
}

@media (max-width: 420px) {
  .avc-metrics-grid {
    grid-template-columns: 1fr 1fr;
  }

  #avc-ethnicity {
    grid-template-columns: 1fr !important;
  }

  #avc-loss-speed {
    grid-template-columns: 1fr !important;
  }
}

.avc-progress-bar-wrap {
  display: none;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 1rem 12px;
  position: sticky;
  top: 62px;
  z-index: 150;
}

.avc-progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.avc-progress-step-item {
  display: flex;
  align-items: center;
  flex: 1;
}

.avc-progress-step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-md);
  background: var(--surface);
  color: var(--text-3);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.avc-progress-step-num.avc-done {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.avc-progress-step-num.avc-active {
  background: var(--surface);
  border-color: var(--teal);
  color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-light);
}

.avc-progress-step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background 0.3s ease;
}

.avc-progress-step-line.avc-done {
  background: var(--teal);
}

.avc-progress-label {
  font-size: 11px;
  color: var(--text-3);
  text-align: center;
}

.avc-progress-label strong {
  color: var(--teal);
  font-weight: 600;
}

.avc-scroll-nudge {
  display: none;
  margin-top: 1rem;
  background: var(--teal);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transition: opacity 0.2s;
  border: none;
  width: 100%;
  text-align: left;
}

.avc-scroll-nudge:active {
  opacity: 0.88;
}

.avc-scroll-nudge-text {
  color: #fff;
}

.avc-scroll-nudge-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 3px;
}

.avc-scroll-nudge-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.avc-scroll-nudge-arrow {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avc-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 10px 1rem 14px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.avc-sticky-bar.avc-visible {
  transform: translateY(0);
}

.avc-sticky-bar-inner {
  display: flex;
  align-items: center;
  gap: 10px;
}

.avc-sticky-bar-text {
  flex: 1;
  min-width: 0;
}

.avc-sticky-bar-label {
  font-size: 11px;
  color: var(--text-3);
}

.avc-sticky-bar-count {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.avc-sticky-bar-btn {
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 11px 18px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s;
}

.avc-sticky-bar-btn:active {
  background: var(--coral-hover);
}

@media (max-width: 900px) {
  .avc-progress-bar-wrap {
    display: block;
  }

  .avc-scroll-nudge {
    display: flex;
  }

  .avc-sticky-bar {
    display: block;
  }

  body {
    padding-bottom: 74px;
  }
}



/* ── Progress bar ── */
.avc-progress-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 12px 2rem;
}

.avc-progress-inner {
  max-width: 900px;
  margin: 0 auto;
}

.avc-ass-progress-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 8px;
}

.avc-ps-item {
  display: flex;
  align-items: center;
  flex: 1;
}

.avc-ps-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--border-md);
  background: var(--surface);
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.avc-ps-dot.avc-done {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

.avc-ps-dot.avc-ps-active {
  background: var(--surface);
  border-color: var(--coral);
  color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-light, #fff0ee);
}

.avc-ps-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}

.avc-ps-line.avc-done {
  background: var(--teal);
}

.avc-ps-labels {
  display: flex;
  justify-content: space-between;
  padding: 0 4px;
}

.avc-ps-label {
  font-size: 10px;
  color: var(--text-3);
  font-weight: 500;
  text-align: center;
  flex: 1;
}

.avc-ps-label:last-child {
  text-align: right;
  flex: 0;
}

.avc-ps-label.avc-ps-label-active {
  color: var(--coral);
  font-weight: 600;
}

.avc-ps-label.avc-done {
  color: var(--teal);
}

/* ── Main layout ── */
.avc-assessment-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 1.5rem;
  align-items: start;
}

@media (max-width: 760px) {
  .avc-assessment-main {
    grid-template-columns: 1fr;
    padding: 1.25rem 1rem 3rem;
  }
}

/* ── Summary sidebar ── */
.avf-summary-card {
  background: var(--teal);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: sticky;
  top: 110px;
}

.avf-summary-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}

.avf-summary-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.avf-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.avf-summary-row:last-of-type {
  border-bottom: none;
}

.avf-summary-key {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.avf-summary-val {
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  text-align: right;
}

.avf-summary-badge {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-top: 1rem;
}

@media (max-width: 760px) {
  .avf-summary-card {
    position: static;
  }
}

/* ── Form panels ── */
.avf-form-step {
  display: none;
  animation: avfFadeUp 0.35s ease both;
}

.avf-form-step.avf-active {
  display: block;
}

@keyframes avfFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.avc-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  margin-bottom: 1rem;
}

.avc-panel-header {
  padding: 1.1rem 1.5rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.avc-panel-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avc-panel-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.avc-panel-body {
  padding: 1.5rem;
}

/* ── Fields ── */
.avf-field {
  margin-bottom: 1.25rem;
}

.avf-field:last-child {
  margin-bottom: 0;
}

.avf-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 9px;
  display: block;
  line-height: 1.4;
}

.avf-field-hint {
  font-size: 11px;
  color: var(--text-3);
  margin-top: 6px;
  line-height: 1.5;
}

.avf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.15s;
}

.avf-input:focus {
  outline: none;
  border-color: var(--teal);
}

.avf-input.avf-error {
  border-color: var(--red);
}

.avf-textarea {
  resize: vertical;
  min-height: 90px;
  line-height: 1.55;
}

.avf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 500px) {
  .avf-row {
    grid-template-columns: 1fr;
  }
}

/* ── Option buttons ── */
.avf-btn-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}

.avf-btn-group.avf-cols-2 {
  grid-template-columns: 1fr 1fr;
}

.avf-opt-btn {
  padding: 10px;
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--text-2);
  font-size: 12.5px;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  text-align: center;
  line-height: 1.35;
  transition: all 0.14s;
}

.avf-opt-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-pale);
}

.avf-opt-btn.avf-active {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  font-weight: 600;
}

@media (max-width: 500px) {
  .avf-btn-group {
    grid-template-columns: 1fr;
  }

  .avf-btn-group.avf-cols-2 {
    grid-template-columns: 1fr;
  }
}

/* ── Photo upload ── */
.avf-upload-area {
  border: 2px dashed var(--border-md);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--surface);
}

.avf-upload-area:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
}

.avf-upload-area.avf-has-files {
  border-color: var(--teal);
  border-style: solid;
  background: var(--teal-pale);
}

.avf-upload-icon {
  margin-bottom: 8px;
}

.avf-upload-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 4px;
}

.avf-upload-hint {
  font-size: 11px;
  color: var(--text-3);
  line-height: 1.5;
}

.avf-file-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.avf-file-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 12px;
  color: var(--text-2);
}

.avf-file-item-icon {
  color: var(--teal);
  flex-shrink: 0;
}

.avf-file-item-name {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.avf-file-item-remove {
  color: var(--text-3);
  cursor: pointer;
  font-size: 14px;
  flex-shrink: 0;
  transition: color 0.15s;
}

.avf-file-item-remove:hover {
  color: var(--red);
}

/* ── Nav buttons ── */
.avf-form-nav {
  display: flex;
  gap: 10px;
  margin-top: 1.25rem;
}

.avf-btn-next {
  flex: 1;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.15s, transform 0.1s;
}

.avf-btn-next:hover {
  background: var(--coral-hover);
}

.avf-btn-next:active {
  transform: scale(0.98);
}

.avf-btn-next.avf-loading {
  opacity: 0.6;
  pointer-events: none;
}

.avf-btn-back {
  background: var(--surface);
  color: var(--text-2);
  border: 1.5px solid var(--border-md);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  padding: 13px 18px;
  cursor: pointer;
  transition: all 0.15s;
}

.avf-btn-back:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.avf-field-error {
  font-size: 12px;
  color: var(--red);
  margin-top: 6px;
}

/* ── Success screen ── */
.avf-success-screen {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
}

.avf-success-screen.show {
  display: block;
  animation: avfFadeUp 0.4s ease both;
}

.avf-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-light);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avf-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: var(--text);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.avf-success-sub {
  font-size: 15px;
  color: var(--text-2);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 2rem;
}

.avf-success-next {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  max-width: 420px;
  margin: 0 auto;
  text-align: left;
}

.avf-success-next-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 10px;
}

.avf-success-next-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

.avf-success-next-item:last-child {
  border-bottom: none;
}

.avf-success-next-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}