Make it like that/*
 * ============================================================
 *  product-base.css — Subscription BD Store
 *  Shared styles for ALL product pages in /products/
 *  Requires: ../base.css loaded first
 * ============================================================
 */

/* ── SECTION HEADER (used everywhere in product pages) ── */
.sh {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 44px;
}

.sh-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
}

.sh-tag::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--accent);
  box-shadow: 0 0 6px var(--accent);
}

.sh h2 {
  font-family: var(--font-d);
  font-size: clamp(1.65rem, 3.2vw, 2.3rem);
  /* ↑ bigger */
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text);
}

.sh p {
  font-size: 14px;
  color: var(--text-dim);
}

/* ── CINEMATIC HERO ── */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}

.hbg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hbg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.22) saturate(.5);
  transform: scale(1.05);
  animation: hzm 16s ease-in-out infinite alternate;
}
.hbg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2, 5, 9, .28) 0%, rgba(2, 5, 9, .65) 55%, rgba(2, 5, 9, 1) 100%),
    linear-gradient(90deg, rgba(2, 5, 9, .65) 0%, transparent 62%);
}
/* scanlines */
.hbg::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(0deg, transparent, transparent 2px,
      rgba(0, 0, 0, .06) 2px, rgba(0, 0, 0, .06) 4px);
  pointer-events: none;
}

.hcontent {
  position: relative;
  z-index: 2;
  padding: 84px 0 50px;
  max-width: 720px;
}

/* Hero badge */
.hlabel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  border: 1px solid rgba(0, 229, 255, .35);
  background: rgba(0, 229, 255, .07);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  animation: fiu .6s .2s var(--ease) both;
}

.hlabel::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}

/* Hero h1 */
.hero h1 {
  font-family: var(--font-d);
  font-size: clamp(2.4rem, 5.8vw, 4.2rem);
  /* ↑ bigger */
  font-weight: 900;
  line-height: 1.03;
  letter-spacing: -.04em;
  margin-bottom: 22px;
  animation: fiu .6s .35s var(--ease) both;
}

.hero h1 .hl {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 .hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  animation: lgrow .5s 1s var(--ease) both;
}

/* Hero description */
.hero p {
  font-size: 16px;
  /* ↑ was 15px */
  color: rgba(228, 239, 255, .75);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 36px;
  animation: fiu .6s .5s var(--ease) both;
}

/* Hero CTA buttons row */
.hbtns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  animation: fiu .6s .62s var(--ease) both;
}

/* Payment row */
.hpay {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 18px;
  background: rgba(8, 14, 24, .82);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  animation: fiu .6s .7s var(--ease) both;
  flex-wrap: wrap;
}

.hpay-lbl {
  font-size: 12px;
  color: var(--text-faint);
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 600;
}

.picons {
  display: flex;
  gap: 8px;
  align-items: center;
}

.picons img {
  height: 30px;
  width: auto;
  opacity: .75;
  filter: brightness(1.3);
}

/* Hero stats strip */
.hstats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-left: none;
  border-right: none;
  animation: fiu .6s .8s var(--ease) both;
}

.hsi {
  background: rgba(8, 14, 24, .88);
  backdrop-filter: blur(12px);
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background var(--t);
  text-align: center;
}

.hsi:hover {
  background: rgba(15, 27, 46, .92);
}

.hsi-num {
  font-family: var(--font-d);
  font-size: 1.75rem;
  /* ↑ bigger */
  font-weight: 800;
  color: var(--text);
  letter-spacing: -.03em;
  line-height: 1;
}

.hsi-num .ac {
  color: var(--accent);
}

.hsi-lbl {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── HOW IT WORKS ── */
.how {
  padding: 80px 0 72px;
  background: var(--surface);
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-b);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.step {
  background: var(--card);
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}

.step:hover {
  background: var(--card-hover);
}

.step::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background var(--t);
}

.step:hover::after {
  background: var(--accent);
  box-shadow: 0 -2px 10px var(--accent-glow);
}

.step-n {
  font-family: var(--font-d);
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--text-faint);
  line-height: 1;
  letter-spacing: -.04em;
  position: absolute;
  top: 14px;
  right: 16px;
  transition: color var(--t);
}

.step:hover .step-n {
  color: rgba(0, 229, 255, .14);
}

.step-ico {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border-b);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 22px;
}

