/* Kutir — shared site styles */

:root {
  --bg: #0a0a0a;
  --bg-elev: #141414;
  --bg-card: #1a1a1a;
  --line: #2a2a2a;
  --text: #f5f5f5;
  --muted: #b3b3b3;
  --red: #e31e24;
  --red-dark: #b51519;
  --red-glow: rgba(227, 30, 36, 0.35);
  --green: #2ecc71;
  --radius: 14px;
  --maxw: 1180px;
  --shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--red);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img {
  height: 36px;
  width: auto;
}
.brand-name {
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 1rem;
}
.nav-links {
  display: flex;
  gap: 24px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--red);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  transition: background 0.2s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--red-dark); transform: translateY(-1px); }

.menu-toggle { display: none; }

@media (max-width: 760px) {
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 80px 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1100px 480px at 85% 10%, rgba(227, 30, 36, 0.18), transparent 60%),
    radial-gradient(900px 480px at 0% 90%, rgba(227, 30, 36, 0.08), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, #0a0a0a 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(227, 30, 36, 0.12);
  color: #ff6a6e;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(227, 30, 36, 0.35);
}
.eyebrow::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--red-glow);
}
h1 {
  font-size: clamp(2.1rem, 4.4vw, 3.5rem);
  line-height: 1.08;
  margin: 18px 0 18px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
h1 .accent { color: var(--red); }
.hero p.lede {
  color: var(--muted);
  font-size: 1.12rem;
  margin: 0 0 28px;
  max-width: 56ch;
}
.rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.stars {
  color: #ffb400;
  font-size: 1.05rem;
  letter-spacing: 2px;
}
.rating small { color: var(--muted); font-size: 0.92rem; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 12px 24px -10px var(--red-glow);
}
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: #333;
}
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }

