/* ─── Home Hero ──────────────────────────────────────────────────── */
.home-hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}

.home-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 70px;
  align-items: center;
}

/* Kicker */
.home-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  color: #4F46E5;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.home-kicker::before {
  content: '';
  width: 28px;
  height: 2px;
  background: #4F46E5;
  flex-shrink: 0;
}

/* Headline */
.home-hero h1,
#homeProductTitle {
  font-size: clamp(42px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.045em;
  color: #111827;
  margin-bottom: 22px;
}
.home-hero h1 span { display: block; color: #4F46E5; }

.home-hero-copy {
  font-size: 18px;
  line-height: 1.8;
  color: #64748b;
  max-width: 500px;
  margin-bottom: 30px;
}

/* Price */
.home-price {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 28px;
}
.home-price strong {
  font-size: 32px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -.03em;
}
.home-price del {
  font-size: 18px;
  color: #94a3b8;
  text-decoration: line-through;
}

/* CTA buttons */
.home-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

/* Trust row */
.home-trust {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  color: #475569;
  font-size: 13px;
  font-weight: 600;
}

/* Product card */
.home-product-card {
  display: block;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 25px 70px rgba(15,23,42,.10);
  position: relative;
  transition: transform .35s, box-shadow .35s;
  text-decoration: none;
  color: inherit;
}
.home-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 38px 90px rgba(15,23,42,.15);
}

.home-product-badge {
  position: absolute;
  left: 24px;
  top: 24px;
  background: #111827;
  color: #fff;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  z-index: 1;
}

.home-product-image {
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 22px;
}
.home-product-image img {
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.home-product-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 96px;
  color: #CBD5E1;
}

.home-product-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 4px;
}
.home-product-card-bottom h2 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #111827;
  margin-bottom: 4px;
}
.home-product-card-bottom p {
  font-size: 13px;
  color: #94a3b8;
}

.home-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #111827;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: transform .3s, background .3s;
}
.home-product-card:hover .home-arrow {
  transform: translateX(4px);
  background: #4F46E5;
}

/* ─── 3-Benefit Strip ─────────────────────────────────────────────── */
.home-strip {
  padding: 0 0 88px;
  background: #f8fafc;
}

.home-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 26px;
  box-shadow: 0 18px 55px rgba(15,23,42,.07);
  overflow: hidden;
}

.home-strip-item {
  min-height: 190px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  transition: background .3s;
}
.home-strip-item:hover { background: #FAFAFC; }

.home-strip-item + .home-strip-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 25%;
  height: 50%;
  width: 1px;
  background: #E2E8F0;
}

.home-strip-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: #4F46E5;
  transform: scaleX(0);
  transition: transform .35s ease;
}
.home-strip-item:hover::after { transform: scaleX(1); }

.home-strip-item strong {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #111827;
  display: block;
  margin-bottom: 8px;
}
.home-strip-item span {
  font-size: 14px;
  color: #64748b;
  line-height: 1.55;
}

/* ─── Product Proof: Dark Banner ─────────────────────────────────── */
.product-proof { background: #fff; }

.product-proof-banner {
  background: #111827;
  color: #fff;
  padding: 58px 20px 54px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-proof-banner::before,
.product-proof-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: .06;
  background: #fff;
}
.product-proof-banner::before { width: 500px; height: 500px; top: -200px; left: -100px; }
.product-proof-banner::after  { width: 380px; height: 380px; bottom: -160px; right: -60px; }

.proof-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  opacity: .82;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-proof-banner h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -1.5px;
  max-width: 900px;
  margin: 0 auto 16px;
}

.product-proof-banner p {
  max-width: 760px;
  margin: 0 auto 28px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.75;
}

.proof-points {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.proof-points span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}
.proof-points b { font-size: 22px; font-weight: 800; }

/* ─── Product Proof: Comparison ──────────────────────────────────── */
.proof-benefits {
  padding: 76px 0 78px;
}

.proof-intro {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(430px,1fr);
  gap: 70px;
  align-items: start;
  margin-bottom: 56px;
}

.proof-intro-copy h2 {
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #111827;
  margin-bottom: 16px;
  margin-top: 6px;
}
.proof-intro-copy p {
  max-width: 560px;
  color: #4B5563;
  font-size: 16px;
  line-height: 1.8;
}