.step-ttl {
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.step-dsc {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* ── PLAN SWITCHER ── */
.prc-sec {
  padding: 88px 0 72px;
}

.psw {
  display: inline-flex;
  gap: 0;
  border: 1px solid var(--border);
  background: var(--border);
  margin: 0 auto;
}

.pst {
  flex: 0 0 auto;
  padding: 11px 26px;
  background: var(--surface);
  color: var(--text-dim);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all .2s;
}

.pst:hover {
  color: var(--accent);
  background: rgba(0, 229, 255, .04);
}

.pst.on {
  background: var(--accent);
  color: #000;
}

/* ── PLAN NOTES ── */
.pnote {
  padding: 17px 22px;
  background: var(--card);
  border: 1px solid var(--border);
  border-bottom: none;
  display: none;
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.pnote::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, transparent 55%);
}

.pnote.on {
  display: block;
}

.pn-ttl {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}

.pn-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pni {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-dim);
  padding: 8px 13px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.pni svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  flex-shrink: 0;
}

.pni.wrn svg {
  stroke: var(--amber);
}

/* Mobile toggle for plan note */
.pit {
  display: none;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.pit-b {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 17px;
  background: var(--surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all .2s;
}

.pit-b:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pit-b svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  transition: transform .3s;
}

.pit.open .pit-b svg {
  transform: rotate(180deg);
}

/* ── PRICING GRID ── */
.pg {
  display: none;
  max-width: 900px;
}

.pg.on {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-b);
  border: 1px solid var(--border-b);
  margin: 0 auto;
  justify-content: center;
}

.pg.cols-1.on {
  grid-template-columns: 1fr;
  max-width: 380px;
}

.pg.cols-2.on {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
}

.pg.cols-3.on {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
}

#nonrenew-plans.on {
  grid-template-columns: 1fr;
  max-width: 380px;
}

/* Price Card */
.pc {
  background: var(--card);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}

.pc:hover {
  background: var(--card-hover);
}

.pc::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  pointer-events: none;
  transition: border-color var(--t);
  z-index: 1;
}

.pc:hover::after {
  border-color: rgba(0, 229, 255, .22);
}

/* Popular / best-value card */
.pc.pop {
  background: #0C1A30;
}

.pc.pop::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: var(--accent);
  color: #000;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-align: center;
  padding: 6px;
  z-index: 2;
}

.pc.pop .pcbtn {
  background: linear-gradient(135deg, #00A3C4, #007791);
  color: #ffffff !important;
  border-color: var(--accent);
  box-shadow: 0 0 22px rgba(0, 229, 255, .25);
}

/* Stockout state */
.pc.sout {
  opacity: .45;
  pointer-events: none;
}
  opacity: .7;
}

.plan-sout-tag, .sout-lbl {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #f87171 !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 3;
}

.pc.sout .pcbtn,
.pcbtn.disabled,
.pcbtn:disabled,
.btn-buy-direct.disabled,
.oprod-buy.disabled {
  background: #334155 !important;
  border: 1px solid #475569 !important;
  color: #94a3b8 !important;
  cursor: not-allowed !important;
  pointer-events: none !important;
  box-shadow: none !important;
  opacity: 0.65 !important;
}

.pcdur {
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 4px;
}

.pctype {
  font-size: 11px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-weight: 700;
  margin-bottom: 18px;
}

.pcprice {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 5px;
}

.pcprice .sym {
  font-size: 1.2rem;
  color: var(--text-dim);
  font-weight: 600;
}

.pcprice .amt {
  font-family: var(--font-d);
  font-size: 3.2rem;
  /* ↑ bigger */
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: var(--text);
}

.pcsub {
  font-size: 12px;
  color: var(--green);
  font-weight: 700;
  margin-bottom: 22px;
}

.pcf {
  list-style: none;
  flex: 1;
  margin-bottom: 24px;
}

.pcf li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  font-size: 13px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
}

.pcf li:last-child {
  border-bottom: none;
}

.pcf svg {
  width: 13px;
  height: 13px;
  stroke: var(--green);
  flex-shrink: 0;
}

.pcf svg.w {
  stroke: var(--amber);
}

.pcbtn {
  display: block;
  width: 100%;
  padding: 15px;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border-b);
  transition: all .25s var(--ease);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.pcbtn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--accent);
  transform: translateX(-101%);
  transition: transform .3s var(--ease);
  z-index: -1;
}

