/* LocalOps — premium trust-first B2B (navy + teal) */
:root {
  --navy: #001f48;
  --navy-deep: #001433;
  --navy-mid: #0a2f5c;
  --teal: #00a0a8;
  --teal-hover: #008c93;
  --teal-soft: #e6f7f8;
  --teal-ink: #005a5f;
  --bg: #f4f7fb;
  --bg-deep: #e8eef6;
  --surface: #ffffff;
  --ink: #0c1a2e;
  --ink-soft: #1a2d45;
  --muted: #5a6b7d;
  --line: #d5dee9;
  --line-strong: #b8c5d6;
  --accent: var(--teal);
  --accent-hover: var(--teal-hover);
  --accent-soft: var(--teal-soft);
  --cta: var(--teal);
  --cta-hover: var(--teal-hover);
  --cta-ink: #ffffff;
  --warn-bg: #fff8eb;
  --warn-border: #edd9a8;
  --warn-ink: #6b4e16;
  --radius: 14px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(0, 31, 72, 0.04), 0 10px 28px rgba(0, 31, 72, 0.07);
  --shadow-lg: 0 2px 6px rgba(0, 31, 72, 0.06), 0 22px 48px rgba(0, 31, 72, 0.12);
  --font: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  --display: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  --max: 1100px;
  --max-narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--teal-ink);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--navy);
}