.comparison-table-wrap {
  border: 1px solid #E5E7EB;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(17,24,39,.09);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.comparison-table th,
.comparison-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #F3F4F6;
  text-align: center;
  font-size: 15px;
}
.comparison-table thead th {
  font-size: 14px;
  font-weight: 800;
  background: #fff;
  padding: 18px;
}
.comparison-table thead th:nth-child(2) {
  background: #111827;
  color: #fff;
  border-radius: 0;
}
.comparison-table tbody th {
  text-align: left;
  background: #111827;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.comparison-table td { background: #fff; font-size: 22px; font-weight: 800; }
.comparison-table td.is-yes { color: #22C55E; }
.comparison-table td.is-no  { color: #6B7280; font-size: 18px; }
.comparison-table tr:last-child th,
.comparison-table tr:last-child td { border-bottom: none; }

/* ─── Proof Cards (4-column) ─────────────────────────────────────── */
.proof-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.proof-card {
  position: relative;
  min-height: 220px;
  padding: 28px 22px 26px;
  border-radius: 22px;
  background: linear-gradient(155deg, #fff 0%, #f8fafc 100%);
  border: 1px solid #EEF0F3;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.proof-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(17,24,39,.10);
}

.proof-card-visual {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at 50% 45%, #fff 0%, #f8fafc 62%, #eef2f7 100%);
  box-shadow: inset 0 0 0 1px rgba(226,232,240,.7);
  font-size: 36px;
}
.proof-card h3 {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #111827;
  margin-bottom: 8px;
}
.proof-card p { font-size: 14px; color: #64748b; line-height: 1.55; }

/* ─── Benefits Showcase ──────────────────────────────────────────── */
.product-benefits-showcase {
  padding: 86px 0 96px;
  background: #fff;
}

.product-benefits-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 72px;
  align-items: center;
}

.product-benefits-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 58px;
  row-gap: 66px;
}

.product-benefit-item { min-width: 0; }

.product-benefit-title {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 13px;
}
.product-benefit-title h3 {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #111827;
}
.benefit-check {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  background: #ef4444;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 900;
  flex-shrink: 0;
}

.product-benefit-item p { font-size: 17px; line-height: 1.55; color: #334155; }

.product-benefits-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 470px;
}
.product-benefits-visual img {
  width: min(100%, 620px);
  height: 470px;
  object-fit: contain;
}
.benefits-placeholder {
  width: 100%;
  height: 470px;
  border-radius: 28px;
  background: linear-gradient(135deg, #f0f3ff 0%, #e0e7ff 50%, #c7d2fe 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 88px;
}

/* ─── Video CTA (Two-Column) ─────────────────────────────────────── */
.product-video-cta {
  background: #0f172a;
  padding: 96px 0 100px;
}

.pvc-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 68px;
  align-items: center;
}

/* ── Left: Content ─────────────────────────────────────────────── */
.pvc-content { color: #fff; }

.pvc-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 20px;
}
.pvc-eyebrow::before {
  content: '';
  width: 24px;
  height: 2px;
  background: #818cf8;
  flex-shrink: 0;
}

.pvc-heading {
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 18px;
}

.pvc-text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.72);
  margin-bottom: 32px;
  max-width: 480px;
}

.pvc-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: #fff;
  color: #111827;
  font-weight: 800;
  font-size: 15px;
  border-radius: 14px;
  text-decoration: none;
  margin-bottom: 36px;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.pvc-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 44px rgba(255,255,255,.2);
  background: #eff2ff;
}
.pvc-btn:active { transform: translateY(-1px); }

.pvc-benefits {
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pvc-benefit-item {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  line-height: 1.4;
}

.pvc-benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(129,140,248,.16);
  border: 1px solid rgba(129,140,248,.36);
  color: #a5b4fc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* ── Right: Video ──────────────────────────────────────────────── */
.pvc-video-wrap { position: relative; }

.pvc-video-wrap::before {
  content: '';
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at center, rgba(79,70,229,.12) 0%, transparent 65%);
  border-radius: 40px;
  pointer-events: none;
  z-index: 0;
}

.pvc-video-container {
  position: relative;
  z-index: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #1e293b;
  box-shadow:
    0 40px 100px rgba(0,0,0,.55),
    0 0 0 1px rgba(255,255,255,.07);
  aspect-ratio: 16 / 9;
}

.pvc-video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pvc-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  color: rgba(255,255,255,.18);
  font-size: 72px;
}

