/* ════════════════════════════════════════
   BEEYACORP — components.css
   LOAD ORDER: 3 of 4
   Contains: every reusable UI component.
   Depends on: styles.css tokens.
   ════════════════════════════════════════ */

/* ════════════════════════════════════════
   NAV
   ════════════════════════════════════════ */
.nav-logo-img  { height: 36px; width: auto; display: block; }
.logo-img-link { display: flex; align-items: center; flex-shrink: 0; text-decoration: none; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 20px;
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background var(--t-base), box-shadow var(--t-base);
}
.nav-cta:hover {
  background: var(--c-blueb);
  box-shadow: 0 0 24px rgba(37, 99, 255, 0.45);
}

/* ════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 56px;
  padding: 0 32px;
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-lg);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  max-width: 100%;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
}
.btn:hover {
  background: var(--c-blueb);
  box-shadow: 0 0 36px rgba(37, 99, 255, 0.45), 0 4px 20px rgba(37, 99, 255, 0.35);
  transform: translateY(-1px);
}
.btn:active   { transform: translateY(0); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; pointer-events: none; }

/* Button size modifiers */
.btn-lg   { height: 62px; font-size: 16px; padding: 0 36px; }
.btn-xl   { height: 68px; font-size: 17px; padding: 0 44px; }
.btn-full { width: 100%;  height: 56px;   font-size: 15px; }

/* Reversed button — white background on blue gradient section */
.btn-reversed {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 68px;
  padding: 0 44px;
  background: var(--c-white);
  color: var(--c-blue);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: var(--r-lg);
  text-decoration: none;
  cursor: pointer;
  transition: background var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
}
.btn-reversed:hover {
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 0 48px rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.btn-reversed:active { transform: translateY(0); }

/* Ghost (back) button */
.btn-ghost {
  background: none;
  border: none;
  color: var(--c-muted);
  font-size: 13px;
  font-family: var(--font-body);
  text-align: center;
  width: 100%;
  margin-top: 10px;
  padding: 4px 0;
  display: block;
  cursor: pointer;
  transition: color var(--t-fast);
}
.btn-ghost:hover { color: var(--c-offwhite); }

/* Arrow icon inside buttons */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   TAGS / PILLS
   ════════════════════════════════════════ */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-blueb);
  background: rgba(37, 99, 255, 0.09);
  border: 1px solid rgba(59, 130, 246, 0.22);
  padding: 5px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 18px;
}
.tag .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-blueb);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
.tag-center { justify-content: center; }

/* ════════════════════════════════════════
   EYEBROW
   ════════════════════════════════════════ */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-blueb);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-blueb);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   TYPOGRAPHY CLASSES
   ════════════════════════════════════════ */
.h1 {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--c-white);
  margin-bottom: 22px;
}
.h1 em { font-style: normal; color: var(--c-blueb); }

.h2 {
  font-family: var(--font-head);
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--c-white);
  margin-bottom: 16px;
}
.h2 em { font-style: normal; color: var(--c-blueb); }

.h2-cta {
  font-family: var(--font-head);
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--c-white);
  margin: 0 auto 16px;
}
.h2-cta em { font-style: normal; color: rgba(255, 255, 255, 0.88); }

.hsub {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--c-offwhite);
  margin-bottom: 28px;
  max-width: 520px;
}

.body-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-offwhite);
}
.body-center { text-align: center; }

.case-result {
  font-weight: 700;
  color: var(--c-white);
  margin-top: 8px;
  margin-bottom: 24px;
}

.cta-body {
  color: rgba(255, 255, 255, 0.82);
  max-width: 520px;
  margin: 0 auto 36px;
  font-size: 17px;
}

.microcopy {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: var(--c-muted);
  margin-top: 14px;
}

/* ── Pill select buttons (ad platform, spend, business type) ── */
.pill-select-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.pill-opt {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 14px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: var(--r-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--c-offwhite);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.pill-opt:hover {
  background: rgba(37,99,255,0.12);
  border-color: rgba(37,99,255,0.45);
  color: var(--c-white);
}
.pill-opt.selected {
  background: rgba(37,99,255,0.18);
  border-color: var(--c-blue);
  color: var(--c-white);
  font-weight: 600;
}
.pill-opt.pill-error {
  border-color: var(--c-red);
}
.field-required {
  color: var(--c-blue);
  font-weight: 700;
}
/* pill-select group error state */
.pill-select-group.has-error .pill-opt:not(.selected) {
  border-color: rgba(239,68,68,0.5);
}

.slots-note {
  font-size: 11px;
  color: var(--c-muted);
  margin-top: 10px;
  text-align: center;
  display: block;
}

.step2-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-blueb);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  display: block;
}

