/* ============================================================
   Пчеловод23 — Honest Tooling for the Apiarist
   Crafted, editorial, warm. No glassmorphism on text surfaces.
   ============================================================ */

:root {
  /* Palette — 4 brand + neutrals only */
  --paper:     #F6F0E2;   /* page bg, parchment */
  --paper-2:   #EFE6CF;   /* alt sections */
  --ivory:     #FFFEF8;   /* surfaces */
  --ink:       #1A1410;   /* primary text, AAA on paper */
  --ink-2:     #4A3F32;   /* secondary text */
  --ink-3:     #7A6B58;   /* muted text */
  --rule:      #E2D7BA;   /* hairlines */

  --amber:     #C8861A;   /* brand primary */
  --amber-2:   #A66F12;   /* amber pressed/hover */
  --amber-3:   #F1D9A6;   /* amber tint */
  --wood:      #5A3A1A;   /* deep accent */
  --wood-2:    #3A2510;

  --ok:        #2D5A3D;   /* single semantic green */

  /* Type */
  --font-display: "Fraunces", "Times New Roman", Georgia, serif;
  --font-body:    "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono:    "JetBrains Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  /* Spacing */
  --container: 1100px;
  --gutter: 20px;

  /* Radii */
  --r-sm: 6px;
  --r:    10px;
  --r-lg: 16px;

  /* Hex clip */
  --hex: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);

  /* Shadows */
  --sh-1: 0 1px 2px rgba(26, 20, 16, .04), 0 6px 16px rgba(26, 20, 16, .06);
  --sh-2: 0 2px 4px rgba(26, 20, 16, .06), 0 14px 30px rgba(26, 20, 16, .10);
  --sh-3: 0 4px 8px rgba(26, 20, 16, .10), 0 30px 60px rgba(26, 20, 16, .18);

  /* Motion */
  --t-fast: .18s ease;
  --t:      .28s cubic-bezier(.4, 0, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--amber);
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  font-weight: 500;
  transition: color var(--t-fast), text-decoration-color var(--t-fast);
}
a:hover { color: var(--amber-2); text-decoration-color: var(--amber-2); }

p { margin: 0 0 1em; color: var(--ink-2); }
p strong { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-variation-settings: "opsz" 144, "SOFT" 50;
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 .5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.3rem, 4.5vw, 3.9rem); }
h2 { font-size: clamp(1.75rem, 2.5vw, 2.4rem); letter-spacing: -0.018em; }
h3 { font-size: 1.18rem; font-weight: 600; letter-spacing: -0.005em; }

.muted { color: var(--ink-3); }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--ivory); padding: 10px 14px;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--t-fast), box-shadow var(--t), background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
.btn-lg { padding: 18px 32px; font-size: 1.05rem; }

.btn-primary {
  background: var(--amber);
  color: var(--ivory);
  box-shadow: 0 10px 22px -8px rgba(200, 134, 26, .55), inset 0 1px 0 rgba(255, 255, 255, .18);
}
.btn-primary:hover {
  background: var(--amber-2);
  color: var(--ivory);
  transform: translateY(-2px);
  box-shadow: 0 14px 28px -8px rgba(166, 111, 18, .65), inset 0 1px 0 rgba(255, 255, 255, .2);
  text-decoration: none;
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: var(--ivory);
  color: var(--ink);
  border: 1.5px solid var(--rule);
  text-decoration: none;
}
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-2); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 240, 226, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--rule);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 0; gap: 16px;
}
.logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 600; font-size: 1.25rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.logo:hover { color: var(--ink); text-decoration: none; }
.logo-text strong { color: var(--amber); font-weight: 600; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav a {
  color: var(--ink-2);
  font-weight: 500;
  font-size: .94rem;
  text-decoration: none;
  position: relative;
  padding: 6px 0;
}
.nav a:hover { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1.5px; background: var(--amber);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t);
}
.nav a:hover::after { transform: scaleX(1); }

.header-cta { padding: 11px 20px; font-size: .94rem; }

/* Mobile menu */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: 8px;
  cursor: pointer;
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 1.5px;
  background: var(--ink); border-radius: 2px;
  transition: transform var(--t), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 14px var(--gutter) 20px;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
}
.nav-mobile a {
  display: block;
  padding: 13px 12px;
  color: var(--ink);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
}
.nav-mobile a:hover { background: var(--paper-2); color: var(--ink); }
.nav-mobile .btn { margin-top: 10px; }
.nav-mobile[hidden] { display: none !important; }
.nav-mobile.is-open { display: flex; }

@media (max-width: 920px) {
  .nav, .header-cta { display: none; }
  .nav-toggle { display: inline-flex; }
}

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 70px 0 100px; overflow: hidden; }
.hero-bg, .float-hex-2, .float-hex-3, .float-hex-4 { display: none; } /* killed extras */

