/* Homepage conversion — light sections use black/near-black text (no grey body copy) */
.home-light {
  background: #fff;
  color: #0a0a0a;
}
.home-light .home-lead,
.home-light p,
.home-light li,
.home-light td {
  color: #0a0a0a;
}
.home-light .home-muted {
  color: #1a1a1a;
}
.home-light h2,
.home-light h3 {
  color: #000;
  font-family: 'Space Grotesk', sans-serif;
}

.home-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  max-width: 40rem;
  margin: 1.25rem auto 0;
}
@media (max-width: 540px) {
  .home-hero-stats {
    grid-template-columns: 1fr;
    max-width: 14rem;
  }
}
.home-hero-stat-card {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 12px;
  padding: 0.85rem 0.65rem;
  text-align: center;
}
.home-hero-stat-card .icon {
  font-size: 1.5rem;
  line-height: 1;
  margin-bottom: 0.25rem;
}
.home-hero-stat-card .num {
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: #22d3ee;
  font-family: 'JetBrains Mono', monospace;
}
.home-hero-stat-card .lbl {
  font-size: 0.75rem;
  color: #e2e8f0;
  line-height: 1.3;
}

.home-what-you-get {
  background: #0f172a;
  border-y: 1px solid rgba(34, 211, 238, 0.25);
  padding: 1.25rem 0;
}
.home-what-you-get h2 {
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: #f8fafc;
  margin: 0 0 0.85rem;
  font-family: 'Space Grotesk', sans-serif;
}
.home-what-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 640px) {
  .home-what-grid {
    grid-template-columns: 1fr;
    max-width: 18rem;
  }
}
.home-what-item .ico {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}
.home-what-item strong {
  display: block;
  color: #f8fafc;
  font-size: 0.9rem;
}
.home-what-item span {
  font-size: 0.8rem;
  color: #cbd5e1;
}

/* Hero — dark overlay for readable text on photo */
.home-hero.ds-hero-visual .ds-hero-visual__media::after {
  background: rgba(15, 23, 42, 0.65);
}
.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: rgba(15, 23, 42, 0.65);
}
.home-hero.ds-hero-visual > .ds-container--wide {
  z-index: 2;
}
.home-hero__title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.home-hero__subhead,
.home-hero__desc {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

/* Key metrics — white band below hero */
.home-key-metrics {
  background: #ffffff;
  padding: 2.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.home-key-metrics__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
  text-align: center;
}
.home-key-metrics__card {
  padding: 0.25rem 0.5rem;
}
.home-key-metrics__stat {
  margin: 0 0 0.35rem;
  font-family: 'JetBrains Mono', 'Space Grotesk', sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0f172a;
  letter-spacing: -0.02em;
}
.home-key-metrics__lbl {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.45;
}
@media (max-width: 640px) {
  .home-key-metrics {
    padding: 2rem 0;
  }
  .home-key-metrics__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    max-width: 14rem;
  }
}

/* Lead magnet — email gate for inbound compliance PDF */
.home-lead-magnet-band {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}
.home-lead-magnet-band__inner {
  display: grid;
  gap: 1.5rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .home-lead-magnet-band__inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
    gap: 2rem;
  }
}
.home-lead-magnet-band h2 {
  margin: 0 0 0.65rem;
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  color: #0f172a;
}
.home-lead-magnet-band__pitch {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  line-height: 1.55;
  color: #0f172a;
}
.home-lead-magnet-band__geo {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #64748b;
}
.home-lead-magnet-form__label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.45;
  color: #0f172a;
  margin-bottom: 0.65rem;
}
.home-lead-magnet-form__row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
@media (min-width: 520px) {
  .home-lead-magnet-form__row {
    flex-direction: row;
    align-items: stretch;
  }
}
.home-lead-magnet-form__input {
  flex: 1;
  min-width: 0;
  padding: 0.7rem 0.85rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-size: 1rem;
  color: #0f172a;
  background: #fff;
}
.home-lead-magnet-form__input:focus {
  outline: 2px solid #0891b2;
  outline-offset: 1px;
  border-color: #0891b2;
}
.home-lead-magnet-form__btn {
  flex-shrink: 0;
  background: #059669 !important;
  border: 2px solid #047857 !important;
  color: #fff !important;
  font-weight: 600;
  padding: 0.7rem 1.25rem;
  border-radius: 10px;
  white-space: nowrap;
}
.home-lead-magnet-form__btn:hover {
  background: #047857 !important;
}
.home-lead-magnet-form__success {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: #047857;
  line-height: 1.5;
}
.home-lead-magnet-form__success a {
  color: #0e7490;
  font-weight: 600;
}
.home-lead-magnet-form__tip {
  margin: 0.5rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #64748b;
}
.home-lead-magnet-form__tip--modal {
  color: #94a3b8;
}
.home-lead-magnet-form__error {
  margin: 0.65rem 0 0;
  font-size: 0.875rem;
  color: #b91c1c;
}
.home-lead-magnet-form__fine {
  margin: 0.65rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.45;
}
.home-lead-magnet-form__fine a {
  color: #0e7490;
  text-decoration: underline;
}
.home-lead-magnet-form__tip.hidden,
.home-lead-magnet-form__success.hidden,
.home-lead-magnet-form__error.hidden,
[data-checklist-success].hidden,
[data-checklist-error].hidden,
#checklistLeadModalSuccess.hidden,
#checklistLeadModalError.hidden {
  display: none !important;
}
[data-checklist-step].hidden {
  display: none !important;
}
.home-lead-magnet-form__code {
  font-size: 1.25rem;
  letter-spacing: 0.35em;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
.home-lead-magnet-form__row--code {
  flex-wrap: wrap;
}
.home-lead-magnet-form__link-btn {
  background: none;
  border: none;
  padding: 0;
  color: #0e7490;
  text-decoration: underline;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
}
button.home-calc-secondary-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}
button.home-calc-secondary-link:hover {
  color: #0891b2;
}
.checklist-lead-modal.hidden {
  display: none !important;
}
.checklist-lead-modal:not(.hidden) {
  display: flex !important;
}