/* ════════════════════════════════════════
   HERO BULLETS
   ════════════════════════════════════════ */
.hero-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.hero-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  color: var(--c-offwhite);
  line-height: 1.5;
}
.check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: rgba(37, 99, 255, 0.15);
  border: 1px solid rgba(59, 130, 246, 0.4);
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  font-size: 11px;
  color: var(--c-blueb);
}

/* ════════════════════════════════════════
   PULSE DOT
   ════════════════════════════════════════ */
.pulse-dot       { display: inline-block; width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.pulse-dot-green { background: var(--c-green); }

/* ════════════════════════════════════════
   FORM CARD
   ════════════════════════════════════════ */
.form-card {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-xl);
  padding: 36px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45),
              0 0 0 1px rgba(37, 99, 255, 0.1);
}

/* Blue accent line at top of form card */
.form-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-blue), var(--c-blueb), rgba(59, 130, 246, 0.3));
}

.form-title {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 6px;
}

.form-sub {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-muted);
  margin-bottom: 22px;
  line-height: 1.55;
}

/* Form fields */
.field-wrap  { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.field-group { display: flex; flex-direction: column; }

.field-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--c-offwhite);
  margin-bottom: 6px;
  display: block;
}

.field {
  width: 100%;
  height: 50px;
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-sm);
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-white);
  outline: none;
  transition: border-color var(--t-base), background var(--t-base), box-shadow var(--t-base);
}
.field::placeholder { color: rgba(122, 131, 154, 0.7); }
.field:focus {
  border-color: var(--c-blue);
  background: rgba(37, 99, 255, 0.07);
  box-shadow: 0 0 0 3px rgba(37, 99, 255, 0.15);
}

/* Multi-step form */
.form-step        { display: none; }
.form-step.active { display: block; animation: fadein 0.3s ease both; }

/* Success state */
.form-success { text-align: center; padding: 20px 0; }
.form-success-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(34, 197, 94, 0.14);
  border: 2px solid rgba(34, 197, 94, 0.4);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 24px; color: var(--c-green);
}
.form-success-title {
  font-family: var(--font-head);
  font-size: 17px; font-weight: 800;
  color: var(--c-white); margin-bottom: 8px;
}
.form-success-body {
  font-size: 13px; color: var(--c-muted);
  line-height: 1.6; max-width: 260px; margin: 0 auto;
}

/* Post-submit next-steps note */
.form-next-note {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-muted);
  text-align: center;
  line-height: 1.55;
  margin-top: 10px;
}

/* ════════════════════════════════════════
   FORM CARD RATING
   Third-party social proof at conversion point.
   Sits between form-next-note and trust-strip.
   ════════════════════════════════════════ */
.form-card-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-top: 1px solid var(--c-border);
  margin-top: 12px;
}
.form-card-stars {
  color: #f59e0b;
  font-size: 12px;
  letter-spacing: 1px;
  flex-shrink: 0;
}
.form-card-rating-text {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-muted);
  line-height: 1.3;
}

/* ════════════════════════════════════════
   TRUST STRIP (form card footer)
   ════════════════════════════════════════ */
.trust-num          { display: block; font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--c-white); }
.trust-num .accent  { color: var(--c-blueb); }
.trust-label        { display: block; font-family: var(--font-body); font-size: 10px; color: var(--c-muted); line-height: 1.4; margin-top: 2px; }
.trust-divider      { border-left: 1px solid var(--c-border); border-right: 1px solid var(--c-border); }

/* ════════════════════════════════════════
   PROCESS STEPS (form card)
   ════════════════════════════════════════ */