/* one big silhouette hex behind product */
.float-hex-1 {
  position: absolute;
  width: 540px; height: 622px;
  top: 8%; right: -90px;
  z-index: 0;
  opacity: .35;
  pointer-events: none;
}
.float-hex-1 svg { width: 100%; height: 100%; }
@media (max-width: 920px) {
  .float-hex-1 { width: 360px; height: 415px; top: auto; bottom: -80px; right: -100px; opacity: .22; }
}

.hero-inner {
  display: grid;
  grid-template-columns: 6fr 5fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) {
  .hero-inner { grid-template-columns: 1fr; gap: 50px; }
  .hero { padding: 40px 0 80px; }
}

.hero-text { position: relative; }
.sparkles-canvas {
  position: absolute;
  inset: -10px -20px 50% -20px;
  width: calc(100% + 40px);
  height: 55%;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.sparkles-canvas.is-ready { opacity: .9; }
.hero-text > *:not(.sparkles-canvas) { position: relative; z-index: 1; }

/* Catalog number — editorial flavor */
.catalog-no {
  display: inline-flex;
  font-family: var(--font-mono);
  font-size: .76rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 28px;
  align-items: center;
  gap: 12px;
}
.catalog-no::before {
  content: "";
  width: 28px; height: 1px; background: var(--ink-3);
}

.badge-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 22px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  color: var(--ink);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.badge .dot {
  width: 7px; height: 7px;
  background: var(--ok); border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(45, 90, 61, .15);
}
.badge-patent {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--ivory);
}
.badge-patent svg path { fill: var(--amber-3) !important; }

.hero h1 .accent { color: var(--amber-2); font-style: italic; }

.lead {
  font-size: 1.12rem;
  color: var(--ink-2);
  max-width: 56ch;
  margin: 20px 0 26px;
}

.hero-bullets {
  list-style: none; padding: 0; margin: 0 0 32px;
  display: grid; gap: 10px;
}
.hero-bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  font-weight: 500;
}
.hero-bullets svg path { fill: var(--amber) !important; }

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

/* Trust row — keep hex here, it's the signature */
.trust-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  padding-top: 28px; border-top: 1px solid var(--rule);
}
.trust-item {
  position: relative;
  width: 96px; height: 110px;
  transition: transform var(--t);
}
.trust-item:hover { transform: translateY(-3px); }
.trust-item-inner {
  position: absolute; inset: 0;
  clip-path: var(--hex);
  -webkit-clip-path: var(--hex);
  background: var(--ivory);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 12px;
  filter: drop-shadow(0 6px 12px rgba(26, 20, 16, .12));
}
.trust-item strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.trust-item span { color: var(--ink-3); font-size: .72rem; text-align: center; line-height: 1.25; }

/* Product card */
.hero-visual { position: relative; }
.product-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 24px;
  position: relative;
  box-shadow: var(--sh-3);
}
.product-image {
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
}
.product-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 4px 4px;
}
.price-label { color: var(--ink-3); font-size: .9rem; }
.price-link { font-weight: 600; color: var(--ink); text-decoration: none; }
.price-link:hover { color: var(--amber-2); }

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 120px 0; position: relative; }
@media (max-width: 720px) { .section { padding: 70px 0; } }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 64px; }
.section-head p { color: var(--ink-2); font-size: 1.08rem; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 14px;
}

/* Section dividers — subtle pattern accents */
.pain-section, .features-section, .how-section, .reviews-section, .faq-section { background: var(--paper); }
.problem-section, .tech-section, .kit-section, .specs-section, .case-section { background: var(--paper-2); }

/* ============================================================
   Pain strip
   ============================================================ */
.pain-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
}
@media (max-width: 820px) { .pain-grid { grid-template-columns: 1fr; } }
.pain-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--amber);
  border-radius: var(--r);
  padding: 24px 26px;
  transition: transform var(--t), box-shadow var(--t);
}
.pain-card:hover { transform: translateY(-3px); box-shadow: var(--sh-1); }
.pain-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 600;
}
.pain-card p { margin: 0; color: var(--ink-2); font-size: .96rem; }

/* ============================================================
   Problem / typographic stats
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 70px;
  align-items: center;
}
@media (max-width: 920px) { .two-col { grid-template-columns: 1fr; gap: 40px; } }

.stats-board {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--ink);
}
.stats-board > div {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--ink);
}
.stats-board .stat-label {
  font-size: 1rem;
  color: var(--ink-2);
  max-width: 24ch;
}
.stats-board .stat-num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--ink);
}

/* ============================================================
   Tech / Patent
   ============================================================ */
.tech-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .tech-grid { grid-template-columns: 1fr; gap: 40px; } }

.tech-points { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.tech-point {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.tech-point-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--paper);
  border: 1px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.tech-point-icon svg path { fill: var(--amber-2) !important; }
.tech-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 600;
}
.tech-point span { color: var(--ink-2); font-size: .96rem; }