.pcbtn:hover {
  color: #ffffff !important;
  border-color: var(--accent);
  background: linear-gradient(135deg, #00A3C4, #007791);
}

.pcbtn:hover::before {
  transform: translateX(0);
}

.pcbtn.sout-b {
  background: rgba(80, 80, 100, .25);
  color: var(--text-faint);
  border-color: var(--border);
  pointer-events: none;
}

.pcbtn.sout-b::before {
  display: none;
}

/* ── COMPARE ── */
.cmp {
  padding: 80px 0;
}

.cmpg {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border-b);
  max-width: 880px;
  margin: 0 auto;
}

.cc {
  background: var(--card);
  overflow: hidden;
  transition: background var(--t);
}

.cc:hover {
  background: var(--card-hover);
}

.cc.hl {
  background: #0C1A30;
}

.cc.hl:hover {
  background: #0F2038;
}

.cc-head {
  padding: 26px 26px 20px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.cc.hl .cc-head::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

.cc-head h3 {
  font-family: var(--font-d);
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -.02em;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.rtag {
  font-size: 10px;
  padding: 3px 9px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.cc-from {
  font-size: 13px;
  color: var(--text-dim);
  margin-top: 5px;
}

.cc-from strong {
  font-family: var(--font-d);
  color: var(--accent);
  font-size: 16px;
}

.cc-rows {
  list-style: none;
}

.cc-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 26px;
  font-size: 14px;
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  transition: background .2s, color .2s;
}

.cc-row:last-child {
  border-bottom: none;
}

.cc-row:hover {
  background: rgba(0, 229, 255, .04);
  color: var(--text);
}

.cc-row svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.cc-row svg.c {
  stroke: var(--green);
}

.cc-row svg.i {
  stroke: var(--amber);
}

/* ── FEATURES ── */
.feat {
  padding: 80px 0;
  background: var(--surface);
  position: relative;
}

.feat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-b);
}

.feat .fg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.feat .fi {
  background: var(--card);
  padding: 32px 30px;
  display: flex;
  align-items: flex-start;
  gap: 22px;
  transition: background var(--t);
  position: relative;
  overflow: hidden;
}

.feat .fi:hover {
  background: var(--card-hover);
}

.fi::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: transparent;
  transition: background var(--t);
}

.fi:hover::before {
  background: var(--accent);
  box-shadow: 2px 0 12px var(--accent-glow);
}

.fi-ico {
  width: 54px;
  height: 54px;
  border: 1px solid var(--border-b);
  background: var(--surface);
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}

.fi-b h3 {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.fi-b p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
}

/* Animated progress bar */
.fbar {
  height: 2px;
  background: var(--border);
  margin-top: 14px;
  overflow: hidden;
}

.fbar-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width 1.4s var(--ease);
  box-shadow: 0 0 8px var(--accent);
}

.fi.on .fbar-fill {
  width: var(--w, 80%);
}

/* ── REVIEWS ── */
.revs {
  padding: 80px 0;
}

.rev-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.rev-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 20px;
  border: 1px solid var(--border-b);
  font-size: 12px;
  font-weight: 800;
  color: var(--text-dim);
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .25s;
}

.rev-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 255, .04);
}

/* Rating summary box */
.rbox {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 22px 26px;
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: 24px;
  position: relative;
}

.rbox::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent 55%);
}

.rbox-n {
  font-family: var(--font-d);
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
  letter-spacing: -.04em;
  flex-shrink: 0;
}

.rbox-n span {
  color: var(--accent);
  font-size: 1.6rem;
}

.rbox-r {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rbox-stars {
  color: var(--amber);
  font-size: 20px;
  letter-spacing: 3px;
}

.rbox-c {
  font-size: 13px;
  color: var(--text-dim);
}

/* Review cards grid */
.rev-wrap {
  position: relative;
}

.rev-wrap.no-scroll .rev-arr {
  display: none;
}

.rev-arr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: rgba(2, 5, 9, .75);
  border: 1px solid var(--border-b);
  color: var(--text);
  z-index: 3;
  transition: all var(--t);
}

.rev-arr svg {
  width: 18px;
  height: 18px;
}

.rev-arr:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0, 229, 255, .05);
}

.rev-arr:disabled {
  opacity: .25;
  cursor: default;
}

.rev-arr-l {
  left: -14px;
}

.rev-arr-r {
  right: -14px;
}

.revg {
  column-count: 3;
  column-gap: 16px;
  width: 100%;
  display: block;
  background: transparent;
  border: none;
  overflow: visible;
}

@media (max-width: 992px) {
  .revg {
    column-count: 2;
    column-gap: 14px;
  }
}