.process-num {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(37, 99, 255, 0.15);
  border: 1px solid rgba(37, 99, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 10px; font-weight: 800;
  color: var(--c-blueb); margin: 0 auto 5px;
}
.process-label { font-family: var(--font-body); font-size: 9px; color: var(--c-muted); line-height: 1.3; }

/* ════════════════════════════════════════
   TRUST BADGES BAR
   ════════════════════════════════════════ */
.trust-badge {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 13px; font-weight: 600;
  color: var(--c-offwhite);
}
.trust-badge-icon {
  width: 34px; height: 34px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}
.trust-badge-label          { line-height: 1.25; }
.trust-badge-label strong   { display: block; color: var(--c-white); font-size: 12px; }
.trust-badge-label span     { font-size: 11px; color: var(--c-muted); }

/* ════════════════════════════════════════
   PROOF BAR
   ════════════════════════════════════════ */
.proof-col {
  padding: 24px 28px;
  text-align: center;
  border-right: 1px solid var(--c-border);
}
.proof-col:last-child { border-right: none; }

.pn {
  font-family: var(--font-head);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--c-white);
  line-height: 1;
}
.pn .accent { color: var(--c-blueb); }

.pl {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(122, 131, 154, 0.85);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   NICHE STRIP ITEMS
   ════════════════════════════════════════ */
.niche-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: var(--c-muted); white-space: nowrap;
  text-transform: uppercase; letter-spacing: 0.08em;
}
.niche-item::before {
  content: ''; display: block; width: 4px; height: 4px;
  border-radius: 50%; background: var(--c-blue); flex-shrink: 0;
}

/* ════════════════════════════════════════
   ARCH COMPARISON (case study)
   ════════════════════════════════════════ */
.arch-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.arch-side {
  padding: 24px 20px;
  border-radius: var(--r-lg);
  display: flex; flex-direction: column; gap: 14px;
}
.arch-side-bad  { background: rgba(239, 68, 68, 0.07);  border: 1px solid rgba(239, 68, 68, 0.2); }
.arch-side-good { background: rgba(37, 99, 255, 0.07);  border: 1px solid rgba(37, 99, 255, 0.25); }

.arch-side-label {
  font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 4px;
}
.arch-side-bad  .arch-side-label { color: var(--c-red); }
.arch-side-good .arch-side-label { color: var(--c-blueb); }

.arch-side-title { font-family: var(--font-head); font-size: 15px; font-weight: 800; margin-bottom: 12px; line-height: 1.2; }
.arch-side-bad  .arch-side-title { color: rgba(239, 68, 68, 0.9); }
.arch-side-good .arch-side-title { color: var(--c-white); }

.arch-stat       { display: flex; align-items: center; gap: 10px; font-family: var(--font-body); font-size: 13px; font-weight: 500; }
.arch-stat-icon  { width: 28px; height: 28px; border-radius: 6px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 13px; }
.arch-side-bad  .arch-stat-icon { background: rgba(239, 68, 68, 0.12); color: var(--c-red); }
.arch-side-good .arch-stat-icon { background: rgba(34, 197, 94, 0.12);  color: var(--c-green); }

.arch-stat-text  { line-height: 1.3; }
.arch-stat-val   { font-weight: 700; display: block; }
.arch-side-bad  .arch-stat-val { color: var(--c-red); }
.arch-side-good .arch-stat-val { color: var(--c-green); }
.arch-stat-sub   { font-size: 11px; color: var(--c-muted); display: block; }

/* ════════════════════════════════════════
   METRIC CARDS (before / after)
   ════════════════════════════════════════ */
.metric-card   { border-radius: var(--r-lg); padding: 16px 20px; }
.metric-before { background: rgba(239, 68, 68, 0.06);  border: 1px solid rgba(239, 68, 68, 0.20); }
.metric-after  { background: rgba(34, 197, 94, 0.06);  border: 1px solid rgba(34, 197, 94, 0.20); }