/* Patent seal — single hex moment */
.patent-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.patent-hex {
  width: 280px; aspect-ratio: 1 / 1.155;
  position: relative;
  filter: drop-shadow(0 20px 40px rgba(90, 58, 26, .35));
}
.patent-hex-inner {
  position: absolute; inset: 0;
  clip-path: var(--hex); -webkit-clip-path: var(--hex);
  background: var(--ink);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 30px;
  color: var(--ivory);
  text-align: center;
}
.patent-seal {
  width: 64px; height: 64px;
  border: 2px solid var(--amber);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.patent-seal svg path { fill: var(--amber) !important; }
.patent-hex-inner h3 {
  color: var(--ivory);
  font-size: 1.2rem;
  margin: 0 0 6px;
}
.patent-hex-inner p {
  color: rgba(255, 254, 248, .7);
  font-size: .85rem;
  margin: 0;
  line-height: 1.45;
}

/* Compliance strip */
.compliance-strip {
  margin-top: 56px;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 720px) { .compliance-strip { grid-template-columns: 1fr; padding: 24px; } }
.compliance-item { display: flex; gap: 14px; align-items: flex-start; }
.compliance-item svg path { fill: var(--amber-2) !important; }
.compliance-item strong {
  display: block; font-family: var(--font-display);
  font-weight: 600; margin-bottom: 3px; color: var(--ink); font-size: 1.02rem;
}
.compliance-item span { color: var(--ink-2); font-size: .9rem; }

/* ============================================================
   Features — clean, monochromatic icons
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 980px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .features-grid { grid-template-columns: 1fr; } }

.feature {
  background: var(--paper);
  padding: 36px 30px;
  transition: background var(--t-fast);
}
.feature:hover { background: var(--ivory); }

/* unified icon style — amber stroke circle */
.feature-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  border: 1.5px solid var(--amber);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
  position: relative;
}
.feature-icon-shape {
  background: transparent !important;
  width: 100%; height: 100%;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  position: relative; inset: auto !important;
  display: flex; align-items: center; justify-content: center;
}
.feature-icon-shape svg path,
.feature-icon-shape svg circle { fill: var(--amber-2) !important; }
.feature h3 { margin-bottom: 8px; color: var(--ink); }
.feature p { color: var(--ink-2); margin: 0; }

/* ============================================================
   Kit
   ============================================================ */
.kit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 32px;
}
@media (max-width: 820px) { .kit-grid { grid-template-columns: 1fr; } }
.kit-card {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 32px 30px 30px;
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.kit-card:hover { transform: translateY(-3px); box-shadow: var(--sh-1); }
.kit-card::before, .kit-card::after { display: none; }
.kit-num {
  font-family: var(--font-mono);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .12em;
  color: var(--amber-2);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.kit-card h3 { margin-bottom: 10px; }
.kit-card p { margin: 0; color: var(--ink-2); }
.kit-note {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--amber);
  padding: 18px 22px;
  border-radius: var(--r-sm);
}
.kit-note svg { flex: 0 0 auto; margin-top: 2px; }
.kit-note svg path { fill: var(--amber-2) !important; }
.kit-note strong { color: var(--ink); }

/* ============================================================
   How — clean numbered steps
   ============================================================ */
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
}
@media (max-width: 920px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--paper);
  padding: 36px 28px 30px;
  transition: background var(--t-fast);
}
.step:hover { background: var(--ivory); }
.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
  display: block;
  width: auto; height: auto;
  position: static !important;
  filter: none !important;
}
.step-num::before { content: "0"; opacity: .35; }
.step-num-inner {
  position: static !important;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  inset: auto !important;
  background: transparent !important;
  color: var(--amber) !important;
  display: inline !important;
  font-size: inherit !important;
  font-family: inherit !important;
}
.step h3 { margin-bottom: 6px; }
.step p { color: var(--ink-2); margin: 0; font-size: .98rem; }

/* ============================================================
   Specs
   ============================================================ */
.specs-grid dl {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
@media (max-width: 720px) { .specs-grid dl { grid-template-columns: 1fr; } }
.specs-grid div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
}
.specs-grid div:nth-child(2n) { border-right: none; }
@media (max-width: 720px) { .specs-grid div { border-right: none; } }
.specs-grid dt { color: var(--ink-3); font-size: .95rem; }
.specs-grid dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: right;
  color: var(--ink);
  letter-spacing: -0.01em;
}

/* ============================================================
   Reviews
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}
@media (max-width: 820px) { .reviews-grid { grid-template-columns: 1fr; } }
.review {
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r);
  padding: 30px;
}
.review-stars { color: var(--amber); letter-spacing: 2px; margin-bottom: 14px; font-size: 1rem; }
.review p {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
  font-size: 1.04rem;
  line-height: 1.55;
  margin: 0 0 18px;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
}
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  filter: none !important;
  position: relative;
  flex: 0 0 auto;
}
.avatar-inner {
  position: absolute; inset: 0;
  clip-path: none !important;
  -webkit-clip-path: none !important;
  border-radius: 50%;
  background: var(--wood) !important;
  display: flex; align-items: center; justify-content: center;
  color: var(--ivory);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.review-author strong { display: block; font-family: var(--font-display); color: var(--ink); }
.review-author span { color: var(--ink-3); font-size: .86rem; }
.reviews-cta { text-align: center; }

/* ============================================================
   Case
   ============================================================ */