img,
svg {
  max-width: 100%;
  display: block;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap-narrow {
  width: min(100% - 2.5rem, var(--max-narrow));
  margin-inline: auto;
}

/* ——— Logo ——— */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.logo:hover {
  text-decoration: none;
  color: var(--ink);
}

.logo-img {
  display: block;
  height: 66px;
  width: auto;
  flex-shrink: 0;
}

/* ——— Header ——— */
.site-header {
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav a:hover {
  color: var(--navy);
}

.nav .nav-cta {
  background: var(--teal);
  color: #fff !important;
  padding: 0.55rem 1.05rem;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(0, 160, 168, 0.28);
}

.nav .nav-cta:hover {
  background: var(--teal-hover);
  color: #fff !important;
}

/* ——— Trust strip ——— */
.trust-strip {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.trust-strip .inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.5rem;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 0;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  white-space: nowrap;
}

.trust-strip span::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.45rem;
  min-height: 3rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.98rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: -0.01em;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s;
}

.btn:hover {
  text-decoration: none;
}

.btn-primary {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 6px 18px rgba(0, 160, 168, 0.32);
}

.btn-primary:hover {
  background: var(--teal-hover);
  color: #fff;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 22px rgba(0, 160, 168, 0.4);
}

.btn-secondary {
  background: var(--navy);
  color: #f5faf8;
}

.btn-secondary:hover {
  background: var(--navy-mid);
  color: #f5faf8;
}

.btn-ghost {
  background: var(--surface);
  color: var(--navy);
  border-color: var(--line-strong);
}

.btn-ghost:hover {
  border-color: var(--navy);
  background: #fff;
  color: var(--navy);
}

.btn-disabled {
  background: var(--bg-deep);
  color: #8a929c;
  cursor: not-allowed;
  pointer-events: none;
  border-color: var(--line);
}

.btn-lg {
  padding: 1.05rem 1.75rem;
  min-height: 3.35rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* ——— Hero ——— */
.hero {
  padding: 3.75rem 0 2.75rem;
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-ink);
  margin: 0 0 1.1rem;
}

.hero-kicker::before {
  content: "";
  width: 1.5rem;
  height: 2px;
  background: var(--teal);
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.15rem, 5vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 0 0 1.15rem;
  max-width: 18ch;
  color: var(--navy);
}

.hero .lead {
  font-size: 1.18rem;
  color: var(--muted);
  max-width: 36rem;
  margin: 0 0 2rem;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.hero-note {
  margin: 1.1rem 0 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.hero-panel {
  margin-top: 2.75rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }
}

.hero-stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
}

.hero-stat .num {
  font-family: var(--display);
  font-size: 1.85rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.1;
}

.hero-stat .label {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ——— Sections ——— */
.section {
  padding: 3.25rem 0;
}

.section-tight {
  padding: 2.25rem 0;
}

.section-band {
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-dark {
  background: linear-gradient(165deg, #000e22 0%, var(--navy-deep) 40%, var(--navy) 100%);
  color: #d7e2ee;
  border: none;
}

.section-dark .section-label {
  color: var(--teal);
}

.section-dark .audience-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.section-dark .audience-card h3 {
  color: #fff;
}

.section-dark .audience-card p {
  color: #a8b8cc;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-sub {
  color: #a8b8cc;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 0.65rem;
}

.section-title {
  font-family: var(--display);
  font-size: clamp(1.55rem, 3vw, 2rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.55rem;
  line-height: 1.2;
  color: var(--navy);
  font-weight: 800;
}

.section-sub {
  color: var(--muted);
  margin: 0 0 1.85rem;
  max-width: 40rem;
  font-size: 1.05rem;
}

/* ——— Grid / cards ——— */
.grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .grid-2 {
    grid-template-columns: 1fr 1fr;
  }
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  letter-spacing: -0.015em;
  color: var(--navy);
  font-weight: 700;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.card .meta {
  margin-top: 1.15rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.card-icon {
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 8px;
  background: var(--teal-soft);
  color: var(--teal-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: -0.02em;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  padding: 0;
}

.product-cover {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  object-position: center;
  background: #000e22;
}

.product-card .card-body,
.product-card .meta {
  padding-left: 1.35rem;
  padding-right: 1.35rem;
}

.product-card .card-body {
  padding-top: 1.15rem;
}

.product-card .meta {
  padding-bottom: 1.25rem;
}

.product-card .card-body {
  flex: 1;
}

.product-card .meta {
  margin-top: auto;
  padding-top: 1.25rem;
}

.price {
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  margin-left: 0.25rem;
}

.badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal-ink);
}

.badge-soon {
  background: var(--bg-deep);
  color: #7a8490;
}

.badge-live {
  background: #dff5f3;
  color: #0a5c58;
}

.badge-save {
  background: #e8f5ef;
  color: #145c3f;
}

.badge-bundle {
  background: #fff3d6;
  color: #8a5a00;
}

/* ——— Bundle card ——— */
.bundle-card {
  background: linear-gradient(135deg, #fff 0%, #f0fafb 55%, #e8f4ff 100%);
  border: 2px solid var(--teal);
  border-radius: var(--radius);
  padding: 1.75rem 1.85rem;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.25rem;
  align-items: center;
}

@media (min-width: 720px) {
  .bundle-card {
    grid-template-columns: 1.4fr auto;
  }
}

.bundle-card h3 {
  margin: 0.5rem 0 0.45rem;
  font-size: 1.35rem;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bundle-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.bundle-price-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
  margin: 0.85rem 0 1rem;
}

.bundle-price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
}

.bundle-was {
  font-size: 1.1rem;
  color: var(--muted);
  text-decoration: line-through;
}

.bundle-save {
  font-size: 0.85rem;
  font-weight: 700;
  color: #145c3f;
  background: #e8f5ef;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
}

.bundle-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  min-width: 12rem;
}

.bundle-note {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
  text-align: center;
}

/* ——— Cross-sell ——— */
.cross-sell {
  margin-top: 1.5rem;
  background: var(--teal-soft);
  border: 1px solid #b7e4e6;
  border-radius: var(--radius);
  padding: 1.25rem 1.35rem;
}

.cross-sell h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}

.cross-sell p {
  margin: 0 0 0.9rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.cross-sell .meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

/* ——— Audience ——— */
.audience-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .audience-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.audience-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 1.4rem 1.45rem;
}

.audience-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.015em;
}

.audience-card p {
  margin: 0;
  font-size: 0.92rem;
  color: #a8b8cc;
  line-height: 1.55;
}

.audience-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.65rem;
}

/* ——— Objection / FAQ ——— */
.objection-list {
  display: grid;
  gap: 1rem;
}

@media (min-width: 720px) {
  .objection-list {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.objection {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
}

.objection h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}

.objection p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

/* ——— Lists ——— */
.plain-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.plain-list li {
  margin-bottom: 0.5rem;
}

.plain-list li strong {
  color: var(--ink);
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 2px;
  background: var(--teal);
}

.check-list li strong {
  color: var(--navy);
}

/* ——— Stats ——— */
.stat-row {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
  margin: 1.5rem 0;
}

@media (min-width: 560px) {
  .stat-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stat {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.25rem;
  text-align: center;
}

.stat .num {
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.stat .label {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ——— Callouts ——— */
.callout {
  background: var(--warn-bg);
  border: 1px solid var(--warn-border);
  border-radius: var(--radius);
  padding: 1.25rem 1.4rem;
  color: var(--warn-ink);
  font-size: 0.95rem;
}

.callout strong {
  display: block;
  margin-bottom: 0.35rem;
  color: #5a3f0e;
}

.callout a {
  color: var(--teal-ink);
}

.callout-green {
  background: var(--teal-soft);
  border-color: #b7e4e6;
  color: #0a3d40;
}

.callout-green strong {
  color: #062a2c;
}

/* ——— Product page ——— */
.product-hero {
  padding: 2.25rem 0 1.5rem;
}

.breadcrumb {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--navy);
}

.product-layout {
  display: grid;
  gap: 1.75rem;
}

@media (min-width: 800px) {
  .product-layout {
    grid-template-columns: 1.45fr 0.9fr;
    align-items: start;
  }
}

.product-layout h1 {
  font-family: var(--display);
  margin: 0.5rem 0 0.85rem;
  font-size: clamp(1.7rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 800;
}

.buy-box {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: var(--shadow-lg);
  position: sticky;
  top: 5.5rem;
}

.buy-box .price-lg {
  font-family: var(--display);
  font-size: 2.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 0.4rem 0 0.35rem;
  color: var(--navy);
}

.buy-box .price-sub {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 1.15rem;
}

.buy-box .btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.buy-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.buy-includes {
  margin: 1.15rem 0 0;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line);
}

.buy-includes li {
  font-size: 0.88rem;
}

/* ——— Sample table (premium) ——— */
.sample-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--teal-ink);
  background: var(--teal-soft);
  border: 1px solid #b7e4e6;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  margin: 0 0 0.75rem;
}

.sample-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

table.sample {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

table.sample th,
table.sample td {
  text-align: left;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--line);
}

table.sample th {
  background: var(--navy);
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

table.sample tr:last-child td {
  border-bottom: none;
}

table.sample tr:nth-child(even) td {
  background: #f7fafc;
}

table.sample td {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

table.sample td.mono {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--muted);
}

table.sample .rating {
  font-weight: 700;
  color: var(--navy);
}

.card.muted-card {
  opacity: 0.88;
  box-shadow: none;
  background: var(--bg-deep);
}

/* ——— CTA band ——— */
.cta-band {
  text-align: center;
  padding: 3.5rem 0;
}

.cta-band h2 {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.025em;
  color: var(--navy);
  font-weight: 800;
}

.cta-band p {
  color: var(--muted);
  margin: 0 0 1.5rem;
  max-width: 28rem;
  margin-inline: auto;
}

/* ——— Footer ——— */
.site-footer {
  margin-top: 0;
  border-top: 1px solid var(--line);
  background: var(--navy-deep);
  padding: 2.5rem 0;
  font-size: 0.9rem;
  color: #8fa3b8;
}

.site-footer .inner {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: flex-start;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
}

.site-footer a {
  color: #a8b8cc;
  text-decoration: none;
  font-weight: 500;
}

.site-footer a:hover {
  color: #fff;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.95;
  margin-bottom: 0.65rem;
}

.footer-brand {
  margin: 0 0 0.35rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.footer-legal {
  margin: 0.45rem 0 0;
  font-size: 0.72rem;
  color: #6a7f96;
}

/* ——— Prose ——— */
.prose h2 {
  font-family: var(--display);
  font-size: 1.25rem;
  margin: 2.1rem 0 0.6rem;
  letter-spacing: -0.02em;
  color: var(--navy);
  font-weight: 800;
}

.prose h2:first-of-type {
  margin-top: 1.5rem;
}

.prose p,
.prose ul {
  color: var(--muted);
}

.prose ul {
  padding-left: 1.2rem;
}

.prose li {
  margin-bottom: 0.45rem;
}

.prose strong {
  color: var(--ink-soft);
}

code {
  font-family: var(--mono);
  font-size: 0.88em;
  background: var(--bg-deep);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

/* ——— Mobile ——— */
@media (max-width: 639px) {
  .wrap,
  .site-header .inner,
  .site-footer .inner,
  .trust-strip .inner {
    width: min(100% - 1.5rem, var(--max));
  }

  .logo-img {
    height: 52px;
  }

  .hero {
    padding: 2.75rem 0 2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .nav {
    gap: 0.85rem;
  }

  .nav .nav-cta {
    display: none;
  }

  .section {
    padding: 2.5rem 0;
  }

  .buy-box {
    position: static;
  }

  .trust-strip .inner {
    justify-content: flex-start;
    gap: 0.5rem 1rem;
  }
}


/* ——— Premium sample framing ——— */
.sample-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  margin: 0 0 1rem;
}

.sample-head h2 {
  margin: 0;
}

.sample-count-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0.35rem 0 0;
  max-width: 36rem;
}

.sample-count-note strong {
  color: var(--navy);
}

.sample-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin: 0 0 0.85rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
}

.sample-legend i {
  display: inline-block;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 3px;
  margin-right: 0.3rem;
  vertical-align: middle;
}

.legend-noweb { background: #fde68a; }
.legend-email { background: #a7f3d0; }
.legend-rating { background: #93c5fd; }

table.sample tr.row-noweb td {
  background: #fffbeb !important;
}
table.sample tr.row-email td {
  background: #ecfdf5 !important;
}
table.sample tr.row-rating td {
  background: #eff6ff !important;
}
table.sample tr.row-noweb.row-email td,
table.sample tr.row-noweb.row-rating td,
table.sample tr.row-email.row-rating td {
  background: #f5f3ff !important;
}

.chip {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  margin-left: 0.35rem;
  vertical-align: middle;
}
.chip-noweb { background: #fde68a; color: #78350f; }
.chip-email { background: #a7f3d0; color: #065f46; }
.chip-rating { background: #93c5fd; color: #1e3a8a; }

.count-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.count-pill {
  background: var(--navy);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  letter-spacing: -0.01em;
}
.count-pill span {
  color: var(--teal);
  margin-left: 0.25rem;
}