.metric-label  { font-family: var(--font-body); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.metric-before .metric-label { color: var(--c-red); }
.metric-after  .metric-label { color: var(--c-green); }

.metric-val    { font-family: var(--font-head); font-size: 32px; font-weight: 800; line-height: 1; }
.metric-before .metric-val { color: var(--c-red); }
.metric-after  .metric-val { color: var(--c-green); }

.metric-sub    { font-family: var(--font-body); font-size: 12px; color: var(--c-muted); margin-top: 4px; }

/* ════════════════════════════════════════
   PROBLEM ITEMS
   ════════════════════════════════════════ */
.problem-item {
  background: rgba(239, 68, 68, 0.04);
  border: 1px solid rgba(239, 68, 68, 0.14);
  border-radius: var(--r-md); padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px;
}
.problem-x {
  width: 24px; height: 24px; flex-shrink: 0;
  border-radius: var(--r-sm); background: rgba(239, 68, 68, 0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: var(--c-red); margin-top: 1px;
}
.problem-text {
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  color: var(--c-offwhite); line-height: 1.5;
}

/* Quote block */
.quote-block {
  background: rgba(37, 99, 255, 0.07);
  border-left: 3px solid var(--c-blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 20px 28px;
  margin: 44px 0;
  font-family: var(--font-head); font-size: 18px; font-weight: 700;
  color: var(--c-white); line-height: 1.45;
}

/* ════════════════════════════════════════
   METHOD STEP CARDS
   ════════════════════════════════════════ */
.step-card { padding: 32px 24px; border-right: 1px solid var(--c-border); }
.step-card:last-child { border-right: none; }

.sn {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(37, 99, 255, 0.10); border: 1px solid rgba(37, 99, 255, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--c-blue); margin-bottom: 20px;
}
.step-title { font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--c-white); margin-bottom: 10px; }
.step-body  { font-family: var(--font-body); font-size: 14px; font-weight: 300; color: var(--c-offwhite); line-height: 1.65; }

/* ════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════ */
.compare-wrap {
  margin-top: 40px; border-radius: var(--r-xl); overflow: hidden;
  border: 1.5px solid rgba(37, 99, 255, 0.22);
}
.compare-header {
  padding: 16px 20px; background: var(--c-charcoal2);
  border-bottom: 1.5px solid rgba(37, 99, 255, 0.18);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px;
}
.compare-header-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-blueb); margin-bottom: 4px; }
.compare-header-title { font-family: var(--font-head); font-size: 15px; font-weight: 800; color: var(--c-white); }
.compare-badge {
  font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: rgba(37, 99, 255, 0.12); border: 1px solid rgba(37, 99, 255, 0.25); color: var(--c-blueb);
}
.compare-table-wrap { background: var(--c-charcoal); overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-family: var(--font-body); font-size: 14px; }
.compare-table th {
  text-align: left; padding: 14px 20px; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(37, 99, 255, 0.14);
}
.compare-table td { padding: 14px 20px; border-bottom: 1px solid rgba(255, 255, 255, 0.05); vertical-align: top; }
.compare-table tr:last-child td { border-bottom: none; }
.col-dim   { color: var(--c-muted); font-size: 12px; font-weight: 600; }
.col-std   { color: rgba(200, 205, 216, 0.7); border-left: 1px solid rgba(255, 255, 255, 0.05); }
.col-beeya {
  background: rgba(37, 99, 255, 0.08); font-weight: 700; color: var(--c-white);
  border-left: 2px solid rgba(37, 99, 255, 0.35);
}
.col-beeya-h {
  color: var(--c-blueb); background: rgba(37, 99, 255, 0.1);
  border-left: 2px solid rgba(37, 99, 255, 0.4); font-weight: 800;
}

/* ════════════════════════════════════════
   COMPARE SCROLL HINT (mobile only)
   Hidden on desktop, shown via responsive.css
   ════════════════════════════════════════ */
.compare-scroll-hint {
  display: none;
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--c-muted);
  text-align: right;
  padding: 0 4px 6px;
}

/* ════════════════════════════════════════
   QUALIFICATION CARDS
   ════════════════════════════════════════ */
.qual-col-label     { font-family: var(--font-body); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; }
.qual-col-label-no  { color: var(--c-muted); }
.qual-col-label-yes { color: var(--c-green); }
.qual-col-items     { display: flex; flex-direction: column; gap: 10px; }

.qual-card {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--r-lg); padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: background var(--t-base);
}
.qual-card:hover { background: rgba(255, 255, 255, 0.07); }
.qual-card.no    { border: 1px solid rgba(239, 68, 68, 0.18); }
.qual-card.yes   { border: 1px solid rgba(34, 197, 94, 0.25); }

