/* =========================================================
   hello again — Salon Landing Page
   Extends: colors_and_type.css
   ========================================================= */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
body { margin: 0; }
img, svg { display: block; max-width: 100%; }

/* Gradient-text clipping fix.
   -webkit-background-clip: text crops both above caps and below the baseline.
   Nexa Bold has tall caps + descenders, so we need real breathing room
   on both sides — and a slightly looser line-height than the parent. */
.ha-accent,
.gradient-text {
  display: inline-block;
  padding-top: 0.14em;
  padding-bottom: 0.14em;
  margin-top: -0.14em;
  margin-bottom: -0.14em;
  line-height: 1.18;
  vertical-align: baseline;
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
@media (min-width: 768px) { .container { padding: 0 40px; } }

section { padding: 80px 0; position: relative; }
@media (min-width: 768px) { section { padding: 104px 0; } }

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ha-smart);
  font-weight: 700;
  margin-bottom: 16px;
}
.eyebrow-warn { color: var(--danger); }
.eyebrow-on-dark { color: var(--ha-loyal); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 4.2vw, 48px);
  line-height: 1.24;
  letter-spacing: -0.025em;
  color: var(--fg-1);
  margin: 0 0 18px;
  text-wrap: balance;
  padding-top: 0.08em;
  padding-bottom: 0.08em;
}
.section-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  max-width: 760px;
  margin: 0;
  text-wrap: pretty;
}
.section-head {
  text-align: center;
  margin: 0 auto 56px;
  max-width: 820px;
}
.section-head .section-sub { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: none;
  cursor: pointer;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  transition: all var(--dur-base) var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ha-gradient);
  color: #fff;
  box-shadow: var(--shadow-2);
}
.btn-primary:hover {
  box-shadow: var(--shadow-brand);
  transform: translateY(-2px);
}
.btn-primary:active { transform: scale(0.97); opacity: 0.95; }
.btn-ghost {
  background: transparent;
  color: var(--ha-smart);
  padding: 14px 18px;
}
.btn-ghost:hover { color: var(--ha-smart-mid); }
.btn-on-dark {
  background: rgba(255,255,255,.08);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-on-dark:hover { background: rgba(255,255,255,.15); border-color: #fff; }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 10px 18px; font-size: 13.5px; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-base), box-shadow var(--dur-base);
}
.site-header.scrolled {
  border-bottom-color: var(--ha-line);
  box-shadow: 0 1px 0 rgba(38,45,53,.04);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
/* Logo size matches design reference — generous, prominent */
.logo {
  height: 60px;
  width: auto;
  max-width: none;
  display: block;
  flex-shrink: 0;
  object-fit: contain;
}
.nav { display: none; gap: 28px; align-items: center; }
.nav a {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--fg-2);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.nav a:hover { color: var(--ha-smart); }
@media (min-width: 960px) { .nav { display: flex; } }
.header-cta { display: flex; gap: 8px; align-items: center; }

/* ---------- HERO ---------- */
.hero {
  padding-top: 156px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 500px at 88% 0%, rgba(0,167,225,.10), transparent 60%),
    radial-gradient(700px 400px at 8% 100%, rgba(139,199,83,.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media (min-width: 1000px) {
  .hero .container { grid-template-columns: 1.1fr 1fr; gap: 72px; }
}
.hero-copy { order: 2; }
.hero-media { order: 1; }
@media (min-width: 1000px) {
  .hero-copy { order: 1; }
  .hero-media { order: 2; }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5.4vw, 60px);
  line-height: 1.2;
  letter-spacing: -0.028em;
  margin: 0 0 22px;
  color: var(--ha-ink);
  text-wrap: balance;
  padding-top: 0.08em;
  padding-bottom: 0.08em;
}
.hero p.lead {
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  color: var(--fg-2);
  margin: 0 0 32px;
  max-width: 560px;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 14px;
}
.hero-fineprint {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--ha-line);
}
.trust-pill {
  font-size: 13px;
  color: var(--fg-2);
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
}
.trust-pill strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ha-ink);
  letter-spacing: -0.01em;
}
.trust-divider {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--ha-line);
}

/* ---------- Hero media ---------- */
.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: visible;
  aspect-ratio: 4 / 4.4;
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-3);
  background: var(--ha-surface-2);
  display: block;
}
.hero-floating-card {
  position: absolute;
  bottom: -22px;
  left: -16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-3);
  padding: 16px 20px 16px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
  width: min(280px, calc(100% - 24px));
  z-index: 5;
  border: 1px solid var(--ha-line);
  animation: floatIn 700ms var(--ease-out) 600ms backwards;
}
.hero-floating-card .card-icon {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: var(--ha-gradient);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-floating-card .meta {
  font-size: 10.5px;
  color: var(--fg-3);
  letter-spacing: 0.08em;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 2px;
}
.hero-floating-card .body {
  font-size: 14px;
  color: var(--ha-ink);
  line-height: 1.4;
  margin: 0;
}
.hero-floating-card .body strong {
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- SECTION 2: PAIN ---------- */
.pain-section { background: var(--bg-page); }
.pain-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 400px at 50% 0%, rgba(226,72,72,.05), transparent 60%);
  pointer-events: none;
}
.pain-section .container { position: relative; z-index: 1; }
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 700px) {
  .pain-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
.pain-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--danger-bg);
  box-shadow: var(--shadow-1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pain-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--warn) 0%, var(--danger) 100%);
}
.pain-card-emphasis {
  background: linear-gradient(160deg, #fff 0%, var(--danger-bg) 200%);
  border-color: var(--danger);
}
.pain-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--danger-bg);
  color: var(--danger);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 6px;
}
.pain-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 4.2vw, 48px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--danger);
}
.pain-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ha-ink);
  letter-spacing: -0.005em;
  line-height: 1.3;
}