/* Hero typography */
.home-hero__title {
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.home-hero__subhead {
  line-height: 1.55;
}
.home-hero__desc {
  line-height: 1.6;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTAs — unified height, mobile full-width stack */
.home-cta-row--hero {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: stretch;
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) {
  .home-cta-row--hero {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: none;
  }
}
.home-cta-row--hero .ds-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 10px;
  text-align: center;
  box-sizing: border-box;
}
@media (max-width: 639px) {
  .home-cta-row--hero .ds-btn {
    width: 100%;
    max-width: none;
  }
}
@media (min-width: 640px) {
  .home-cta-row--hero .home-cta-primary {
    min-width: 220px;
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .home-cta-row--hero .home-cta-ghost {
    min-width: 200px;
  }
}
.home-cta-row--hero .home-cta-primary {
  background: #059669 !important;
  border: 2px solid #047857 !important;
  color: #fff !important;
  box-shadow: 0 4px 18px rgba(5, 150, 105, 0.4) !important;
}
.home-cta-row--hero .home-cta-primary:hover {
  background: #047857 !important;
  border-color: #065f46 !important;
}
.home-cta-ghost {
  background: transparent !important;
  border: 2px solid rgba(248, 250, 252, 0.85) !important;
  color: #f8fafc !important;
  box-shadow: none !important;
  text-decoration: none;
}
.home-cta-ghost:hover {
  border-color: #22d3ee !important;
  color: #fff !important;
  background: rgba(34, 211, 238, 0.12) !important;
}

.home-cta-row {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
  width: 100%;
}
@media (min-width: 480px) {
  .home-cta-row {
    flex-direction: row;
    justify-content: center;
  }
}
.home-cta-primary {
  width: 100%;
  max-width: 280px;
  text-align: center;
}
@media (min-width: 480px) {
  .home-cta-primary {
    width: auto;
    min-width: 220px;
  }
}
.home-cta-secondary {
  width: 100%;
  max-width: 280px;
  background: transparent !important;
  border: 2px solid rgba(148, 163, 184, 0.6) !important;
  color: #e2e8f0 !important;
  box-shadow: none !important;
}
.home-cta-secondary:hover {
  border-color: #22d3ee !important;
  color: #fff !important;
}

.home-cta-primary--calc {
  background: #059669 !important;
  border-color: #047857 !important;
  color: #fff !important;
  box-shadow: 0 4px 14px rgba(5, 150, 105, 0.35) !important;
  min-height: 48px;
}
.home-cta-primary--calc:hover {
  background: #047857 !important;
}

/* Trust data bar directly under hero */
.home-trust-strip--below-hero {
  background: #0f172a;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(34, 211, 238, 0.2);
  position: relative;
  z-index: 15;
}
.home-trust-strip--below-hero .home-trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-trust-strip--below-hero .home-trust-strip__num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.25rem;
  color: #22d3ee;
}
.home-trust-strip--below-hero .home-trust-strip__lbl {
  font-size: 0.85rem;
  color: #e2e8f0;
}

/* Hub cards overlap hero / light section boundary */
.home-fba-hub--overlap {
  margin-top: 0;
  padding: 2rem 0 2rem;
  margin-bottom: 3.75rem;
  position: relative;
  z-index: 20;
  background: #fff;
  overflow: visible;
}
@media (min-width: 768px) {
  .home-fba-hub--overlap {
    margin-top: -2.5rem;
    padding-bottom: 2.5rem;
    margin-bottom: 3.75rem;
  }
}
/* Tool cards: 1 col mobile → 2×2 tablet → 4 across desktop */
.home-hub-grid--tools {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  max-width: 72rem;
  margin: 0 auto 1.5rem;
}
.home-fba-hub--overlap .home-hub-card {
  min-height: 0;
  height: auto;
}
.home-fba-hub--overlap .home-more-link {
  margin-top: 1.25rem;
  margin-bottom: 0;
}
@media (min-width: 560px) {
  .home-hub-grid--tools {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .home-hub-grid--tools {
    grid-template-columns: repeat(4, 1fr);
  }
}
.home-hub-card--center {
  text-align: center;
}
.home-hub-card--center .hub-ico {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.home-hub-card--center h3 {
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.home-hub-card--center p {
  text-align: center;
}

#home-savings-calc {
  scroll-margin-top: 96px;
}

.home-calc-section {
  padding: 3rem 0;
}
.home-calc-section-head {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 1.5rem;
}
.home-calc-section h2,
.home-calc-section-head h2 {
  text-align: center;
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  margin: 0 0 0.5rem;
}
.home-calc-traps-split {
  display: grid;
  gap: 1.75rem;
  max-width: 72rem;
  margin: 0 auto;
  align-items: start;
}
.home-calc-traps-split--premium {
  align-items: stretch;
  padding: clamp(1rem, 2.5vw, 1.35rem);
  border-radius: 16px;
  background: linear-gradient(155deg, #070b12 0%, #0f172a 42%, #0a1628 100%);
  border: 1px solid rgba(34, 211, 238, 0.28);
  box-shadow:
    0 28px 56px rgba(2, 6, 23, 0.45),
    0 0 48px rgba(34, 211, 238, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
@media (min-width: 960px) {
  .home-calc-traps-split {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
  }
  .home-calc-traps-split--premium {
    gap: 1.5rem;
  }
}
.home-calc-panel .home-calc-wrap {
  max-width: none;
  margin: 0;
}
.home-traps-visual {
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}
/* Slide 2: red/green compare matrix (HTML text for SEO) */
.matrix-section__page-title {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.home-traps-visual .matrix-section {
  flex: 1;
  padding: 0;
  background-color: transparent;
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 0;
}
.home-traps-visual .matrix-container {
  width: 100%;
  max-width: 1040px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: clamp(0.75rem, 2vw, 2rem);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.home-traps-visual .matrix-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 2.5rem);
  border: 1px solid #e2e8f0;
  background-color: #ffffff;
}
.home-traps-visual .matrix-box.traditional {
  background-color: #fff5f5;
  border-color: #fee2e2;
}
.home-traps-visual .matrix-box.traditional .status-icon {
  color: #dc2626;
  font-weight: bold;
}
.home-traps-visual .matrix-box.cloudspects {
  background-color: #f0fdf4;
  border-color: #dcfce7;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.03);
}
.home-traps-visual .matrix-box.cloudspects .status-icon {
  color: #16a34a;
  font-weight: bold;
}
.home-traps-visual .matrix-box h3 {
  font-size: clamp(1.05rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-top: 0;
  margin-bottom: clamp(1rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #0f172a;
}
.home-traps-visual .matrix-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(0.85rem, 2vw, 1.25rem);
}
.home-traps-visual .matrix-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(0.65rem, 1.5vw, 1rem);
  margin-bottom: 0;
  flex: 1;
}
.home-traps-visual .matrix-item:last-child {
  margin-bottom: 0;
}
.home-traps-visual .status-icon {
  flex-shrink: 0;
  font-size: 1.15rem;
  line-height: 1.35;
  width: 1.25rem;
  text-align: center;
}
.home-traps-visual .matrix-item-title {
  font-size: clamp(0.9rem, 1.8vw, 1.0625rem);
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 4px;
}
.home-traps-visual .matrix-item-desc {
  font-size: clamp(0.8rem, 1.5vw, 0.875rem);
  color: #64748b;
  line-height: 1.5;
}

/* Service split (image + card text) — homepage or services page */
.home-service-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.5rem;
  align-items: stretch;
}
.home-service-split__media {
  margin: 0;
  height: 100%;
  min-height: 280px;
}
.home-service-split__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
}
.home-service-split__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.home-service-split__card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  color: #0f172a;
}
.home-service-split__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1;
}
.home-service-split__card li {
  padding: 0.65rem 0;
  border-bottom: 1px solid #f1f5f9;
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.45;
}
.home-service-split__card li:last-child {
  border-bottom: none;
}
@media (max-width: 768px) {
  .home-service-split {
    grid-template-columns: 1fr;
  }
  .home-service-split__media {
    min-height: 220px;
  }
}
.service-detail__grid--balanced {
  align-items: stretch;
}
.service-detail__grid--balanced .service-detail__media {
  order: 1;
}
.service-detail__grid--balanced .service-detail__body-card {
  order: 2;
}
.service-detail__body-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
}
.service-detail__grid--balanced .service-detail__img {
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  border-radius: 12px;
}
@media (max-width: 768px) {
  .home-traps-visual .matrix-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .home-traps-visual .matrix-box {
    padding: 1.875rem 1.5rem;
  }
}
@media (max-width: 959px) {
  .home-calc-traps-split--premium .home-calc-panel {
    order: 1;
  }
  .home-calc-traps-split--premium .home-traps-visual {
    order: 2;
  }
}
.home-traps-panel__title {
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  margin: 0 0 1rem;
  text-align: left;
  color: #000;
}
.home-trap-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.home-trap-row-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
@media (max-width: 520px) {
  .home-trap-row-card {
    grid-template-columns: 1fr;
  }
}
.home-trap-side {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 0.65rem;
  font-size: 0.88rem;
  line-height: 1.4;
}
.home-trap-side p {
  margin: 0;
  color: #0a0a0a;
}
.home-trap-side--bad {
  background: #fef2f2;
}
.home-trap-side--good {
  background: #ecfdf5;
}
.home-trap-ico {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.3;
}

/* Calculator: number + range (always visible) */
.home-calc-widget {
  max-width: 100%;
}
.home-calc-field {
  margin-bottom: 1.1rem;
}
.home-calc-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.45rem;
  color: #cbd5e1;
}
.home-calc-control-row {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.65rem;
  align-items: center;
}
.home-calc-num {
  width: 100%;
  margin: 0 !important;
  padding: 0.5rem 0.55rem !important;
  border-radius: 8px;
  border: 1px solid #334155 !important;
  background: #1e293b !important;
  color: #fff !important;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
}
.home-calc-field label {
  font-weight: 600;
}
.home-calc-widget input[type='range'] {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  min-height: 2.75rem !important;
  margin: 0 !important;
  padding: 0 !important;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}