.hero-meta {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.93rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta svg { color: var(--red); flex-shrink: 0; }

.hero-visual {
  position: relative;
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: -10% -8% -10% -8%;
  background: radial-gradient(closest-side, rgba(227, 30, 36, 0.28), transparent 70%);
  z-index: 0;
  filter: blur(20px);
}
.hero-visual img {
  position: relative;
  z-index: 1;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

@media (max-width: 900px) {
  .hero { padding: 56px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Marquee strip ---------- */
.strip {
  background: #fff;
  color: #0a0a0a;
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px 36px;
  font-weight: 700;
  font-size: 0.95rem;
}
.strip-inner span { display: inline-flex; align-items: center; gap: 10px; }
.strip-inner svg { color: var(--red); }

/* ---------- Sections ---------- */
section { padding: 90px 0; }
@media (max-width: 700px) { section { padding: 64px 0; } }

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 56px;
}
.section-head .eyebrow { margin-bottom: 14px; }
h2 {
  font-size: clamp(1.8rem, 3.3vw, 2.6rem);
  line-height: 1.15;
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -0.015em;
}
h2 .accent { color: var(--red); }
.section-head p { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* ---------- Features ---------- */
.features {
  background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(227, 30, 36, 0.4);
}
.feature-card::before {
  content: "";
  position: absolute;
  left: 0; top: 28px; bottom: 28px;
  width: 3px;
  background: var(--red);
  border-radius: 0 3px 3px 0;
}
.feature-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(227, 30, 36, 0.12);
  border-radius: 12px;
  color: var(--red);
  margin-bottom: 16px;
}
.feature-card h3 {
  margin: 0 0 8px;
  font-size: 1.18rem;
  font-weight: 700;
}
.feature-card p {
  color: var(--muted);
  margin: 0;
  font-size: 0.97rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .feature-grid { grid-template-columns: 1fr; } }

/* ---------- Showcase split ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.showcase-grid.reverse { direction: rtl; }
.showcase-grid.reverse > * { direction: ltr; }
.showcase-grid img {
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.showcase-grid h2 { margin-bottom: 16px; }
.showcase-grid p { color: var(--muted); font-size: 1.05rem; }
.check-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: #e5e5e5;
}
.check-list li:last-child { border-bottom: none; }
.check-list svg { flex-shrink: 0; margin-top: 3px; color: var(--red); }
@media (max-width: 900px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 36px; }
  .showcase-grid.reverse { direction: ltr; }
}

/* ---------- Kit contents ---------- */
.kit {
  background:
    radial-gradient(800px 380px at 90% 0%, rgba(227, 30, 36, 0.08), transparent 60%),
    var(--bg);
}
.kit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.kit-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 18px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.kit-item:hover { transform: translateY(-3px); border-color: rgba(227, 30, 36, 0.4); }
.kit-qty {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 10px;
}
.kit-item h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 900px) { .kit-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .kit-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Comparison ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.compare-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.compare-card.win {
  border-color: rgba(46, 204, 113, 0.4);
  background: linear-gradient(180deg, rgba(46, 204, 113, 0.06), var(--bg-card));
}
.compare-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.compare-card.win .compare-tag { background: var(--green); color: #0a0a0a; }
.compare-card.lose .compare-tag { background: #444; color: #fff; }
.compare-card h3 { margin: 0 0 16px; font-size: 1.4rem; }
.compare-list { list-style: none; padding: 0; margin: 0; }
.compare-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e5e5e5;
}
.compare-list li:last-child { border-bottom: none; }
.compare-list .yes { color: var(--green); flex-shrink: 0; }
.compare-list .no { color: #ff6a6e; flex-shrink: 0; }
@media (max-width: 760px) { .compare-grid { grid-template-columns: 1fr; } }

/* ---------- Reviews ---------- */
.reviews {
  background: linear-gradient(180deg, #0a0a0a 0%, #0d0d0d 100%);
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}
.review-card .stars { margin-bottom: 12px; display: block; }
.review-card blockquote {
  margin: 0 0 18px;
  font-size: 1.02rem;
  color: #e5e5e5;
  line-height: 1.6;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}
.avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}
.verified {
  display: inline-block;
  margin-left: 6px;
  font-size: 0.78rem;
  color: var(--green);
  font-weight: 600;
}
@media (max-width: 900px) { .review-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
details {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-bottom: 14px;
  transition: border-color 0.2s ease;
}
details[open] { border-color: rgba(227, 30, 36, 0.4); }
summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
summary::-webkit-details-marker { display: none; }
summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.6rem;
  line-height: 1;
  font-weight: 300;
  transition: transform 0.2s ease;
}
details[open] summary::after { content: "−"; }
details p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background:
    radial-gradient(700px 320px at 50% 0%, rgba(227, 30, 36, 0.22), transparent 60%),
    #0a0a0a;
  text-align: center;
  padding: 96px 0;
}
.final-cta h2 { max-width: 720px; margin: 0 auto 18px; }
.final-cta p { color: var(--muted); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }

/* ---------- Footer ---------- */
footer {
  background: #060606;
  border-top: 1px solid var(--line);
  padding: 48px 0 28px;
  color: var(--muted);
  font-size: 0.93rem;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 28px;
}
.foot-brand img { height: 32px; margin-bottom: 12px; }
.foot-grid h4 {
  color: #fff;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.foot-grid a {
  display: block;
  text-decoration: none;
  color: var(--muted);
  padding: 4px 0;
  transition: color 0.2s ease;
}
.foot-grid a:hover { color: #fff; }
.copyright {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 700px) {
  .foot-grid { grid-template-columns: 1fr; gap: 24px; }
}

/* ---------- Quick Specs (AEO) ---------- */
.specs { background: linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%); }
.specs-grid {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  padding: 18px 24px;
  gap: 16px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
  margin: 0;
}
.specs-grid > .spec-row:nth-child(odd) { border-right: 1px solid var(--line); }
.spec-row dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--muted);
  font-weight: 700;
  margin: 0;
}
.spec-row dd {
  margin: 0;
  font-weight: 600;
  color: #fff;
  font-size: 0.98rem;
}
.spec-row dd strong { color: var(--red); }
@media (max-width: 760px) {
  .specs-grid { grid-template-columns: 1fr; }
  .specs-grid > .spec-row { border-right: none; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; padding: 16px 20px; }
}

/* ---------- How It Works (AEO) ---------- */
.how { background: var(--bg); }
.how-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
}
.how-step {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px 26px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.how-step:hover { transform: translateY(-3px); border-color: rgba(227, 30, 36, 0.4); }
.how-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -20px;
  left: 22px;
  width: 40px; height: 40px;
  background: var(--red);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 0 10px 20px -6px var(--red-glow);
}
.how-step h3 {
  margin: 8px 0 8px;
  font-size: 1.12rem;
  font-weight: 700;
}
.how-step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}
@media (max-width: 900px) { .how-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .how-steps { grid-template-columns: 1fr; } }