/* ── Scroll reveal ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .pvc-content,
  .pvc-video-wrap {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
  }
  .pvc-video-wrap { transition-delay: .12s; }
  .pvc-inview .pvc-content,
  .pvc-inview .pvc-video-wrap {
    opacity: 1;
    transform: none;
  }
}

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .product-video-cta { padding: 80px 0 90px; }
  .pvc-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 640px) {
  .product-video-cta { padding: 64px 0 72px; }
  .pvc-heading { font-size: clamp(28px, 7vw, 40px); }
  .pvc-text { font-size: 16px; margin-bottom: 24px; }
  .pvc-btn { width: 100%; justify-content: center; }
  .pvc-video-container { border-radius: 16px; }
}

/* ─── Customer Proof Gallery ─────────────────────────────────────── */
.customer-proof-section {
  padding: 90px 0 105px;
  background: #fff;
  overflow: hidden;
}

.customer-proof-heading { text-align: center; margin-bottom: 34px; }

.customer-proof-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-bottom: 12px;
}
.customer-stars { color: #ef2b2b; font-size: 22px; letter-spacing: 2px; }
.customer-rating-text { font-size: 18px; font-weight: 700; color: #202020; }

a.customer-proof-rating { text-decoration: none; color: inherit; cursor: pointer; border-radius: 6px; transition: opacity .2s; }
a.customer-proof-rating:hover { opacity: .7; }
a.customer-proof-rating:focus-visible { outline: 2px solid #4F46E5; outline-offset: 4px; }

.customer-proof-heading h2 {
  font-size: clamp(38px, 4vw, 56px);
  font-weight: 800;
  letter-spacing: -.035em;
  color: #111827;
  margin-bottom: 10px;
}
.customer-proof-heading h3 {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: #4B5563;
}

.customer-proof-gallery { position: relative; }

.customer-proof-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 12px 52px;
}
.customer-proof-track::-webkit-scrollbar { display: none; }

.customer-proof-slide {
  flex: 0 0 calc((100% - 56px) / 5);
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  background: #f3f4f6;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: #9CA3AF;
  min-width: 140px;
}
.customer-proof-slide img { width: 100%; height: 100%; object-fit: cover; }

.customer-proof-arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ef2b2b;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 8px 24px rgba(239,43,43,.35);
  transition: transform .25s, box-shadow .25s;
}
.customer-proof-arrow:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 12px 32px rgba(239,43,43,.5);
}
.customer-proof-prev { left: 0; }
.customer-proof-next { right: 0; }