.home-calc-widget input[type='range']::-webkit-slider-runnable-track {
  height: 8px;
  background: #1e3a5f;
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}
.home-calc-widget input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -7px;
  border-radius: 50%;
  background: #16a34a;
  border: 2px solid #15803d;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.45);
}
.home-calc-widget input[type='range']::-moz-range-track {
  height: 8px;
  background: #1e3a5f;
  border-radius: 999px;
}
.home-calc-widget input[type='range']::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #16a34a;
  border: 2px solid #15803d;
  box-shadow: 0 2px 6px rgba(22, 163, 74, 0.45);
}
.home-calc-results-stack {
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid #334155;
}
.home-calc-result-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
  color: #e2e8f0;
}
.home-calc-result-line strong {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 800;
  white-space: nowrap;
}
.home-calc-result-line--loss strong {
  color: #f87171;
}
.home-calc-result-line--cost strong {
  color: #34d399;
}
.home-calc-result-line--net {
  margin-top: 0.35rem;
  padding-top: 0.65rem;
  border-top: 1px dashed #475569;
  font-size: 0.95rem;
}
.home-calc-result-line--net strong {
  color: #22d3ee;
  font-size: 1.35rem;
}
.home-calc-inline-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.home-calc-inline-cta .home-cta-primary--calc {
  flex: 1 1 9rem;
}
.home-calc-btn-secondary {
  flex: 1 1 9rem;
  padding: 0.65rem 1rem;
  border-radius: 8px;
  border: 1px solid #334155;
  background: transparent;
  color: #e2e8f0;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.home-calc-btn-secondary:hover {
  border-color: #22d3ee;
  color: #fff;
}