/* ---------- Guides preview cards (homepage) ---------- */
.guides-preview { background: linear-gradient(180deg, var(--bg) 0%, #0d0d0d 100%); }
.guides-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.guide-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.guide-card:hover { transform: translateY(-4px); border-color: rgba(227, 30, 36, 0.45); }
.guide-card .tag {
  display: inline-block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  font-weight: 700;
  margin-bottom: 12px;
}
.guide-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
}
.guide-card p {
  color: var(--muted);
  margin: 0 0 18px;
  font-size: 0.96rem;
  flex-grow: 1;
}
.guide-card .read-more {
  color: var(--red);
  font-weight: 600;
  font-size: 0.92rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 900px) { .guides-grid { grid-template-columns: 1fr; } }

/* ---------- Article (guide) layout ---------- */
.article-hero {
  background:
    radial-gradient(900px 360px at 80% 0%, rgba(227, 30, 36, 0.14), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
  padding: 64px 0 36px;
  border-bottom: 1px solid var(--line);
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 18px;
}
.article-meta strong { color: #fff; font-weight: 600; }
.breadcrumbs {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.breadcrumbs a { color: var(--muted); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-current="page"] { color: #fff; }
.breadcrumbs .sep { margin: 0 8px; opacity: 0.5; }

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 1.06rem;
  line-height: 1.78;
  color: #e8e8e8;
}
.article h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin: 8px 0 16px;
}
.article h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin-top: 56px;
  margin-bottom: 16px;
  line-height: 1.25;
  text-align: left;
  scroll-margin-top: 80px;
}
.article h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 12px;
  color: #fff;
}
.article p { margin: 0 0 18px; }
.article ul, .article ol { margin: 0 0 22px; padding-left: 22px; }
.article li { margin-bottom: 8px; }
.article strong { color: #fff; }
.article a:not(.btn) {
  color: #ff6a6e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.article a:not(.btn):hover { color: #ff8b8e; }

.article img {
  border-radius: 14px;
  margin: 28px auto;
  box-shadow: var(--shadow);
}

/* TL;DR / answer box */
.tldr {
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.10), rgba(227, 30, 36, 0.04));
  border: 1px solid rgba(227, 30, 36, 0.35);
  border-left: 4px solid var(--red);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin: 0 0 36px;
  font-size: 1.04rem;
}
.tldr h2 {
  margin: 0 0 8px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--red);
  font-weight: 800;
}
.tldr p { margin: 0; color: #f5f5f5; }
.tldr p:not(:last-child) { margin-bottom: 10px; }

/* Callout boxes */
.callout {
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.025);
  padding: 16px 20px;
  border-radius: 8px;
  margin: 24px 0;
  font-size: 1rem;
}
.callout.tip { border-left-color: var(--green); }
.callout.warn { border-left-color: #ffb400; }
.callout strong { color: #fff; }

/* Tables inside articles */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.96rem;
}
.article th, .article td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.article th {
  background: rgba(227, 30, 36, 0.08);
  color: #fff;
  font-weight: 700;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.article tbody tr:last-child td { border-bottom: none; }

/* Inline product card inside an article */
.product-inline {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  margin: 36px 0;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 22px;
  align-items: center;
}
.product-inline img { border-radius: 10px; margin: 0; box-shadow: none; }
.product-inline h4 { margin: 0 0 6px; font-size: 1.1rem; color: #fff; }
.product-inline p { margin: 0 0 12px; color: var(--muted); font-size: 0.95rem; }
.product-inline .btn { padding: 10px 18px; font-size: 0.92rem; }
@media (max-width: 600px) {
  .product-inline { grid-template-columns: 1fr; text-align: center; }
  .product-inline img { width: 140px; margin: 0 auto; }
}

/* Related articles strip */
.related {
  background: #0d0d0d;
  border-top: 1px solid var(--line);
  padding: 56px 0;
}
.related h2 {
  text-align: center;
  font-size: 1.4rem;
  margin: 0 0 28px;
}

/* Article details (FAQ collapsed) */
.article details { margin-bottom: 12px; }
.article details summary { font-size: 1rem; }

/* ---------- Newsletter signup ---------- */
.newsletter {
  background:
    radial-gradient(700px 280px at 80% 0%, rgba(227, 30, 36, 0.18), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.newsletter-inner h2 { margin: 8px 0 12px; text-align: left; }
.newsletter-inner p { color: var(--muted); margin: 0; font-size: 1.02rem; }
.newsletter form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter input[type="email"] {
  flex: 1;
  min-width: 220px;
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.newsletter input[type="email"]:focus {
  outline: none;
  border-color: var(--red);
}
.newsletter input[name="hp"] {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px; opacity: 0;
}
.newsletter button {
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 26px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.newsletter button:hover { background: var(--red-dark); transform: translateY(-2px); }
.newsletter button:disabled { opacity: 0.6; cursor: progress; }
.newsletter .form-msg {
  font-size: 0.92rem;
  color: var(--muted);
  margin-top: 12px;
  min-height: 22px;
}
.newsletter .form-msg.ok    { color: var(--green); }
.newsletter .form-msg.err   { color: #ff6a6e; }
.newsletter .small {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 12px;
}
@media (max-width: 800px) {
  .newsletter-inner { grid-template-columns: 1fr; gap: 24px; }
}

/* Inline newsletter inside articles */
.newsletter-inline {
  background: linear-gradient(180deg, rgba(227, 30, 36, 0.10), rgba(227, 30, 36, 0.04));
  border: 1px solid rgba(227, 30, 36, 0.35);
  border-radius: var(--radius);
  padding: 24px;
  margin: 36px 0;
}
.newsletter-inline h3 { margin: 0 0 6px; color: #fff; font-size: 1.1rem; }
.newsletter-inline p { margin: 0 0 14px; color: var(--muted); font-size: 0.96rem; }
.newsletter-inline form { display: flex; gap: 8px; flex-wrap: wrap; }
.newsletter-inline input[type="email"] {
  flex: 1; min-width: 200px;
  background: var(--bg);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 0.95rem;
  font-family: inherit;
}
.newsletter-inline input[type="email"]:focus { outline: none; border-color: var(--red); }
.newsletter-inline input[name="hp"] {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
.newsletter-inline button {
  background: var(--red); color: #fff; border: none; border-radius: 999px;
  padding: 12px 22px; font-size: 0.95rem; font-weight: 700; font-family: inherit;
  cursor: pointer;
}
.newsletter-inline button:hover { background: var(--red-dark); }
.newsletter-inline .form-msg { margin-top: 10px; font-size: 0.88rem; min-height: 20px; }
.newsletter-inline .form-msg.ok  { color: var(--green); }
.newsletter-inline .form-msg.err { color: #ff6a6e; }

/* ---------- Generic content page (about / contact / privacy / 404) ---------- */
.page-hero {
  background:
    radial-gradient(900px 360px at 80% 0%, rgba(227, 30, 36, 0.14), transparent 60%),
    linear-gradient(180deg, #0d0d0d 0%, var(--bg) 100%);
  padding: 72px 0 36px;
  border-bottom: 1px solid var(--line);
}
.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 12px 0 12px;
  text-align: left;
}
.page-hero p { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0; }
.page-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 80px;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #e8e8e8;
}
.page-content h2 {
  text-align: left;
  font-size: 1.6rem;
  margin: 48px 0 14px;
}
.page-content h3 { font-size: 1.2rem; color: #fff; margin: 32px 0 10px; }
.page-content p, .page-content ul, .page-content ol { margin: 0 0 18px; }
.page-content ul, .page-content ol { padding-left: 22px; }
.page-content li { margin-bottom: 6px; }
.page-content a:not(.btn) {
  color: #ff6a6e;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* Contact form */
.contact-form { display: grid; gap: 14px; margin-top: 28px; }
.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg-card);
  color: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); }
.contact-form textarea { resize: vertical; min-height: 140px; }
.contact-form input[name="hp"] {
  position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0;
}
.contact-form button {
  justify-self: start;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}
.contact-form button:hover { background: var(--red-dark); transform: translateY(-2px); }
.contact-form button:disabled { opacity: 0.6; cursor: progress; }
.contact-form .form-msg { font-size: 0.95rem; min-height: 22px; }
.contact-form .form-msg.ok  { color: var(--green); }
.contact-form .form-msg.err { color: #ff6a6e; }

/* Big 404 layout */
.error-hero {
  text-align: center;
  padding: 120px 24px;
  background:
    radial-gradient(700px 320px at 50% 30%, rgba(227, 30, 36, 0.18), transparent 60%),
    var(--bg);
}
.error-hero .code {
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin: 0 0 16px;
  letter-spacing: -0.04em;
}
.error-hero h1 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  text-align: center;
}
.error-hero p { color: var(--muted); max-width: 540px; margin: 0 auto 32px; font-size: 1.05rem; }
.error-hero .cta-row { justify-content: center; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