@media (max-width: 768px) {
  .revg {
    column-count: 1;
    column-gap: 0;
  }
}

.rc {
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: inline-block;
  width: 100%;
  margin-bottom: 16px;
  background: var(--card);
  padding: 20px 20px 18px;
  border-radius: 14px;
  border: 1px solid var(--border-b);
  transition: background var(--t), transform var(--t);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.rc:hover {
  background: var(--card-hover);
}

.rc-q {
  font-size: 3.2rem;
  line-height: .8;
  color: var(--accent);
  opacity: .22;
  font-family: Georgia, serif;
  position: absolute;
  top: 14px;
  right: 18px;
}

.rc-stars {
  color: var(--amber);
  font-size: 14px;
  letter-spacing: 3px;
}

.rc-txt {
  font-size: 14px;
  color: var(--text);
  line-height: 1.6;
  flex: none;
  font-style: italic;
}

.rc-auth {
  display: flex;
  align-items: center;
  gap: 12px;
}

.rc-av {
  width: 38px;
  height: 38px;
  border: 1.5px solid var(--accent);
  display: grid;
  place-items: center;
  color: var(--accent);
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 14px;
  background: rgba(0, 229, 255, .08);
  flex-shrink: 0;
  overflow: hidden;
}

.rc-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rc-name {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.rc-date {
  font-size: 12px;
  color: var(--text-faint);
}

/* ── FAQ ── */
.faq-sec {
  padding: 80px 0 100px;
  background: var(--surface);
  position: relative;
}

.faq-sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border-b);
}

.faqlist {
  max-width: 780px;
  margin: 0 auto;
}

.fi2 {
  background: var(--card);
  border: 1px solid var(--border);
  margin-bottom: -1px;
  position: relative;
  transition: border-color .2s;
}

.fi2:hover {
  z-index: 1;
  border-color: var(--border-b);
}

.fi2.open {
  z-index: 2;
  border-color: rgba(0, 229, 255, .3);
}

.fi2.open::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  box-shadow: 2px 0 8px var(--accent-glow);
}

.fq {
  width: 100%;
  padding: 20px 26px;
  background: none;
  border: none;
  color: var(--text);
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  letter-spacing: -.01em;
  transition: color .2s;
}

.fq:hover {
  color: var(--accent);
}

.fq svg {
  width: 17px;
  height: 17px;
  stroke: var(--text-dim);
  transition: transform .3s, stroke .2s;
  flex-shrink: 0;
}

.fi2.open .fq svg {
  transform: rotate(180deg);
  stroke: var(--accent);
}

.fans {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}

.fi2.open .fans {
  max-height: 320px;
}

.fans-in {
  padding: 0 26px 22px;
  color: var(--text-dim);
  font-size: 14px;
  line-height: 1.8;
}