.customer-proof-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.customer-proof-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #cfcfcf;
  transition: background .25s, transform .25s;
  cursor: pointer;
}
.customer-proof-dots span.active { background: #555; transform: scale(1.2); }

/* ─── FAQ ─────────────────────────────────────────────────────────── */
.novishi-faq { padding: 96px 0 105px; background: #fff; }

.novishi-faq-heading { max-width: 900px; margin: 0 auto 42px; text-align: center; }

.novishi-faq-heading > span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 16px;
  color: #4F46E5;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.novishi-faq-heading > span::before,
.novishi-faq-heading > span::after {
  content: '';
  width: 38px;
  height: 2px;
  background: #4F46E5;
  flex-shrink: 0;
}

.novishi-faq-heading h2 {
  font-size: clamp(36px, 4.5vw, 54px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #111827;
  margin-bottom: 14px;
}
.novishi-faq-heading p { color: #64748b; font-size: 18px; line-height: 1.6; }

.novishi-faq-list { width: min(100%, 1050px); margin: 0 auto; display: grid; gap: 16px; }

.novishi-faq-list details {
  border: 1px solid #e7eaf0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17,24,39,.06);
  overflow: hidden;
}
.novishi-faq-list summary {
  list-style: none;
  min-height: 82px;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  color: #111827;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}
.novishi-faq-list summary:hover { background: #FAFAFC; }
.novishi-faq-list summary::-webkit-details-marker { display: none; }

.faq-question { flex: 1; }

.faq-chevron {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #f0f3ff;
  color: #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  transition: background .25s, color .25s, transform .3s;
}
.novishi-faq-list details[open] .faq-chevron {
  transform: rotate(180deg);
  background: #111827;
  color: #fff;
}

.faq-answer {
  padding: 0 26px 24px;
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}

/* ─── Legacy product page styles (kept for product.html) ────────── */
.hero {
  padding: 64px 0 56px;
  background: #fff;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #F59E0B;
  background: #FEF3C7;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.hero__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  background: #111827;
  color: #fff;
  padding: 4px 12px;
  border-radius: 99px;
  margin-bottom: 16px;
  margin-left: 8px;
}
.hero__headline { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; letter-spacing: -.03em; margin-bottom: 20px; }
.hero__subheadline { font-size: 17px; color: #4B5563; line-height: 1.65; margin-bottom: 28px; max-width: 480px; }
.hero__social-proof { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #4B5563; }
.social-proof__stars { color: #F59E0B; font-size: 16px; }
.social-proof__count { font-weight: 600; }
.social-proof__badge { color: #22C55E; font-weight: 600; }
.hero__media { border-radius: 18px; overflow: hidden; background: #F9FAFB; }
.hero__gallery { position: relative; }
.hero__img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: none; border-radius: 18px; }
.hero__img--active { display: block; }
.hero__img-placeholder { width: 100%; aspect-ratio: 4/3; background: linear-gradient(135deg, #f0f0f0, #e8e8e8); border-radius: 18px; }

.proof-bar { background: #111827; color: #fff; padding: 40px 0; }
.proof-bar .container { text-align: center; }
.proof__headline { font-size: 16px; font-weight: 600; margin-bottom: 28px; opacity: .85; }
.proof__stats { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-stat { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.proof-stat__value { font-size: 2rem; font-weight: 800; letter-spacing: -.02em; line-height: 1; }
.proof-stat__label { font-size: 12px; font-weight: 500; opacity: .65; text-transform: uppercase; letter-spacing: .06em; }

.benefits-section { padding: 80px 0; background: #F9FAFB; }
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 32px; }
.benefit-card { background: #fff; border: 1px solid #E5E7EB; border-radius: 16px; padding: 32px 24px; text-align: center; }
.benefit-card__icon { display: block; font-size: 28px; margin-bottom: 16px; }
.benefit-card__title { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.benefit-card__desc { font-size: 14px; color: #4B5563; line-height: 1.6; }

.reviews-section { padding: 80px 0; }
.reviews__title { text-align: center; margin-bottom: 24px; font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
.reviews__summary { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 48px; }
.reviews__rating-big { font-size: 3.5rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.reviews__stars { font-size: 1.3rem; color: #F59E0B; }
.reviews__count { font-size: 14px; color: #9CA3AF; margin-top: 2px; }
.reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.review-card { background: #F9FAFB; border: 1px solid #E5E7EB; border-radius: 16px; padding: 24px; }
.review-card__header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.review-card__stars { color: #F59E0B; font-size: 16px; }
.review-card__verified { font-size: 12px; color: #22C55E; font-weight: 600; }
.review-card__title { font-size: 15px; font-weight: 700; margin-bottom: 8px; }
.review-card__body { font-size: 14px; color: #4B5563; line-height: 1.6; margin-bottom: 12px; }
.review-card__author { font-size: 13px; color: #9CA3AF; font-weight: 500; }

.faq-section { padding: 80px 0; background: #F9FAFB; }
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #E5E7EB; }
.faq-item:first-child { border-top: 1px solid #E5E7EB; }
.faq-item__question { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-weight: 700; font-size: 15px; cursor: pointer; list-style: none; user-select: none; gap: 16px; }
.faq-item__question::-webkit-details-marker { display: none; }
.faq-item__question::after { content: '+'; font-size: 1.4rem; font-weight: 300; flex-shrink: 0; transition: transform .25s; color: #9CA3AF; }
details[open] .faq-item__question::after { transform: rotate(45deg); }
.faq-item__answer { padding-bottom: 20px; font-size: 14px; color: #4B5563; line-height: 1.7; }

/* ─── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .home-hero-copy-col { max-width: 600px; }
  .proof-intro { grid-template-columns: 1fr; gap: 40px; }
  .product-benefits-grid { grid-template-columns: 1fr; gap: 50px; }
  .product-benefits-visual { min-height: auto; }
  .product-benefits-visual img { height: 360px; }
}

@media (max-width: 900px) {
  .proof-cards { grid-template-columns: 1fr 1fr; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__media { order: -1; }
}

@media (max-width: 800px) {
  .home-hero { padding: 52px 0 64px; }
  .home-hero h1, #homeProductTitle { font-size: clamp(36px, 8vw, 52px); }
  .home-strip-grid { grid-template-columns: 1fr; }
  .home-strip-item + .home-strip-item::before { display: none; }
  .product-benefits-list { grid-template-columns: 1fr; row-gap: 40px; }
  .customer-proof-slide { flex-basis: calc((100% - 28px) / 2); }
}

@media (max-width: 650px) {
  .proof-cards { grid-template-columns: 1fr; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 13px; }
  .comparison-table thead th { font-size: 12px; }
  .customer-proof-slide { flex-basis: calc(100% - 28px); }
}