.qual-icon { width: 28px; height: 28px; border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; }
.qual-card.no  .qual-icon { background: rgba(239, 68, 68, 0.10); color: var(--c-red); }
.qual-card.yes .qual-icon { background: rgba(34, 197, 94, 0.12);  color: var(--c-green); }
.qual-text     { font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--c-offwhite); line-height: 1.5; }
.qual-cta-note { font-family: var(--font-body); font-size: 13px; color: var(--c-muted); margin-top: 12px; }

/* ════════════════════════════════════════
   DELIVERABLE CARDS
   ════════════════════════════════════════ */
.deliv-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 24px;
  transition: background var(--t-base), border-color var(--t-base);
}
.deliv-card:hover { background: rgba(255, 255, 255, 0.07); border-color: rgba(37, 99, 255, 0.25); }
.deliv-icon  { width: 40px; height: 40px; border-radius: 10px; background: rgba(37, 99, 255, 0.10); display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.deliv-title { font-family: var(--font-head); font-size: 15px; font-weight: 700; color: var(--c-white); margin-bottom: 8px; }
.deliv-body  { font-family: var(--font-body); font-size: 14px; color: var(--c-muted); line-height: 1.6; }

/* ════════════════════════════════════════
   TESTIMONIAL CARDS
   ════════════════════════════════════════ */
.testi-card {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--c-border);
  border-radius: 16px; padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}
.testi-card:hover {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(37, 99, 255, 0.2);
  transform: translateY(-2px);
}
/* First card is featured — spans full width */
.testi-card:first-child {
  grid-column: span 2;
  background: rgba(37, 99, 255, 0.07);
  border-color: rgba(37, 99, 255, 0.2);
}

.testi-result {
  display: inline-block;
  background: rgba(34, 197, 94, 0.10); border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: var(--r-sm); padding: 4px 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.07em; color: var(--c-green);
}

.tq {
  font-family: var(--font-body); font-size: 15px; font-weight: 300;
  line-height: 1.65; color: var(--c-offwhite); flex: 1;
}

.testi-author {
  display: flex; align-items: center; gap: 12px;
  border-top: 1px solid var(--c-border); padding-top: 14px;
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(37, 99, 255, 0.15); border: 2px solid rgba(37, 99, 255, 0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 14px; font-weight: 800;
  color: var(--c-blueb); flex-shrink: 0;
}
.testi-author-info { flex: 1; }
.testi-name     { font-family: var(--font-body); font-size: 14px; font-weight: 700; color: var(--c-white); margin-bottom: 2px; }
.testi-role     { font-family: var(--font-body); font-size: 12px; color: var(--c-muted); }
.testi-verified { font-size: 10px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--c-green); font-weight: 600; margin-top: 2px; }
.stars          { color: #f59e0b; font-size: 12px; letter-spacing: 1px; margin-bottom: 6px; }
.testi-header   { display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 16px; margin-bottom: 28px; }
.testi-rating   { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.testi-avg      { font-family: var(--font-head); font-size: 14px; font-weight: 700; color: var(--c-white); }
.testi-count    { font-family: var(--font-body); font-size: 13px; color: var(--c-muted); }

/* ════════════════════════════════════════
   FAQ ACCORDION
   ════════════════════════════════════════ */
.faq-item {
  border-radius: var(--r-lg);
  margin-bottom: 8px;
  border: 1px solid rgba(37, 99, 255, 0.1);
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
  transition: background var(--t-base), border-color var(--t-base);
}
.faq-item:hover { background: rgba(255, 255, 255, 0.04); border-color: rgba(37, 99, 255, 0.2); }
.faq-item.open  { background: rgba(37, 99, 255, 0.08);   border-color: rgba(37, 99, 255, 0.3); }

.faq-btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 700; color: var(--c-white);
}
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  border: 1px solid rgba(37, 99, 255, 0.3); color: var(--c-blueb);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
  transition: transform var(--t-base), background var(--t-base);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(37, 99, 255, 0.2); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer p {
  padding: 0 24px 22px;
  font-family: var(--font-body); font-size: 14px; line-height: 1.75;
  color: var(--c-offwhite); margin: 0;
}

/* ════════════════════════════════════════
   SCARCITY + RISK STRIP
   ════════════════════════════════════════ */
.scarcity {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--r-pill); padding: 6px 16px;
  font-family: var(--font-body); font-size: 12px; font-weight: 500;
  color: rgba(255, 255, 255, 0.85); margin-bottom: 28px;
}