.case {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 60px;
}
@media (max-width: 880px) { .case { grid-template-columns: 1fr; gap: 36px; padding: 36px; } }
.case-text .eyebrow { color: var(--amber-2); }
.case-numbers { display: grid; gap: 0; border-top: 1px solid var(--ink); }
.case-stat {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--ink);
  width: auto; height: auto;
  position: relative;
  filter: none !important;
}
.case-stat:nth-child(2) { transform: none !important; }
.case-stat-inner {
  position: static !important;
  clip-path: none !important; -webkit-clip-path: none !important;
  background: transparent !important;
  padding: 0;
  display: flex !important;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  color: var(--ink) !important;
  flex-direction: row !important;
}
.case-stat strong {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.case-stat span {
  color: var(--ink-2);
  font-size: .94rem;
  text-align: right;
  max-width: 16ch;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-container { max-width: 820px; }
.faq-list { display: grid; gap: 0; border-top: 1px solid var(--rule); }
.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--rule);
  border-radius: 0;
  overflow: hidden;
}
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  padding: 26px 4px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.12rem;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron {
  position: relative; width: 14px; height: 14px; flex: 0 0 auto;
  transition: transform var(--t);
}
.faq-chevron::before, .faq-chevron::after {
  content: ""; position: absolute; top: 6px; left: 0;
  width: 14px; height: 1.5px; background: var(--ink); border-radius: 2px;
}
.faq-chevron::after { transform: rotate(90deg); transition: transform var(--t); }
.faq-item[open] .faq-chevron::after { transform: rotate(0); }
.faq-body { padding: 0 4px 26px; color: var(--ink-2); max-width: 70ch; }
.faq-body p { margin: 0; }

/* ============================================================
   Final CTA
   ============================================================ */
.cta-section { padding-bottom: 120px; }
.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
  padding: 80px 50px;
  text-align: center;
  background: var(--ink);
  color: var(--ivory);
}
.cta-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='56' height='100' viewBox='0 0 56 100'><g fill='none' stroke='%23C8861A' stroke-width='0.7' stroke-opacity='0.2'><path d='M28 66L0 50L0 16L28 0L56 16L56 50L28 66M28 100L0 84L0 50L28 34L56 50L56 84L28 100'/></g></svg>");
  background-size: 56px 100px;
  opacity: .8;
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.cta-card h2 { color: var(--ivory); margin-bottom: 16px; }
.cta-card p { color: rgba(255, 254, 248, .75); font-size: 1.08rem; max-width: 580px; margin: 0 auto 32px; }
.cta-card .btn-primary { background: var(--amber); color: var(--ivory); }
.cta-card .btn-primary:hover { background: var(--amber-2); color: var(--ivory); }
@media (max-width: 620px) { .cta-card { padding: 56px 28px; } }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: rgba(255, 254, 248, .7);
  padding: 80px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 720px) { .footer-inner { grid-template-columns: 1fr; gap: 28px; } }
.site-footer h4 {
  color: var(--ivory);
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 600;
}
.site-footer .muted { color: rgba(255, 254, 248, .55); }
.site-footer a { color: var(--amber-3); text-decoration-color: var(--amber); }
.site-footer a:hover { color: var(--ivory); }
.logo-foot .logo-text { color: var(--ivory); }
.logo-foot .logo-text strong { color: var(--amber); }
.footer-bottom {
  padding-top: 28px;
  margin-top: 36px;
  border-top: 1px solid rgba(255, 254, 248, .1);
}

/* ============================================================
   Mobile sticky CTA
   ============================================================ */
.mobile-cta {
  display: none;
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 90;
  align-items: center; justify-content: center; gap: 8px;
  padding: 15px 20px;
  font-weight: 600;
  background: var(--amber);
  color: var(--ivory);
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 14px 26px -8px rgba(200, 134, 26, .55);
}
.mobile-cta:hover { background: var(--amber-2); color: var(--ivory); text-decoration: none; }
@media (max-width: 720px) {
  .mobile-cta { display: flex; }
  .cta-section { padding-bottom: 110px; }
}

/* ============================================================
   Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.4, 0, .2, 1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   Mobile tuning
   ============================================================ */
@media (max-width: 720px) {
  body { font-size: 16px; }
  .hero h1 { font-size: clamp(1.85rem, 7vw, 2.4rem); }
  .lead { font-size: 1rem; }
  .trust-row { gap: 8px; justify-content: center; }
  .trust-item { width: 90px; height: 104px; }
  .trust-item strong { font-size: 1.05rem; }
  .stats-board .stat-num { font-size: 2.4rem; }
  .hero-cta .btn { width: 100%; }
  .hero-cta { flex-direction: column; }
  .case { padding: 30px 22px; }
  .case-stat span { max-width: 20ch; }
  .product-card { padding: 18px; }
  .feature { padding: 30px 24px; }
  .step { padding: 30px 24px; }
  .compliance-strip { padding: 22px; }
  .site-footer { padding-bottom: 110px; }
}