.home-range-field {
  margin-bottom: 1rem;
}
.home-range-field label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #cbd5e1;
}
.home-range-val {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  color: #22d3ee;
  font-size: 0.95rem;
}
.home-range-field input[type='range'] {
  display: block;
  width: 100%;
  min-height: 2.75rem;
  margin: 0.15rem 0 0;
  padding: 0;
  accent-color: #22d3ee;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
}
.home-range-field input[type='range']::-webkit-slider-runnable-track {
  height: 8px;
  background: #334155;
  border-radius: 4px;
}
.home-range-field input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  margin-top: -7px;
  border-radius: 50%;
  background: #22d3ee;
}
.home-trust-strip__list--inline {
  margin: 0 auto 1.25rem;
  padding: 0;
}
.home-trust-strip__list--inline li {
  color: #0a0a0a;
}
.home-trust-strip__list--inline .home-trust-strip__num {
  color: #0e7490;
}
.home-trust-strip__list--inline .home-trust-strip__lbl {
  color: #1a1a1a;
}
.logo__wordmark {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: #22d3ee;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}
.home-calc-visual {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.5rem;
  align-items: center;
  margin: 1rem 0;
  padding: 1rem 0.5rem;
  border-top: 1px solid #334155;
  border-bottom: 1px solid #334155;
}
.home-calc-visual__label {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.25rem;
}
.home-calc-visual__amount {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 800;
  line-height: 1.1;
}
.home-calc-visual__amount--loss {
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #ef4444;
}
.home-calc-visual__amount--save {
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  color: #34d399;
}
.home-calc-visual__vs {
  font-size: 0.8rem;
  font-weight: 700;
  color: #64748b;
  text-align: center;
}
.home-calc-net-box {
  text-align: center;
  margin-bottom: 0.75rem;
}
.home-calc-net-label {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
}
.home-calc-net-value {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f8fafc;
  font-family: 'JetBrains Mono', monospace;
}
.home-calc-net-hint {
  margin: 0.35rem 0 0;
  font-size: 0.8rem;
  color: #67e8f9;
}
.home-calc-quote-btn {
  width: 100%;
  margin-top: 0.5rem;
  background: transparent !important;
  border: 2px solid rgba(148, 163, 184, 0.55) !important;
  color: #e2e8f0 !important;
  box-shadow: none !important;
}
.home-calc-quote-btn:hover {
  border-color: #22d3ee !important;
  color: #fff !important;
}

.home-calc-wrap {
  max-width: 32rem;
  margin: 0 auto;
  background: #0f172a;
  color: #f8fafc;
  border-radius: 14px;
  padding: 1.35rem;
}
.home-calc-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: #cbd5e1;
}
.home-light .home-calc-wrap,
.home-light .home-calc-wrap label,
.home-light .home-calc-wrap .home-calc-visual__label,
.home-light .home-calc-wrap .home-calc-net-label,
.home-light .home-calc-wrap .home-calc-disclaimer {
  color: #cbd5e1;
}
.home-light .home-calc-wrap .home-range-val,
.home-light .home-calc-wrap .home-calc-net-hint {
  color: #67e8f9;
}
.home-light .home-calc-wrap .home-calc-net-value {
  color: #f8fafc;
}
.home-calc-wrap input:not([type='range']):not([type='hidden']) {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.55rem 0.65rem;
  border-radius: 8px;
  border: 1px solid #334155;
  background: #1e293b;
  color: #fff;
  font-size: 1rem;
}
.home-calc-panel {
  min-width: 0;
}
.home-calc-wrap input[type='hidden'] {
  display: none;
}
.home-calc-results {
  border-top: 1px solid #334155;
  margin-top: 0.5rem;
  padding-top: 1rem;
}
.home-calc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #e2e8f0;
}
.home-calc-row strong {
  color: #f8fafc;
}
.home-calc-row--loss strong {
  color: #f87171;
}
.home-calc-row--save strong {
  color: #34d399;
  font-size: 1.15rem;
}
.home-calc-disclaimer {
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 0.75rem;
}