.fans-in strong {
  color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .pg.on {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg.cols-3.on {
    grid-template-columns: repeat(2, 1fr);
  }

  .pg.cols-1.on {
    grid-template-columns: 1fr;
  }

  /* A lone card in the last row would sit hard left — centre it instead. */
  .pg.on>.pc:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 100%;
    max-width: 380px;
    justify-self: center;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .feat .fg {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
  }

  .hcontent {
    padding: 54px 0 38px;
  }

  .hero h1 {
    font-size: 2.1rem;
  }

  .hstats {
    grid-template-columns: 1fr 1fr;
  }

  .cmpg {
    grid-template-columns: 1fr;
  }

  .rev-arr-l {
    left: -8px;
  }

  .rev-arr-r {
    right: -8px;
  }

  .pit {
    display: flex;
  }

  .pnote {
    display: none !important;
  }

  .pnote.m-on {
    display: block !important;
  }

  .pg.on,
  .pg.cols-1.on,
  .pg.cols-2.on,
  .pg.cols-3.on {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .feat .fg {
    grid-template-columns: 1fr;
  }

  .hbtns {
    flex-direction: column;
  }

  .rbox {
    flex-direction: column;
    align-items: flex-start;
  }

  .hsi-num {
    font-size: 1.4rem;
  }
}

/* ── Explore Other Products (rp-) — tuning ── */
.rp-sec { padding: 8px 0 60px; }
.rp-item { flex-basis: 250px; grid-template-columns: 64px 1fr; padding: 12px; border-radius: 12px; }
.rp-logo { width: 64px; height: 64px; padding: 8px; border-radius: 12px; }
.rp-name { font-size: 13.5px; }
.rp-meta { font-size: 12px; margin-top: 3px; }
/* row auto-scrolls via JS — hide the horizontal scrollbar */
.rp-track { scroll-behavior: auto; scrollbar-width: none; -ms-overflow-style: none; }
.rp-track::-webkit-scrollbar { display: none; height: 0; }

/* ── Footer (product pages) ── */
footer .w { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.foot-fb {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--text-dim); text-decoration: none;
  padding: 7px 14px; border: 1px solid var(--border-b); border-radius: 999px;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}
.foot-fb:hover { color: #fff; background: #1877F2; border-color: #1877F2; }
.foot-fb svg { width: 16px; height: 16px; }

/* no borders on the Explore row — clean look */
.rp-wrap { border: none; }
.rp-head { border-bottom: none; }
.rp-item, .rp-item:hover { border: none; }
.rp-logo { border: none; }

/* bigger product logo image in the Explore row */
.rp-item { flex-basis: 300px; grid-template-columns: 88px 1fr; gap: 14px; }
.rp-logo { width: 88px; height: 88px; padding: 6px; }

/* even bigger logo image */
.rp-item { flex-basis: 340px; grid-template-columns: 120px 1fr; }
.rp-logo { width: 120px; height: 120px; padding: 6px; }

/* vertical card: image on top, product name, then price */
.rp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  flex-basis: 240px;
  padding: 18px 14px;
}
/* clean image — no box/border/background behind the logo */
.rp-logo { width: 200px; height: 200px; padding: 0; border: 0 !important; background: transparent !important; }
.rp-name { font-size: 14px; }
.rp-meta { font-size: 12.5px; margin-top: 0; }

/* SEO CONTENT / BUYING GUIDE SECTIONS
   Used by the long-form product copy + guide blocks
   on every product page. Full-width: the .w wrapper
   already constrains it to the site container. */
.seo-sec { padding: 56px 0; position: relative; }
.seo-wrap {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--card);
  padding: 34px 32px;
  color: var(--text);
}
.seo-wrap h2 {
  font-size: clamp(20px, 3vw, 27px);
  line-height: 1.28;
  margin: 34px 0 12px;
  letter-spacing: -.01em;
  color: var(--text);
}
.seo-wrap > h2:first-child { margin-top: 0; }
.seo-wrap h3 {
  font-size: clamp(16px, 2.2vw, 19px);
  line-height: 1.35;
  margin: 24px 0 8px;
  color: var(--text);
}
.seo-wrap p { margin: 0 0 14px; line-height: 1.8; font-size: 15.5px; color: var(--text-dim); }
.seo-wrap ul, .seo-wrap ol { margin: 0 0 16px; padding-left: 20px; }
.seo-wrap li { line-height: 1.75; margin-bottom: 7px; font-size: 15.5px; color: var(--text-dim); }
.seo-wrap strong { color: var(--text); font-weight: 700; }
.seo-wrap a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); }
.seo-wrap a:hover { border-bottom-color: currentColor; }

/* Featured-snippet answer block — short, direct, quotable */
.snip {
  border-left: 3px solid var(--accent);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  border-radius: 0 12px 12px 0;
  padding: 16px 18px;
  margin: 0 0 20px;
}
.snip p { margin: 0; color: var(--text); font-size: 15.5px; }
.snip .snip-q { display: block; font-weight: 700; margin-bottom: 6px; font-size: 13px; letter-spacing: .04em; text-transform: uppercase; color: var(--accent); }

/* Comparison / price table */
.seo-tbl { width: 100%; border-collapse: collapse; margin: 0 0 20px; font-size: 14.5px; }
.seo-tbl th, .seo-tbl td {
  border: 1px solid var(--border);
  padding: 11px 13px;
  text-align: left;
  vertical-align: top;
}
.seo-tbl th { background: var(--surface); color: var(--text); font-weight: 700; }
.seo-tbl td { color: var(--text-dim); }
.seo-tbl caption { caption-side: bottom; padding-top: 8px; font-size: 13px; color: var(--text-faint); text-align: left; }
.seo-tbl-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* Internal-link cluster at the end of the copy */
.seo-links { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 0; }
.seo-links a {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 13.5px;
  color: var(--text);
  background: var(--surface);
  text-decoration: none;
}
.seo-links a:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 640px) {
  .seo-sec { padding: 40px 0; }
  .seo-wrap { padding: 22px 18px; border-radius: 14px; }
  .seo-wrap p, .seo-wrap li { font-size: 15px; }
}