/* Print */
@media print {
  .site-header, .mobile-cta, .nav-toggle, .float-hex-1, .sparkles-canvas, .cta-bg { display: none; }
  .hero, .section { padding: 20px 0; }
  body { color: #000; background: #fff; }
  .pain-card, .feature, .kit-card, .step, .review, .case, .cta-card, .compliance-strip {
    border: 1px solid #000; background: #fff !important; color: #000 !important;
  }
}

/* ============================================================
   Hero refinement — fit Full HD in one screen + refined product card
   (override block; keeps mobile layout intact via @media min-width)
   ============================================================ */
@media (min-width: 921px) {
  .hero { padding: 44px 0 56px; }
  .hero-inner { gap: 56px; grid-template-columns: 1.05fr 1fr; align-items: center; }
  .hero h1 {
    font-size: clamp(2.1rem, 2.9vw, 2.95rem);
    line-height: 1.05;
    letter-spacing: -0.022em;
    margin: 0 0 18px;
  }
  .hero .lead {
    font-size: 1.04rem;
    line-height: 1.55;
    margin: 0 0 22px;
    max-width: 52ch;
  }
  .hero .badge-row { margin-bottom: 16px; gap: 8px; }
  .hero .badge { padding: 6px 12px; font-size: .82rem; }
  .hero-bullets { margin: 0 0 24px; gap: 8px; }
  .hero-bullets li { font-size: .98rem; }
  .hero-cta { margin-bottom: 26px; gap: 10px; }
  .hero-cta .btn-lg { padding: 14px 22px; font-size: 1rem; }
  .trust-row { padding-top: 18px; gap: 12px; }
  .trust-item { width: 96px; height: 108px; }
  .trust-item strong { font-size: 1.18rem; }
  .float-hex-1 { opacity: .18; }
}

/* Larger screens — widen container and scale up hero typography
   (fixes "feels too small at 100% on Full HD" — closer/bigger feel) */
@media (min-width: 1280px) {
  :root { --container: 1240px; }
  .hero { padding: 44px 0 56px; }
  .hero-inner { gap: 64px; grid-template-columns: 1.05fr 1fr; }
  .hero h1 { font-size: 3.4rem; line-height: 1.04; margin-bottom: 20px; }
  .hero .lead { font-size: 1.18rem; line-height: 1.55; margin-bottom: 24px; max-width: 54ch; }
  .hero .badge { padding: 8px 14px; font-size: .9rem; }
  .hero-bullets li { font-size: 1.08rem; }
  .hero-cta { gap: 12px; margin-bottom: 28px; }
  .hero-cta .btn-lg { padding: 17px 28px; font-size: 1.08rem; }
  .trust-item { width: 108px; height: 120px; }
  .trust-item strong { font-size: 1.32rem; }
  .product-card { padding: 24px; }
  .product-card-tape { font-size: .72rem; }
  .price-value { font-size: 1.28rem; }
  .product-card .price-link { padding: 12px 22px; font-size: 1.02rem; }
}

@media (min-width: 1600px) {
  :root { --container: 1320px; }
  .hero h1 { font-size: 3.7rem; }
  .hero .lead { font-size: 1.22rem; max-width: 56ch; }
  .hero-bullets li { font-size: 1.12rem; }
  .hero-cta .btn-lg { padding: 18px 30px; font-size: 1.12rem; }
}

/* extra guard for short viewports (e.g. windowed FHD, taskbar) */
@media (min-width: 1280px) and (max-height: 900px) {
  .hero { padding: 32px 0 40px; }
  .hero h1 { font-size: 2.95rem; margin-bottom: 14px; }
  .hero .lead { font-size: 1.08rem; margin-bottom: 18px; }
  .hero-bullets { margin-bottom: 18px; gap: 6px; }
  .hero-bullets li { font-size: 1rem; }
  .hero-cta { margin-bottom: 18px; }
  .trust-row { padding-top: 14px; }
  .trust-item { width: 96px; height: 104px; }
  .product-card { padding: 18px; }
  .product-card-tape { padding: 2px 4px 10px; font-size: .64rem; }
}

/* ---------- Product card — editorial dossier ---------- */
.product-card {
  position: relative;
  background: var(--ivory);
  border: 1px solid var(--rule);
  border-radius: var(--r-lg);
  padding: 22px;
  margin: 0;
  box-shadow:
    0 1px 0 rgba(26, 20, 16, .04),
    0 26px 50px -28px rgba(200, 134, 26, .35),
    0 4px 12px -4px rgba(26, 20, 16, .08);
  overflow: hidden;
  isolation: isolate;
}
.product-card::before {
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg,
    transparent 0%, rgba(200, 134, 26, .15) 18%,
    var(--amber) 50%,
    rgba(200, 134, 26, .15) 82%, transparent 100%);
  pointer-events: none;
}
.product-card::after {
  content: "";
  position: absolute; inset: 22px;
  border-radius: var(--r);
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255,254,248,.0) 60%, rgba(26,20,16,.05) 100%);
  z-index: 0;
}