.home-traps {
  padding: 3rem 0;
  background: #f8fafc;
}
.home-traps h2 {
  text-align: center;
  margin-bottom: 1.25rem;
}
.home-trap-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  max-width: 52rem;
  margin: 0 auto;
}
.home-trap-table th,
.home-trap-table td {
  border: 1px solid #cbd5e1;
  padding: 0.65rem 0.75rem;
  vertical-align: top;
}
.home-trap-table th {
  background: #e2e8f0;
  color: #000;
  font-weight: 700;
}
.home-trap-bad {
  color: #b91c1c;
  font-weight: 600;
}
.home-trap-good {
  color: #047857;
  font-weight: 600;
}

.home-fba-hub {
  padding: 3rem 0;
}
.home-fba-hub h2 {
  text-align: center;
  margin-bottom: 0.35rem;
}
.home-hub-grid,
.home-hub-scroll {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 56rem;
  margin: 1.25rem auto 0;
}
@media (max-width: 720px) {
  .home-hub-scroll {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: none;
    padding: 0 0.25rem 0.5rem;
    margin-left: -0.5rem;
    margin-right: -0.5rem;
  }
  .home-hub-scroll .home-hub-card {
    flex: 0 0 min(280px, 82vw);
    scroll-snap-align: start;
  }
}
.home-hub-card h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.35rem;
}
.home-hub-card .hub-arrow {
  color: #0891b2;
  font-weight: 700;
}
.home-hub-card {
  display: block;
  border: 2px solid #0e7490;
  border-radius: 12px;
  padding: 1.15rem;
  text-decoration: none;
  color: #000;
  background: #fff;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.home-hub-card:hover {
  border-color: #0891b2;
  box-shadow: 0 8px 24px rgba(8, 145, 178, 0.15);
}
.home-hub-card .hub-ico {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}
.home-hub-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  color: #000;
}
.home-hub-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.45;
  color: #0a0a0a;
}

.home-photo-compare {
  padding: 2.5rem 0;
  background: #f1f5f9;
}
.home-photo-compare h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.home-photo-pair {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr 1fr;
  max-width: 56rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .home-photo-pair {
    grid-template-columns: 1fr;
  }
}
.home-photo-box {
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid #cbd5e1;
  background: #fff;
}
.home-photo-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}
.home-photo-box figcaption {
  padding: 0.65rem 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
}
.home-photo-box--bad figcaption {
  background: #fef2f2;
  color: #991b1b;
}
.home-photo-box--good figcaption {
  background: #ecfdf5;
  color: #047857;
}