.risk-item  { display: flex; align-items: center; gap: 7px; font-family: var(--font-body); font-size: 14px; color: rgba(255, 255, 255, 0.75); }
.risk-check { color: rgba(255, 255, 255, 0.9); font-size: 13px; }

/* ════════════════════════════════════════
   FOOTER COMPONENTS
   ════════════════════════════════════════ */
.footer-logo-img  { height: 34px; width: auto; display: block; margin-bottom: 14px; }
.footer-logo-link { display: inline-flex; text-decoration: none; }
.bc-footer-desc   { font-family: var(--font-body); font-size: 13px; color: var(--c-muted); line-height: 1.6; margin: 0; }
.bc-footer-email  { font-family: var(--font-body); font-size: 14px; font-weight: 600; color: var(--c-blueb); text-decoration: none; }
.bc-footer-email:hover { text-decoration: underline; }
.bc-footer-link   { font-family: var(--font-body); font-size: 13px; color: rgba(255, 255, 255, 0.55); text-decoration: none; transition: color var(--t-fast); }
.bc-footer-link:hover { color: var(--c-blueb); }
.bc-footer-copy   { font-family: var(--font-body); font-size: 12px; color: rgba(122, 131, 154, 0.7); margin: 0; }

/* ════════════════════════════════════════
   LEGAL PAGES
   Privacy policy, refund policy, terms of
   service — shared prose layout system.
   ════════════════════════════════════════ */

/* ── Page hero ── */
.legal-hero {
  background-color: #070a15;
  background-image:
    linear-gradient(135deg, rgba(6,9,18,0) 0%, #0d1226 50%, #0a0f20 100%);
  padding: 108px 0 60px;
  border-bottom: 1px solid var(--c-border);
}
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--c-muted);
  margin-bottom: 20px;
}
.legal-breadcrumb a {
  color: var(--c-blueb);
  text-decoration: none;
}
.legal-breadcrumb a:hover { text-decoration: underline; }
.legal-breadcrumb-sep { color: var(--c-muted); font-size: 10px; }

.legal-title {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  color: var(--c-white);
  margin-bottom: 14px;
}
.legal-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.legal-updated {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--c-muted);
}
.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-blueb);
  background: rgba(37,99,255,0.09);
  border: 1px solid rgba(59,130,246,0.22);
  padding: 4px 10px;
  border-radius: var(--r-pill);
}

/* ── Layout ── */
.legal-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 48px;
  align-items: start;
  padding: 60px 0 80px;
}

/* ── Table of contents sidebar ── */
.legal-toc {
  position: sticky;
  top: 88px;
}
.legal-toc-title {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-muted);
  margin-bottom: 14px;
}
.legal-toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.legal-toc-list li a {
  display: block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--c-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: var(--r-sm);
  border-left: 2px solid transparent;
  transition: color var(--t-fast), border-color var(--t-fast), background var(--t-fast);
  line-height: 1.4;
}
.legal-toc-list li a:hover {
  color: var(--c-offwhite);
  background: rgba(255,255,255,0.04);
  border-left-color: rgba(59,130,246,0.4);
}
.legal-toc-list li a.active {
  color: var(--c-blueb);
  background: rgba(37,99,255,0.08);
  border-left-color: var(--c-blue);
}

/* ── Prose content ── */
.legal-content {
  min-width: 0;
}

.legal-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--c-border);
}
.legal-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.legal-h2 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--c-white);
  margin-bottom: 16px;
  scroll-margin-top: 90px;
}

.legal-h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-offwhite);
  margin-bottom: 10px;
  margin-top: 28px;
}
.legal-h3:first-child { margin-top: 0; }

.legal-p {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--c-offwhite);
  margin-bottom: 16px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.legal-p:last-child { margin-bottom: 0; }

.legal-p a {
  color: var(--c-blueb);
  text-decoration: underline;
  text-decoration-color: rgba(59,130,246,0.4);
  text-underline-offset: 2px;
  transition: color var(--t-fast);
}
.legal-p a:hover { color: var(--c-blue); }