.product-card-tape {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 0 4px 12px;
  position: relative; z-index: 1;
}
.product-card-tape .dot { color: var(--amber); padding: 0 4px; }
.product-card-tape .lot { color: var(--amber-2); }

.product-image {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--paper-2);
  z-index: 1;
}
.product-image picture,
.product-image picture img {
  display: block;
  width: 100%; height: 100%;
}
.product-image img {
  object-fit: cover;
  object-position: center 58%;
  transition: transform 1.1s cubic-bezier(.2, .7, .2, 1);
}
.product-card:hover .product-image img { transform: scale(1.035); }

/* round wax-seal stamp over the photo */
.product-stamp {
  position: absolute;
  bottom: 14px; right: 14px;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: grid; place-items: center;
  text-align: center;
  color: var(--ivory);
  background:
    radial-gradient(120% 120% at 30% 25%, rgba(255,254,248,.18), transparent 55%),
    rgba(26, 20, 16, .82);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(241, 217, 166, .25);
  box-shadow:
    0 12px 24px -10px rgba(0, 0, 0, .55),
    inset 0 0 0 1px rgba(241, 217, 166, .08);
  transform: rotate(-7deg);
}
.product-stamp::before,
.product-stamp::after {
  content: "";
  position: absolute; inset: 6px;
  border-radius: 50%;
  border: 1px dashed rgba(241, 217, 166, .35);
  pointer-events: none;
}
.product-stamp::after { inset: 12px; border-style: solid; border-color: rgba(241, 217, 166, .12); }
.product-stamp-inner { position: relative; padding: 0 6px; }
.product-stamp-inner em {
  display: block; font-style: normal; font-weight: 600;
  font-family: var(--font-display);
  font-size: .94rem;
  letter-spacing: .02em;
  color: var(--amber-3);
}
.product-stamp-inner small {
  display: block;
  font-family: var(--font-body);
  font-size: .56rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 254, 248, .72);
  margin-top: 3px;
  line-height: 1.2;
}

/* footer of the card */
.product-card-foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 18px 4px 2px;
  position: relative; z-index: 1;
}
.price-block { display: flex; flex-direction: column; gap: 2px; }
.price-label { color: var(--ink-3); font-size: .82rem; letter-spacing: .02em; }
.price-value {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.product-card .price-link {
  font-weight: 600;
  color: var(--amber-2);
  text-decoration: none;
  padding: 10px 18px;
  background: rgba(200, 134, 26, .08);
  border: 1px solid rgba(200, 134, 26, .28);
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.product-card .price-link:hover {
  background: var(--amber);
  color: var(--ivory);
  border-color: var(--amber);
  transform: translateY(-1px);
}

/* keep stamp legible on smaller screens */
@media (max-width: 520px) {
  .product-stamp { width: 76px; height: 76px; }
  .product-stamp-inner em { font-size: .8rem; }
  .product-stamp-inner small { font-size: .5rem; }
}

/* ============================================================
   Round 2 refinements
   - badges moved to right column, above product card, horizontal
   - lead has top space from H1
   - product-card-foot has more air
   - section-head eyebrow stronger gradation
   - tech-grid becomes honeycomb-style block tiles
   ============================================================ */

/* badges row above the product card (right column on desktop) */
.hero-visual { display: flex; flex-direction: column; gap: 18px; }
.badge-row--side {
  margin: 0;
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-start;
}
@media (min-width: 921px) {
  .badge-row--side { justify-content: flex-end; gap: 10px; }
  .hero-visual { gap: 22px; }
}

/* Hero text: H1 first now → give lead breathing room */
@media (min-width: 921px) {
  .hero h1 { margin-bottom: 0; }
  .hero .lead { margin-top: 22px; }
}
@media (min-width: 1280px) {
  .hero .lead { margin-top: 26px; }
}

/* Product card foot — more vertical air, separator line */
.product-card-foot {
  padding: 24px 6px 4px;
  margin-top: 4px;
  border-top: 1px dashed rgba(26, 20, 16, .08);
  padding-top: 22px;
  gap: 20px;
}
@media (min-width: 1280px) {
  .product-card-foot { padding: 26px 6px 6px; gap: 22px; }
}
.price-block { gap: 4px; }

/* ---------- Section head: stronger gradation between eyebrow and h2 ---------- */
.section-head { margin-bottom: 72px; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--amber-2);
  margin-bottom: 22px;
  padding: 8px 18px;
  background: rgba(200, 134, 26, .09);
  border: 1px solid rgba(200, 134, 26, .22);
  border-radius: 999px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.2vw, 2.9rem);
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  line-height: 1.08;
}
.section-head p {
  font-size: 1.12rem;
  color: var(--ink-2);
  line-height: 1.55;
  max-width: 640px;
  margin: 0 auto;
}
@media (min-width: 1280px) {
  .section-head .eyebrow { font-size: 1rem; padding: 9px 18px 9px 16px; }
  .section-head h2 { font-size: 3.1rem; }
  .section-head p { font-size: 1.16rem; }
}