.home-social-proof {
  padding: 2.5rem 0;
  background: #0f172a;
  overflow: hidden;
}
.home-social-proof .tagline {
  text-align: center;
  color: #22d3ee;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}
.home-social-link {
  color: #f8fafc;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-social-link:hover {
  color: #67e8f9;
}
.home-hero-stats--trust {
  max-width: 48rem;
  margin: 0 auto 1.25rem;
}
.home-marquee {
  overflow: hidden;
  margin-bottom: 1.25rem;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.home-marquee__track {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: home-marquee-scroll 28s linear infinite;
}
.home-marquee__track span {
  flex-shrink: 0;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(34, 211, 238, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #e2e8f0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
@keyframes home-marquee-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .home-marquee__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}
.home-review-track {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0 1rem 0.5rem;
  -webkit-overflow-scrolling: touch;
}
.home-review-card {
  flex: 0 0 min(300px, 85vw);
  scroll-snap-align: start;
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
  padding: 1rem;
}
.home-review-card p {
  margin: 0 0 0.5rem;
  color: #f1f5f9;
  font-size: 0.9rem;
  line-height: 1.5;
}
.home-review-card footer {
  font-size: 0.8rem;
  color: #94a3b8;
}

.home-badges {
  padding: 1.5rem 0 2.5rem;
  background: #fff;
}
.home-badges ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.home-badges li {
  border: 1px solid #0f172a;
  border-radius: 8px;
  padding: 0.45rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.home-faq-section {
  padding: 2.5rem 0 3rem;
  background: #fff;
}
.home-faq-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}
.home-faq details {
  max-width: 40rem;
  margin: 0 auto 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  background: #fff;
}
.home-faq summary {
  padding: 0.85rem 1rem;
  font-weight: 700;
  color: #000;
  cursor: pointer;
  list-style: none;
}
.home-faq summary::-webkit-details-marker {
  display: none;
}
.home-faq details[open] summary {
  border-bottom: 1px solid #e2e8f0;
}
.home-faq .faq-body {
  padding: 0.75rem 1rem 1rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #0a0a0a;
}
.home-faq .faq-trap {
  color: #b91c1c;
  font-weight: 600;
}
.home-faq .faq-fix {
  color: #047857;
  font-weight: 600;
}
.home-faq--ops .faq-body {
  color: #0a0a0a;
}
.home-faq--ops .faq-body strong {
  color: #000;
}
.home-faq-more {
  text-align: center;
  margin: 1.25rem 0 0;
  font-size: 0.95rem;
}
.home-faq-more a {
  color: #0e7490;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-cost-chart {
  padding: 3rem 0;
  background: linear-gradient(180deg, #ecfeff 0%, #fff 100%);
}
.home-cost-chart h2 {
  text-align: center;
}
.home-chart-box {
  max-width: 22rem;
  margin: 1.25rem auto;
  background: #fff;
  border: 2px solid #0e7490;
  border-radius: 14px;
  padding: 1.25rem;
}
.home-chart-bar {
  margin-bottom: 0.75rem;
}
.home-chart-bar label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 600;
  color: #000;
  margin-bottom: 0.25rem;
}
.home-chart-bar .bar {
  height: 10px;
  background: #e2e8f0;
  border-radius: 5px;
  overflow: hidden;
}
.home-chart-bar .fill {
  height: 100%;
  border-radius: 5px;
}
.home-chart-bar .fill--risk {
  background: #ef4444;
}
.home-chart-bar .fill--cost {
  background: #0891b2;
  width: 8% !important;
  min-width: 12px;
}
.home-chart-net {
  text-align: center;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed #94a3b8;
}
.home-chart-net .label {
  font-size: 0.85rem;
  color: #000;
}
.home-chart-net .value {
  font-size: 1.75rem;
  font-weight: 700;
  color: #047857;
  font-family: 'JetBrains Mono', monospace;
}

.home-lead-band {
  padding: 2.5rem 0;
  background: #0f172a;
  border-top: 3px solid #22d3ee;
}
.home-lead-inner {
  max-width: 36rem;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.home-lead-inner h2 {
  color: #f8fafc;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}
.home-lead-inner p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin: 0 0 1rem;
}
.home-lead-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 480px) {
  .home-lead-form {
    flex-direction: row;
  }
}
.home-lead-form input[type="email"] {
  flex: 1;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid #475569;
  font-size: 1rem;
}
.home-lead-form button {
  padding: 0.65rem 1.15rem;
  border-radius: 8px;
  border: none;
  background: #22d3ee;
  color: #0f172a;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.home-lead-form button:hover {
  background: #67e8f9;
}
.home-lead-note {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.65rem;
}

/* Legacy blocks kept for gallery-adjacent sections */
.home-case-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.home-case-card {
  background: #1e293b;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 12px;
  padding: 1.15rem;
}
.home-case-card .stat {
  font-size: 1.65rem;
  font-weight: 700;
  color: #22d3ee;
  font-family: 'JetBrains Mono', monospace;
}
.home-case-card h3 {
  margin: 0.35rem 0;
  font-size: 1.05rem;
  color: #f8fafc;
}
.home-case-card p {
  margin: 0;
  font-size: 0.9rem;
  color: #e2e8f0;
  line-height: 1.55;
}
.home-cases {
  padding: 3.5rem 0;
  background: #0f172a;
}
.home-cases h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: #f8fafc;
  text-align: center;
  margin: 0 0 1.5rem;
}
.home-compare-table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
}
.home-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  min-width: 520px;
}
.home-compare-table th,
.home-compare-table td {
  border: 1px solid #cbd5e1;
  padding: 0.65rem 0.75rem;
  text-align: left;
  color: #000;
}
.home-compare-table th {
  background: #f1f5f9;
  color: #000;
  font-weight: 600;
}
.home-compare-table .yes {
  color: #047857;
  font-weight: 600;
}
.home-psi-table-section {
  padding: 3rem 0;
  background: #fff;
}
.home-psi-table-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  text-align: center;
  font-size: 1.65rem;
  margin: 0 0 0.5rem;
  color: #000;
}
.home-psi-table-section .home-lead {
  text-align: center;
  color: #0a0a0a;
  max-width: 36rem;
  margin: 0 auto 1.25rem;
  line-height: 1.6;
}