/* ---------- SECTION 3: ROI CALCULATOR ---------- */
.calc-section { background: var(--ha-surface-3); }
.calc-card {
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2);
  border: 1px solid var(--ha-line);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}
@media (min-width: 900px) {
  .calc-card { grid-template-columns: 1fr 1fr; }
}
.calc-inputs {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-bottom: 1px solid var(--ha-line);
}
@media (min-width: 900px) {
  .calc-inputs { border-bottom: none; border-right: 1px solid var(--ha-line); }
}
.slider-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.slider-label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 13px;
  color: var(--fg-3);
}
.slider-label strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ha-ink);
  letter-spacing: -0.005em;
}
.slider-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
}
.slider-meta {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}
.calc-inputs input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: var(--ha-surface-2);
  outline: none;
  cursor: pointer;
}
.calc-inputs input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ha-smart) 0%, var(--ha-loyal) var(--fill, 50%), var(--ha-surface-2) var(--fill, 50%));
}
.calc-inputs input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--ha-smart) 0%, var(--ha-loyal) var(--fill, 50%), var(--ha-surface-2) var(--fill, 50%));
}
.calc-inputs input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ha-smart);
  cursor: grab;
  margin-top: -8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: transform var(--dur-fast);
}
.calc-inputs input[type="range"]::-webkit-slider-thumb:active { cursor: grabbing; transform: scale(1.1); }
.calc-inputs input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--ha-smart);
  cursor: grab;
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
}
.calc-fixed {
  display: grid;
  grid-template-columns: auto auto 1fr;
  gap: 10px 14px;
  align-items: center;
  background: var(--ha-surface-3);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  border: 1px dashed var(--ha-line);
}
.fixed-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ha-ink);
}
.fixed-value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.01em;
}
.fixed-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--fg-3);
  line-height: 1.4;
}

.calc-result {
  padding: 36px 32px;
  background: linear-gradient(160deg, var(--ha-ink) 0%, #1a1f25 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.calc-result::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 320px; height: 320px;
  background: var(--ha-gradient);
  filter: blur(110px);
  opacity: 0.28;
  pointer-events: none;
}
.calc-result-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-loyal);
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
}
.calc-result-line {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin: 0 0 6px;
  position: relative;
}
.calc-result-value {
  display: flex;
  align-items: baseline;
  gap: 8px;
  position: relative;
  margin-bottom: 8px;
}
.calc-result-value .amount {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  transition: opacity 200ms;
}
.calc-result-value .unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: rgba(255,255,255,.6);
  letter-spacing: -0.01em;
}
.calc-result-yearly {
  font-size: 14px;
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
  position: relative;
}
.calc-result-yearly span {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.calc-result-saving {
  background: rgba(139,199,83,.12);
  border: 1px solid rgba(139,199,83,.3);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 24px;
  position: relative;
}
.saving-line {
  font-size: 13.5px;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
  margin-bottom: 4px;
}
.saving-line strong { color: var(--ha-loyal); font-weight: 700; }
.saving-amount {
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.saving-amount span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.015em;
}
.calc-cta {
  margin-top: auto;
  position: relative;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
  padding-top: 16px;
  padding-bottom: 16px;
}

/* ---------- SECTION 4: SOLUTION / FEATURES ---------- */
.solution-section { background: var(--bg-page); }
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 700px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; }
}
.feature-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  border: 1px solid var(--ha-line);
  box-shadow: var(--shadow-1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base), border-color var(--dur-base);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
  border-color: rgba(0,167,225,.18);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ha-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  margin-bottom: 6px;
}
.feature-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ha-ink);
  margin: 0;
  line-height: 1.25;
}
.feature-body {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}
.feature-body strong { color: var(--ha-smart-mid); font-weight: 700; }
.feature-source {
  font-size: 11.5px;
  color: var(--fg-3);
  margin: 4px 0 0;
  letter-spacing: 0.02em;
  font-style: italic;
}