/* ---------- Tech grid → real hexagon honeycomb (single row) ---------- */
.tech-grid {
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: stretch;
}
.tech-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  column-gap: 26px;
  row-gap: 0;
  border-top: none;
  padding: 0 12px;
  max-width: none;
  margin: 0;
}
/* alternating top offset → honeycomb rhythm */
.tech-points .tech-point:nth-child(odd)  { margin-top: 0; }
.tech-points .tech-point:nth-child(even) { margin-top: 36px; }

.tech-point {
  /* real hex shape */
  position: relative;
  aspect-ratio: 1 / 1.155;
  clip-path: var(--hex);
  -webkit-clip-path: var(--hex);
  background: linear-gradient(180deg, rgba(200, 134, 26, .55), rgba(200, 134, 26, .25));
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start;
  text-align: center;
  overflow: visible;
  transition: transform .35s ease, filter .35s ease;
  filter: drop-shadow(0 18px 30px rgba(200, 134, 26, .18));
}
.tech-point:hover {
  transform: translateY(-4px);
  filter: drop-shadow(0 26px 38px rgba(200, 134, 26, .28));
}

/* inner hex fill — creates the "border" effect of 1.5px */
.tech-point::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: var(--hex);
  -webkit-clip-path: var(--hex);
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 254, 248, 1) 60%, var(--paper) 100%);
  z-index: 0;
}

/* icon goes inside the top zone of the hex */
.tech-point > .tech-point-icon {
  position: relative;
  z-index: 1;
  width: 36px; height: 41px;
  margin-top: 16%;
  border: none;
  background: transparent;
  border-radius: 0;
}
.tech-point-icon::before {
  content: "";
  position: absolute; inset: 0;
  clip-path: var(--hex); -webkit-clip-path: var(--hex);
  background: linear-gradient(180deg, var(--amber), var(--amber-2));
}
.tech-point-icon-inner {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}
.tech-point-icon-inner svg path { fill: var(--ivory) !important; }

/* text block — kept inside the safe middle band of the hex */
.tech-point > div:last-child {
  position: relative;
  z-index: 1;
  padding: 12px 14% 0;
  width: 100%;
}
.tech-point strong {
  display: block;
  font-family: var(--font-display);
  font-size: .98rem;
  margin: 0 0 7px;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.18;
}
.tech-point span {
  display: block;
  font-size: .78rem;
  line-height: 1.42;
  color: var(--ink-2);
}

/* on narrow screens the hex shape kills text — fall back to a clean tile */
@media (max-width: 880px) {
  .tech-points { grid-template-columns: 1fr; gap: 14px; }
  .tech-points .tech-point { margin-top: 0 !important; }
  .tech-point {
    aspect-ratio: auto;
    clip-path: none; -webkit-clip-path: none;
    background: var(--ivory);
    border: 1px solid var(--rule);
    border-radius: var(--r-lg);
    flex-direction: row;
    align-items: flex-start;
    text-align: left;
    padding: 24px;
    filter: none;
    gap: 16px;
  }
  .tech-point::before { display: none; }
  .tech-point > .tech-point-icon { margin: 4px 0 0; flex-shrink: 0; }
  .tech-point > div:last-child { padding: 0; }
  .tech-point strong { font-size: 1.05rem; }
  .tech-point span { font-size: .94rem; line-height: 1.52; }
}

/* patent-visual is redundant with first hex tile — hide on desktop */
.patent-visual { display: none; }

/* 2x2 on tablets, 1 column on phones */
@media (max-width: 1180px) and (min-width: 881px) {
  .tech-points { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 22px; padding: 0 24px; }
  .tech-points .tech-point:nth-child(odd)  { margin-top: 0; }
  .tech-points .tech-point:nth-child(even) { margin-top: 36px; }
  .tech-points .tech-point:nth-child(3) { margin-top: 0; }
  .tech-points .tech-point:nth-child(4) { margin-top: 36px; }
}

/* ============================================================
   Mobile refinement — order, spacing, density for 360-430px
   ============================================================ */
@media (max-width: 920px) {
  /* lift hero-visual children into the grid so we can re-order them */
  .hero-visual { display: contents; }
  .hero-visual .badge-row--side {
    order: -1;
    margin: 0 0 18px;
    justify-content: flex-start;
    gap: 8px;
  }
  .hero-text { order: 0; }
  .hero-visual .product-card { order: 1; margin-top: 6px; }

  /* tighter, more compact hero on phones */
  .hero { padding: 28px 0 64px; }
  .hero-inner { gap: 26px; }
  .hero h1 { font-size: clamp(1.85rem, 7.4vw, 2.35rem); line-height: 1.08; letter-spacing: -0.018em; margin: 0; }
  .hero .lead { margin-top: 14px; margin-bottom: 18px; font-size: 1rem; line-height: 1.55; }
  .hero-bullets { margin: 0 0 22px; gap: 10px; }
  .hero-bullets li { font-size: .98rem; }
  .hero-cta { margin-bottom: 24px; gap: 10px; }
  .hero-cta .btn-lg { padding: 15px 22px; font-size: 1rem; }
  .trust-row { padding-top: 18px; gap: 10px; justify-content: space-between; }

  .badge-row .badge { padding: 6px 12px; font-size: .82rem; line-height: 1.2; }

  /* container gutter — slightly wider air on bigger phones */
  :root { --gutter: 18px; }
}