/* —— Slim homepage layout —— */
.home-calc-section--hero {
  padding-top: 3rem;
  padding-bottom: 2.25rem;
  position: relative;
  z-index: 5;
  clear: both;
}
.home-calc-section--hero .home-calc-section-head {
  margin-top: 0;
  padding-top: 0;
  position: relative;
  z-index: 1;
}
.home-calc-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  text-align: center;
}
.home-calc-cta-row--link-only {
  margin-top: 1.75rem;
  margin-bottom: 0;
}
.home-calc-cta-row--link-only .home-calc-secondary-link {
  font-size: 0.95rem;
}
@media (min-width: 560px) {
  .home-calc-cta-row:not(.home-calc-cta-row--link-only) {
    flex-direction: row;
    justify-content: center;
  }
}
.home-calc-secondary-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #0e7490;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.home-trust-strip {
  background: #0f172a;
  padding: 0.85rem 0;
  border-y: 1px solid rgba(34, 211, 238, 0.2);
}
.home-trust-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 52rem;
  margin-inline: auto;
}
.home-trust-strip__list li {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  color: #f8fafc;
}
.home-trust-strip__num {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 1.1rem;
  color: #22d3ee;
}
.home-trust-strip__lbl {
  font-size: 0.8rem;
  color: #e2e8f0;
}
.home-fba-hub--compact {
  padding: 2rem 0;
}
.home-fba-hub__title {
  text-align: center;
  font-size: 1.15rem;
  margin: 0 0 1rem;
}
.home-more-link {
  text-align: center;
  margin: 1rem 0 0;
  font-size: 0.9rem;
}
.home-more-link a {
  color: #0e7490;
  font-weight: 600;
  text-decoration: underline;
}
.home-social-proof--compact {
  padding: 2rem 0;
  background: #f8fafc;
}
.home-social-proof--compact .tagline {
  color: #0e7490;
  margin-bottom: 1rem;
}

/* Testimonials — generous whitespace, horizontal scroll */
.home-social-proof--testimonials {
  padding: 5rem 0;
  background: #f8fafc;
}
.home-social-proof--testimonials .tagline {
  text-align: center;
  color: #0e7490;
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 2rem;
}
.home-social-proof__more {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
}
.home-social-proof__more .home-social-link {
  color: #0e7490;
  font-weight: 600;
}
.home-social-proof__more .home-social-link:hover {
  color: #0891b2;
}
.home-review-track--light {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.5rem 1rem;
  -webkit-overflow-scrolling: touch;
  max-width: 72rem;
  margin: 0 auto;
}
.home-review-card--light {
  flex: 0 0 min(320px, 88vw);
  scroll-snap-align: start;
  background: #fff;
  border: 2px solid #e2e8f0;
  border-radius: 14px;
  padding: 1.35rem 1.5rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}
.home-review-card--light p {
  margin: 0 0 0.75rem;
  color: #0f172a;
  font-size: 1rem;
  line-height: 1.6;
  font-style: italic;
}
.home-review-card--light footer {
  font-size: 0.85rem;
  color: #475569;
  font-style: normal;
}