.legal-ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.legal-ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-offwhite);
}
.legal-ul li::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--c-blue);
  flex-shrink: 0;
  margin-top: 8px;
}

.legal-ol {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  counter-reset: legal-counter;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.legal-ol li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--c-offwhite);
  counter-increment: legal-counter;
}
.legal-ol li::before {
  content: counter(legal-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(37,99,255,0.12);
  border: 1px solid rgba(37,99,255,0.25);
  font-family: var(--font-head);
  font-size: 10px;
  font-weight: 800;
  color: var(--c-blueb);
  flex-shrink: 0;
  margin-top: 1px;
}

.legal-highlight {
  background: rgba(37,99,255,0.07);
  border-left: 3px solid var(--c-blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: 16px 20px;
  margin: 24px 0;
}
.legal-highlight p {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.65;
  color: var(--c-offwhite);
  margin: 0;
}
.legal-highlight strong {
  color: var(--c-white);
  font-weight: 600;
}

.legal-contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: 24px 28px;
  margin-top: 20px;
}
.legal-contact-card p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--c-offwhite);
  line-height: 1.65;
  margin-bottom: 6px;
}
.legal-contact-card p:last-child { margin-bottom: 0; }
.legal-contact-card a {
  color: var(--c-blueb);
  text-decoration: none;
}
.legal-contact-card a:hover { text-decoration: underline; }

/* ── Legal pages responsive ── */

/* ≤ 900px: TOC collapses above content */
@media (max-width: 900px) {
  .legal-layout        { grid-template-columns: 1fr; gap: 32px; }
  .legal-toc           { position: static; }
  .legal-toc-title     { margin-bottom: 10px; }
}

/* ≤ 768px: reduce hero + layout padding, scale title */
@media (max-width: 768px) {
  .legal-hero          { padding: 80px 0 36px; }
  .legal-title         { font-size: 32px; line-height: 1.12; }
  .legal-layout        { padding: 36px 0 48px; gap: 24px; }
  .legal-section       { margin-bottom: 40px; padding-bottom: 40px; }
  .legal-h2            { font-size: 20px; scroll-margin-top: 80px; }
  .legal-h3            { font-size: 15px; margin-top: 22px; }
  /* Hide TOC on mobile — it takes valuable space above long content */
  .legal-toc           { display: none; }
  .legal-contact-card  { padding: 18px 20px; }
  .legal-highlight     { padding: 14px 16px; }
}

/* ≤ 640px: compact text + spacing */
@media (max-width: 640px) {
  .legal-hero          { padding: 76px 0 28px; }
  .legal-title         { font-size: 28px; }
  .legal-meta          { flex-direction: column; gap: 4px; }
  .legal-layout        { padding: 28px 0 40px; }
  .legal-section       { margin-bottom: 28px; padding-bottom: 28px; }
  .legal-h2            { font-size: 18px; }
  .legal-h3            { font-size: 14px; }
  .legal-p             { font-size: 14px; line-height: 1.7; }
  .legal-ul li         { font-size: 14px; }
  .legal-ol li         { font-size: 14px; }
  .legal-highlight p   { font-size: 13px; }
  .legal-contact-card  { padding: 14px 16px; }
  .legal-contact-card p { font-size: 13px; }
  .legal-breadcrumb    { font-size: 11px; margin-bottom: 14px; }
}

/* ≤ 480px: very compact */
@media (max-width: 480px) {
  .legal-title         { font-size: 24px; }
  .legal-h2            { font-size: 17px; }
  .legal-h3            { font-size: 13px; }
  .legal-p             { font-size: 13px; }
  .legal-ul li         { font-size: 13px; gap: 8px; }
  .legal-ol li         { font-size: 13px; gap: 8px; }
}

/* ≤ 360px: smallest supported width */
@media (max-width: 360px) {
  .legal-hero          { padding: 72px 0 24px; }
  .legal-title         { font-size: 22px; }
  .legal-h2            { font-size: 16px; }
  .legal-layout        { padding: 22px 0 36px; }
}

/* ≤ 320px: absolute minimum (older iPhones, Galaxy mini) */
@media (max-width: 320px) {
  .legal-title         { font-size: 20px; }
  .legal-h2            { font-size: 15px; }
  .legal-p             { font-size: 13px; }
}
