/* ─────────────────────────────────────────────────────────
   ECHOHAUS AI — Below-fold styles (non-blocking)
   Loaded via media="print" onload trick — not render-blocking
   ───────────────────────────────────────────────────────── */

/* ══ SLIDE 7 — Pricing ══════════════════════════════════ */
.pricing-section { padding: 100px 0; min-height: auto; align-items: flex-start; }

.pricing-header { text-align: center; margin-bottom: 56px; }

/* Toggle */
.pricing-toggle-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px;
  padding: 4px;
  gap: 2px;
  margin-top: 32px;
}
.pricing-toggle-btn {
  position: relative;
  padding: 9px 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  color: #8090a8;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  white-space: nowrap;
}
.pricing-toggle-btn.active {
  background: #f4620a;
  color: #fff;
}
.pricing-best-badge {
  position: absolute;
  top: -10px;
  right: -4px;
  background: #fff;
  color: #f4620a;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

/* Cards grid */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1.08fr 1fr;
  gap: 20px;
  align-items: center;
}

/* Base card */
.pricing-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  transition: border-color 0.25s;
}
.pricing-card:hover { border-color: rgba(255,255,255,0.22); }

/* Featured (Growth) card */
.pricing-card--featured {
  background: rgba(244,98,10,0.08);
  border-color: #f4620a;
  border-width: 1.5px;
  padding: 44px 32px;
  position: relative;
}
.pricing-card--featured:hover { border-color: #f4620a; }

/* Scale card — premium enterprise blue-steel */
.pricing-card--scale {
  background: linear-gradient(145deg, rgba(80,140,220,0.07) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(100,160,255,0.25);
  box-shadow: 0 0 32px rgba(80,140,220,0.06);
}
.pricing-card--scale:hover {
  border-color: rgba(100,160,255,0.45);
  box-shadow: 0 0 48px rgba(80,140,220,0.12);
}

.pricing-popular-badge {
  display: inline-block;
  background: #f4620a;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  align-self: flex-start;
}

.pricing-card-top { margin-bottom: 28px; }

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.pricing-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 10px;
}
.pricing-price {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3.5vw, 3.2rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
}
.pricing-per {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #8090a8;
}

.pricing-setup {
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: #8090a8;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.pricing-setup-orig {
  color: #c0ccd8;
  font-weight: 500;
  transition: all 0.2s;
}
.pricing-setup-orig.crossed {
  text-decoration: line-through;
  color: #5a6a7a;
}
.pricing-setup-disc {
  color: #f4620a;
  font-weight: 600;
}

.pf-minutes-orig {
  transition: all 0.2s;
}
.pf-minutes-orig.crossed {
  text-decoration: line-through;
  color: #5a6a7a;
}
.pf-minutes-disc {
  color: #f4620a;
  font-weight: 600;
}

.pricing-scale-tagline {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: #8090a8;
  line-height: 1.55;
}

/* Feature list */
.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.pricing-features li {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: #c0ccd8;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}
.pf-check {
  color: #f4620a;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}

/* CTAs */
.pricing-cta-btn {
  display: block;
  text-align: center;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: transparent;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, opacity 0.2s;
  margin-top: auto;
}
.pricing-cta-btn:hover { border-color: rgba(255,255,255,0.4); }

.pricing-cta-btn--featured {
  background: #f4620a;
  border-color: #f4620a;
  color: #fff;
  box-shadow: 0 8px 24px rgba(244,98,10,0.35);
}
.pricing-cta-btn--featured:hover { opacity: 0.88; }

.pricing-cta-btn--scale {
  border-color: rgba(244,98,10,0.4);
  color: #f4620a;
}
.pricing-cta-btn--scale:hover { border-color: #f4620a; background: rgba(244,98,10,0.08); }

/* ── Mobile responsive ── */
@media (max-width: 768px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .pricing-card--featured { padding: 36px 28px; }
  .pricing-toggle-wrap { flex-direction: row; }
}

/* ══════════════════════════════════════════════════════════
   DARK SECTIONS — Slides 5 & 6
   ══════════════════════════════════════════════════════════ */
.dark-section {
  position: relative;
  z-index: 2;
  background: #0d1827;
  color: #fff;
  padding: 100px 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.dark-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px;
  width: 100%;
}
.dark-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f4620a;
  margin-bottom: 24px;
}
.eyebrow-dash {
  display: inline-block;
  width: 28px;
  height: 2px;
  background: #f4620a;
  flex-shrink: 0;
}
.dark-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.0;
  color: #fff;
  margin-bottom: 20px;
}
.dark-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #8090a8;
  margin-bottom: 40px;
  line-height: 1.5;
}

/* ── Steps Timeline (Slide 5) ─────────────────────────── */
.steps-wrapper { margin-top: 64px; }

.steps-track {
  display: flex;
  align-items: center;
  margin-bottom: 28px;
}
.step-node {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f4620a;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-icon { font-size: 1.3rem; }
.step-line {
  flex: 1;
  height: 2px;
  background: #f4620a;
  opacity: 0.5;
  margin: 0 20px;
}
.steps-labels {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
.step-label strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.step-label p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: #8090a8;
}

/* ── Slide 6: Calculator + Investment ─────────────────── */
.calc-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Calculator */
.calc-fields {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 32px;
}
.calc-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #8090a8;
  margin-bottom: 10px;
}
.calc-label-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.calc-val {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
}
.calc-slider {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 2px;
  background: rgba(255,255,255,0.15);
  outline: none;
  cursor: pointer;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f4620a;
  cursor: pointer;
  box-shadow: 0 0 0 4px rgba(244,98,10,0.2);
}
.calc-slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #f4620a;
  cursor: pointer;
  border: none;
}
.calc-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 10px 14px;
}
.calc-currency {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: #8090a8;
}
.calc-number-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  width: 100%;
}
.calc-number-input::-webkit-inner-spin-button,
.calc-number-input::-webkit-outer-spin-button { -webkit-appearance: none; }