.home-quote-card {
  max-width: 36rem;
  margin: 0 auto;
  padding: 1.25rem 1.35rem;
  background: #fff;
  border: 2px solid #0e7490;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(8, 145, 178, 0.08);
}
.home-quote-card p {
  margin: 0 0 0.65rem;
  color: #0a0a0a;
  font-size: 1rem;
  line-height: 1.55;
}
.home-quote-card footer {
  font-size: 0.85rem;
  color: #1a1a1a;
}
.home-cases--compact {
  padding: 1.5rem 0 2rem;
}
.home-case-grid--mini {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  max-width: 52rem;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .home-case-grid--mini {
    grid-template-columns: 1fr;
    max-width: 16rem;
  }
}
.home-case-grid--mini .home-case-card {
  padding: 0.85rem;
  text-align: center;
}
.home-case-grid--mini .home-case-card h3 {
  font-size: 0.85rem;
}
/* Homepage FAQ — matches FAQPage JSON-LD */
.home-faq {
  padding: 4rem 0 4.5rem;
  background: #fff;
  border-top: 1px solid #e2e8f0;
}
.home-faq__inner {
  max-width: 42rem;
  margin: 0 auto;
}
.home-faq h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  color: #0f172a;
  text-align: center;
  margin: 0 0 0.5rem;
}
.home-faq__lead {
  text-align: center;
  color: #64748b;
  font-size: 1rem;
  margin: 0 0 2rem;
  line-height: 1.5;
}
.home-faq__list {
  border-top: 1px solid #e2e8f0;
}
.home-faq__item {
  border-bottom: 1px solid #e2e8f0;
}
.home-faq__question {
  list-style: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
  padding: 1rem 2rem 1rem 0;
  line-height: 1.45;
  position: relative;
}
.home-faq__question::-webkit-details-marker {
  display: none;
}
.home-faq__question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: #0e7490;
  line-height: 1;
}
.home-faq__item[open] .home-faq__question::after {
  content: '−';
}
.home-faq__answer {
  padding: 0 0 1rem;
}
.home-faq__answer p {
  margin: 0;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
}
.home-faq__answer a {
  color: #0e7490;
  font-weight: 600;
  text-decoration: underline;
}
.home-faq__answer a:hover {
  color: #0891b2;
}
.home-faq__more {
  text-align: center;
  margin: 1.75rem 0 0;
  font-size: 0.9rem;
}
.home-faq__more a {
  color: #0e7490;
  font-weight: 600;
}
.home-faq__more a:hover {
  color: #0891b2;
}

.home-bottom-cta {
  padding: 2.5rem 0;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-top: 3px solid #22d3ee;
}
.home-bottom-cta__inner {
  text-align: center;
  max-width: 32rem;
  margin: 0 auto;
}
.home-bottom-cta h2 {
  color: #f8fafc;
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
  font-family: 'Space Grotesk', sans-serif;
}
.home-bottom-cta__lead {
  color: #cbd5e1;
  font-size: 0.95rem;
  margin: 0 0 1.25rem;
}
.home-bottom-cta__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: center;
}
@media (min-width: 480px) {
  .home-bottom-cta__buttons {
    flex-direction: row;
    justify-content: center;
  }
}
.home-bottom-cta .home-cta-secondary {
  border-color: rgba(148, 163, 184, 0.55) !important;
  color: #e2e8f0 !important;
}
.home-bottom-cta__faq {
  margin: 1rem 0 0;
  font-size: 0.85rem;
}
.home-bottom-cta__faq a {
  color: #67e8f9;
  text-decoration: underline;
}
.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;
}

/* Nav dropdown (Resources) */
.nav-dropdown-wrap {
  position: relative;
}
.nav-dropdown {
  position: relative;
}
.nav-links > li > a,
.nav-links .nav-dropdown > summary {
  color: var(--cs-text-muted, #475569) !important;
  font-weight: 500;
  text-decoration: none;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  cursor: pointer;
}
.nav-links .nav-dropdown > summary {
  list-style: none;
  display: inline-block;
}
.nav-dropdown summary {
  list-style: none;
  cursor: pointer;
  color: var(--cs-text-muted, #475569) !important;
  font-weight: 500;
}
.nav-links .nav-dropdown > summary:hover {
  color: var(--cs-navy, #0f172a) !important;
  background-color: var(--cs-white-muted, #f1f5f9);
}
.nav-dropdown summary::-webkit-details-marker {
  display: none;
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1100;
  min-width: 11rem;
  margin: 0.35rem 0 0;
  padding: 0.35rem 0;
  list-style: none;
  background: rgba(15, 23, 42, 0.98);
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 8px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}
.nav-dropdown:not([open]) .nav-dropdown-menu {
  display: none;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.45rem 0.85rem;
  font-size: 0.9rem;
  text-decoration: none;
  color: #e2e8f0;
}
.nav-dropdown-menu a:hover {
  background: rgba(34, 211, 238, 0.12);
  color: #fff;
}
@media (max-width: 768px) {
  .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 0.75rem;
    margin-top: 0.25rem;
  }
}