@media (max-width: 520px) {
  :root { --gutter: 16px; }
  .hero { padding: 22px 0 56px; }
  .hero h1 { font-size: clamp(1.78rem, 8.2vw, 2.15rem); }
  .hero-bullets li { font-size: .96rem; }
  .trust-item { width: 84px; height: 96px; }
  .trust-item strong { font-size: 1rem; }
  .trust-item span { font-size: .68rem; }
}

@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .hero h1 { font-size: 1.78rem; }
  .hero .lead { font-size: .96rem; }
  .hero-bullets li { font-size: .92rem; }
  .badge-row .badge { font-size: .78rem; padding: 5px 10px; }
  .trust-item { width: 78px; height: 90px; }
  .trust-item strong { font-size: .94rem; }
  .product-card { padding: 14px; }
  .product-card-tape { font-size: .58rem; letter-spacing: .15em; }
  .product-card-foot { gap: 12px; padding: 18px 4px 2px; }
  .product-card-foot .price-value { font-size: 1rem; }
  .product-card .price-link { padding: 8px 14px; font-size: .9rem; }

  /* slightly tighter section-head on tiny screens */
  .section-head { margin-bottom: 36px; }
  .section-head .eyebrow { font-size: .78rem; padding: 6px 14px; margin-bottom: 16px; }
  .section-head h2 { font-size: 1.65rem; }
  .section-head p { font-size: .98rem; }
}

/* small adjustments for tablets (768-820 portrait) */
@media (min-width: 521px) and (max-width: 920px) {
  .hero-inner { gap: 32px; }
  .hero h1 { font-size: clamp(2.1rem, 5vw, 2.6rem); }
  .hero .lead { font-size: 1.06rem; max-width: 60ch; }
  .hero-cta .btn-lg { width: auto; }
  .hero-cta { flex-direction: row; }
  .hero-cta .btn { width: auto; }
  .badge-row--side { justify-content: flex-start; }
  /* product-card narrower & centered on tablets */
  .hero-visual .product-card { max-width: 520px; align-self: flex-start; width: 100%; }
}

/* sticky mobile CTA — give it tap-friendly padding-bottom for iOS safe-area */
.mobile-cta {
  padding-bottom: max(15px, env(safe-area-inset-bottom));
  bottom: max(16px, env(safe-area-inset-bottom));
}

/* ============================================================
   Round 3 — sticky header, footer tap-targets, problem-section,
   ghost badge, refined details
   ============================================================ */

/* Sticky transparent-ish header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(248, 244, 235, .85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--rule);
  background: rgba(248, 244, 235, .94);
}

/* Ghost badge variant — same shape, neutral tone */
.badge.badge-ghost {
  background: var(--ivory);
  border-color: var(--rule);
  color: var(--ink);
}
.badge.badge-ghost svg { color: var(--amber-2); }

/* Footer — larger tap targets, structure, hover */
.site-footer { padding-top: 64px; padding-bottom: 32px; }
.footer-inner { gap: 56px; align-items: flex-start; }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 14px;
  color: var(--ivory);
}
.footer-col .muted { color: rgba(255, 254, 248, .6); margin: 0 0 12px; line-height: 1.5; }
.footer-link {
  display: inline-block;
  padding: 10px 0;
  min-height: 44px;
  line-height: 1.4;
  font-weight: 600;
  color: var(--amber-3);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.footer-link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}
.site-footer .footer-bottom {
  border-top: 1px solid rgba(255, 254, 248, .08);
  padding-top: 24px;
  margin-top: 32px;
}

/* Problem section — center the two-column on FHD when right column is sparse */
@media (min-width: 1280px) {
  .problem-section .two-col {
    max-width: 1180px;
    margin: 0 auto;
    align-items: center;
  }
  .problem-section .stats-board { padding-left: 24px; }
}

/* Headline of "problem-section" — tighten the rhythm with right column */
.problem-section h2 {
  font-size: clamp(1.9rem, 2.6vw, 2.6rem);
  line-height: 1.08;
  letter-spacing: -0.022em;
}

/* On reveal animation — make sure sticky header doesn't disappear on iOS Safari hiccup */
@supports not (backdrop-filter: blur(1px)) {
  .site-header { background: var(--paper); }
}

/* FAQ — slightly cleaner answer area */
.faq-body p { line-height: 1.6; }