/* ---------- SECTION 5: SOCIAL PROOF ---------- */
.proof-section { background: var(--ha-surface-3); }
.proof-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}
@media (min-width: 800px) {
  .proof-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.proof-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 30px 28px;
  border: 1px solid var(--ha-line);
  box-shadow: var(--shadow-2);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.proof-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 4px;
  background: var(--ha-gradient);
}
.proof-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.proof-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--ha-ink);
}
.proof-logo-script {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  font-size: 30px;
}
.proof-badge {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ha-smart);
  background: rgba(0,167,225,.1);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-weight: 700;
}
.proof-quote {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ha-ink);
  margin: 0;
}
.proof-quote::before { content: '\201C'; color: var(--ha-smart); margin-right: 2px; }
.proof-quote::after { content: '\201D'; color: var(--ha-smart); margin-left: 2px; }
.proof-metric {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--fg-2);
  padding-top: 8px;
  border-top: 1px solid var(--ha-surface-2);
  line-height: 1.4;
}
.metric-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--ok-bg);
  color: var(--ok);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.proof-metric-strong {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.metric-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 32px;
  letter-spacing: -0.025em;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.metric-text {
  font-size: 13px;
  color: var(--fg-3);
  letter-spacing: 0.02em;
}

.proof-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  border: 1px solid var(--ha-line);
  box-shadow: var(--shadow-1);
}
@media (min-width: 700px) {
  .proof-trust { grid-template-columns: repeat(4, 1fr); }
}
.proof-trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: center;
  border-right: 1px solid var(--ha-surface-2);
}
.proof-trust-item:last-child { border-right: none; }
@media (max-width: 699px) {
  .proof-trust-item:nth-child(2) { border-right: none; }
}
.proof-trust-item strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.025em;
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.proof-trust-item span {
  font-size: 12.5px;
  color: var(--fg-3);
  letter-spacing: 0.04em;
}

/* ---------- SECTION 6: HOW IT WORKS ---------- */
.how-section { background: var(--bg-page); }
.how-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
@media (min-width: 900px) {
  .how-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}
.how-step {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 26px 26px;
  border: 1px solid var(--ha-line);
  box-shadow: var(--shadow-1);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base);
}
.how-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-3);
}
.step-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--ha-smart);
  letter-spacing: 0.08em;
  background: rgba(0,167,225,.08);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}
.step-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--ha-gradient);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-brand);
  margin-bottom: 4px;
}
.step-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ha-smart-mid);
  font-weight: 700;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ha-ink);
  margin: 0;
  line-height: 1.2;
}
.step-body {
  font-size: 14.5px;
  color: var(--fg-2);
  line-height: 1.55;
  margin: 0;
}
.step-body strong {
  background: var(--ha-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* ---------- SECTION 7: FAQ ---------- */
.faq-section { background: var(--ha-surface-3); }
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-1);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--dur-base);
}
.faq-item.open { border-color: rgba(0,167,225,.2); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ha-ink);
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  line-height: 1.3;
}
.faq-q:hover { color: var(--ha-smart-mid); }
.faq-icon {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--ha-line);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--dur-base) var(--ease-out);
  color: var(--ha-ink);
}
.faq-item.open .faq-icon {
  background: var(--ha-gradient);
  border-color: transparent;
  color: #fff;
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur-slow) var(--ease-out);
}
.faq-item.open .faq-a { max-height: 500px; }
.faq-a-inner {
  padding: 0 24px 24px;
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
}

/* ---------- SECTION 8: FINAL CTA ---------- */
.final-cta {
  background: var(--ha-ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  bottom: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 400px;
  background: var(--ha-gradient);
  filter: blur(140px);
  opacity: 0.32;
  pointer-events: none;
}
.final-cta .container {
  position: relative;
  z-index: 1;
  text-align: center;
}
.final-cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: #fff;
  margin: 0 auto 20px;
  max-width: 820px;
  text-wrap: balance;
  padding-top: 0.08em;
  padding-bottom: 0.08em;
}
.final-cta p.lead {
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,.78);
  margin: 0 auto 36px;
  max-width: 620px;
}
.final-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}
.final-cta-trust {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
  font-size: 14px;
  color: rgba(255,255,255,.7);
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 600px;
  margin: 0 auto;
}
.final-cta-trust strong {
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.005em;
}
.final-cta-trust .dot-sep { color: rgba(255,255,255,.3); }

/* ---------- Footer ---------- */
.site-footer {
  background: #1a1f25;
  color: rgba(255,255,255,.6);
  padding: 32px 0;
  font-size: 13px;
}
.site-footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  align-items: center;
  justify-content: space-between;
}
.site-footer a { color: rgba(255,255,255,.7); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-right { display: flex; gap: 24px; flex-wrap: wrap; }

/* ---------- Sticky Mini CTA ---------- */
.sticky-cta {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translate(-50%, 120%);
  background: var(--ha-ink);
  color: #fff;
  padding: 12px 20px 12px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-3);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 90;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: transform var(--dur-slow) var(--ease-out), opacity var(--dur-base);
  opacity: 0;
  pointer-events: none;
}
.sticky-cta.visible {
  transform: translate(-50%, 0);
  opacity: 1;
  pointer-events: auto;
}
.sticky-cta .pill {
  background: var(--ha-gradient);
  color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12.5px;
}
.sticky-cta:hover { box-shadow: var(--shadow-brand); }

/* ---------- Fade-in on intersect ---------- */
.fade-in {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}
.fade-in.visible { opacity: 1; transform: none; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-in { opacity: 1; transform: none; }
}

/* ---------- Visually hidden (a11y) ---------- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