.calc-result {
  background: #13243a;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 24px 28px;
}
.calc-result-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8090a8;
  margin-bottom: 8px;
}
.calc-result-value {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 800;
  color: #f4620a;
  line-height: 1;
  margin-bottom: 6px;
}
.calc-result-yearly {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: #8090a8;
}

/* Investment */
.invest-basis {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.invest-basis-head {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8090a8;
  margin-bottom: 12px;
}
.invest-basis ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.invest-basis li {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #c0ccd8;
  padding: 4px 0;
  line-height: 1.5;
}
.invest-table { margin-bottom: 16px; }
.invest-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-family: var(--font-body);
  font-size: 0.88rem;
}
.invest-item { color: #8090a8; }
.invest-price { color: #fff; font-weight: 500; }
.invest-highlight { color: #f4620a; font-weight: 700; }
.invest-fine {
  font-family: var(--font-body);
  font-size: 0.76rem;
  color: #5a6a7a;
  line-height: 1.5;
  margin-bottom: 28px;
}
.invest-actions { gap: 0; }

/* ── Comparison Table (Employee vs AI Agent) ─────────── */
.comp-table {
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 28px;
}
.comp-header {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.09);
  padding: 14px 18px;
  align-items: center;
}
.comp-metric-head { /* empty left spacer */ }
.comp-col-head {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}
.comp-col-head--neg { color: #e05555; }
.comp-col-head--pos { color: #3ecf72; }
.comp-col-icon {
  display: block;
  font-size: 1rem;
  margin-bottom: 3px;
}
.comp-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  padding: 13px 18px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  align-items: center;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:nth-child(even) { background: rgba(255,255,255,0.02); }
.comp-metric {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: #8090a8;
}
.comp-val {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  text-align: center;
}
.comp-val--neg { color: #e05555; }
.comp-val--pos { color: #3ecf72; }

/* Full-width demo button */
.demo-btn {
  width: 100%;
  padding: 18px 28px;
  background: transparent;
  color: #fff;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  border: 1.5px solid rgba(255,255,255,0.22);
  cursor: pointer;
  transition: border-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  position: relative;
  overflow: hidden;
}
.demo-btn:hover { border-color: rgba(255,255,255,0.45); }
.demo-btn.playing { border-color: #f4620a; }

/* ── Shimmer Button ─────────────────────────────────── */
@keyframes shimmer-slide {
  to { transform: translate(calc(100cqw - 100%), 0); }
}
@keyframes spin-around {
  0%         { transform: rotate(0deg); }
  15%, 35%   { transform: rotate(90deg); }
  65%, 85%   { transform: rotate(270deg); }
  100%       { transform: rotate(360deg); }
}

.shimmer-spark {
  position: absolute;
  inset: 0;
  overflow: visible;
  z-index: 0;
  filter: blur(2px);
  container-type: size;
  pointer-events: none;
}
.shimmer-slide {
  position: absolute;
  inset: 0;
  height: 100cqh;
  aspect-ratio: 1;
  animation: shimmer-slide 3s infinite linear;
}
.shimmer-spin {
  position: absolute;
  inset: -100%;
  width: auto;
  background: conic-gradient(
    from calc(270deg - 45deg),
    transparent 0,
    rgba(255, 255, 255, 0.65) 90deg,
    transparent 90deg
  );
  animation: spin-around 3s ease-in-out infinite;
}
.shimmer-highlight {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 -8px 10px rgba(255, 255, 255, 0.10);
  transition: box-shadow 0.3s ease;
  z-index: 2;
  pointer-events: none;
}
.demo-btn:hover .shimmer-highlight { box-shadow: inset 0 -6px 10px rgba(255, 255, 255, 0.22); }
.demo-btn.playing .shimmer-highlight { box-shadow: inset 0 -6px 10px rgba(244, 98, 10, 0.2); }
.demo-btn.playing .shimmer-slide { animation-play-state: paused; }
.demo-btn.playing .shimmer-spin  { animation-play-state: paused; }
.shimmer-backdrop {
  position: absolute;
  inset: 2px;
  background: rgba(13, 24, 39, 0.88);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}
.demo-btn-label,
.demo-wave {
  position: relative;
  z-index: 3;
}

/* Waveform */
.demo-wave {
  display: none;
  align-items: flex-end;
  gap: 3px;
  height: 32px;
}
.demo-btn.playing .demo-wave { display: flex; }
.demo-btn.playing .demo-btn-label { display: none; }

.demo-wave .bar {
  width: 3px;
  border-radius: 2px;
  background: #f4620a;
  animation: waveBar var(--dur, 0.7s) ease-in-out infinite alternate;
  height: 6px;
}
.b1  { --dur: 0.62s; animation-delay: 0.00s; }
.b2  { --dur: 0.48s; animation-delay: 0.05s; }
.b3  { --dur: 0.71s; animation-delay: 0.10s; }
.b4  { --dur: 0.55s; animation-delay: 0.03s; }
.b5  { --dur: 0.83s; animation-delay: 0.08s; }
.b6  { --dur: 0.44s; animation-delay: 0.14s; }
.b7  { --dur: 0.67s; animation-delay: 0.01s; }
.b8  { --dur: 0.52s; animation-delay: 0.11s; }
.b9  { --dur: 0.78s; animation-delay: 0.06s; }
.b10 { --dur: 0.41s; animation-delay: 0.09s; }
.b11 { --dur: 0.69s; animation-delay: 0.04s; }
.b12 { --dur: 0.57s; animation-delay: 0.12s; }
.b13 { --dur: 0.45s; animation-delay: 0.02s; }
.b14 { --dur: 0.73s; animation-delay: 0.07s; }
.b15 { --dur: 0.50s; animation-delay: 0.13s; }
.b16 { --dur: 0.80s; animation-delay: 0.00s; }
.b17 { --dur: 0.46s; animation-delay: 0.10s; }
.b18 { --dur: 0.64s; animation-delay: 0.05s; }
.b19 { --dur: 0.58s; animation-delay: 0.08s; }
.b20 { --dur: 0.72s; animation-delay: 0.03s; }

@keyframes waveBar {
  from { height: 3px;  opacity: 0.5; }
  to   { height: 28px; opacity: 1.0; }
}

/* ══ SLIDE 7 — Frankfurt CTA ══ */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 80px 0 0;
  align-items: flex-start;
  min-height: 100vh;
}
.frankfurt-skyline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  line-height: 0;
}
.frankfurt-skyline svg { width: 100%; display: block; }
.cta-outer {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 40px 140px;
}
.cta-eyebrow { margin-bottom: 32px; }
.cta-card {
  background: #f4620a;
  border-radius: 20px;
  padding: 56px 60px;
  width: 100%;
  max-width: 720px;
  box-shadow: 0 32px 80px rgba(244,98,10,0.35);
}
.cta-heading {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  color: #fff;
  text-align: center;
  margin-bottom: 14px;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  text-align: center;
  margin-bottom: 4px;
}
.cta-24h {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-align: center;
  margin-bottom: 36px;
  letter-spacing: 0.02em;
}
.cta-form { display: flex; flex-direction: column; gap: 16px; margin-bottom: 20px; }
.cta-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cta-field { display: flex; flex-direction: column; gap: 6px; }
.cta-field label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.9);
}
.cta-optional {
  font-weight: 400;
  font-size: 0.65rem;
  opacity: 0.7;
  letter-spacing: 0.06em;
}
.cta-field input,
.cta-field textarea {
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  resize: vertical;
}
.cta-field input::placeholder,
.cta-field textarea::placeholder { color: rgba(255,255,255,0.5); }
.cta-field input:focus,
.cta-field textarea:focus {
  border-color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.25);
}
.cta-submit {
  width: 100%;
  padding: 16px;
  background: #fff;
  color: #f4620a;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 4px;
}
.cta-submit:hover { opacity: 0.92; transform: translateY(-1px); }
.cta-email-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  margin-top: 16px;
}
.cta-footer-caption {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  margin-top: 40px;
  text-align: center;
}

/* Form submission status */
.form-status {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-align: center;
  padding: 10px 0 0;
  min-height: 1.4em;
}
.form-status--ok  { color: rgba(255,255,255,0.9); }
.form-status--err { color: rgba(255,120,100,0.9); }
