/* ══════════════════════════════════════
   PCDOTS — ORIGINAL PALETTE
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:        #0d6efd;
  --blue-hero:   #0b58ca;
  --red:         #dc3545;
  --yellow:      #fec104;
  --green-dl:    #02ac07;
  --bg-light:    #f3f6f9;
  --bg-blue:     #e5f2ff;
  --bg-blue2:    #f2f9ff;
  --border-blue: #d4e9ff;
  --light-blue:  #9ccefd;
  --text-dark:   #2a2c39;
  --text-body:   #444;
  --text-muted:  #777;
  --white:       #ffffff;
  --white-70:    rgba(255,255,255,0.70);
  --white-40:    rgba(255,255,255,0.40);
  --white-15:    rgba(255,255,255,0.15);
}

body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text-body);
  background: #fff;
  overflow-x: hidden;
}

/* ══════════════════════════════════════
   NAVBAR
══════════════════════════════════════ */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: var(--blue-hero);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 38px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  font-family: 'Raleway', sans-serif;
  font-weight: 600; font-size: 15px;
  color: var(--white-70);
  text-decoration: none;
  padding: 6px 15px;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--white-15); color: #fff; }
.nav-links a.live  { background: var(--yellow); color: #000; font-weight: 700; }
.nav-links a.live:hover { background: #e6ae00; color: #000; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
#hero {
  background: var(--blue-hero);
  min-height: calc(100vh - 70px);
  display: flex; align-items: center;
  padding: 64px 5% 56px;
  position: relative; overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  top: -160px; left: -160px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
#hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 44%;
  width: 380px; height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}
.dot-grid {
  position: absolute;
  bottom: 60px; right: 42%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 9px; opacity: .15;
  pointer-events: none;
}
.dot-grid span { width: 4px; height: 4px; border-radius: 50%; background: #fff; display: block; }
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 52px; align-items: center;
  width: 100%; max-width: 1320px;
  margin: 0 auto; position: relative; z-index: 2;
}
.hero-left { display: flex; flex-direction: column; }

.hero-brand {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white-15);
  border: 1px solid var(--white-40);
  border-radius: 50px;
  padding: 5px 16px 5px 10px;
  width: fit-content; margin-bottom: 22px;
  animation: fadeUp .5s .1s ease both;
}
.hero-brand .brand-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
.hero-brand span {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-70);
}
.hero-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 900; line-height: 1.13;
  color: var(--white); margin-bottom: 20px;
  animation: fadeUp .5s .2s ease both;
}
.hero-heading .hl-yellow { color: var(--yellow); }
.hero-heading .hl-light  { color: var(--light-blue); }
.hero-sub {
  font-size: 17px; line-height: 1.7;
  color: var(--white-70); max-width: 500px;
  margin-bottom: 34px;
  animation: fadeUp .5s .3s ease both;
}
.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-bottom: 14px;
  animation: fadeUp .5s .4s ease both;
}
.btn-download {
  display: inline-flex; flex-direction: column; align-items: center;
  background: var(--green-dl); color: #fff;
  border: 2px solid var(--green-dl); border-radius: 50px;
  padding: 11px 28px; text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 15px; line-height: 1.35;
  transition: background .25s, transform .2s; min-width: 170px;
}
.btn-download .btn-main { display: flex; align-items: center; gap: 7px; }
.btn-download .btn-main svg { fill: #fff; }
.btn-download .btn-sub  { font-size: 11px; font-weight: 500; opacity: .85; font-family: 'Open Sans', sans-serif; }
.btn-download:hover { background: #038e07; border-color: #038e07; transform: translateY(-2px); }
.btn-catalog {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  border: 2px solid var(--white-40); border-radius: 50px;
  padding: 11px 28px; text-decoration: none;
  font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 15px;
  transition: background .25s, border-color .25s, transform .2s;
}
.btn-catalog:hover { background: var(--white-15); border-color: rgba(255,255,255,.7); transform: translateY(-2px); }
.btn-catalog .arrow { font-size: 18px; transition: transform .2s; }
.btn-catalog:hover .arrow { transform: translateX(5px); }
.hero-note {
  font-size: 12.5px; color: var(--white-70);
  margin-bottom: 40px;
  animation: fadeUp .5s .45s ease both;
}
.hero-note a { color: var(--light-blue); text-decoration: none; }
.hero-note a:hover { text-decoration: underline; }
.hero-stats {
  display: flex; align-items: stretch;
  border-top: 1px solid var(--white-15); padding-top: 26px;
  animation: fadeUp .5s .55s ease both;
}
.stat-item { flex: 1; padding: 0 20px; border-right: 1px solid var(--white-15); }
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child  { border-right: none; }
.stat-value { font-family: 'Raleway', sans-serif; font-size: 26px; font-weight: 900; color: var(--yellow); line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 13px; color: var(--white-70); font-weight: 500; }
.hero-right { display: flex; justify-content: center; align-items: center; }
.software-wrap {
  width: 100%; max-width: 640px;
  border-radius: 8px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.28), 0 32px 72px rgba(0,0,0,.22);
  animation: fadeUp .7s .2s ease both;
}
.software-wrap img { width: 100%; display: block; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ══════════════════════════════════════
   CLIENTS
══════════════════════════════════════ */
#clients {
  padding: 64px 5%;
  background: var(--bg-light);
  position: relative; overflow: hidden;
}
#clients::before {
  content: ''; position: absolute;
  top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-blue), transparent);
}
.clients-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.clients-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.clients-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 800; color: var(--text-dark); margin-bottom: 48px;
}
.logo-track-wrap {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}
.logo-track {
  display: flex; align-items: center; gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.logo-track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.logo-item {
  display: flex; align-items: center; justify-content: center;
  height: 52px; flex-shrink: 0;
  filter: grayscale(1) opacity(.5);
  transition: filter .3s, transform .3s;
}
.logo-item:hover { filter: grayscale(0) opacity(1); transform: scale(1.08); }
.logo-item img { height: 34px; max-width: 120px; object-fit: contain; }
.clients-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 24px; margin-top: 44px; flex-wrap: wrap;
}
.trust-chip {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border-blue);
  border-radius: 50px; padding: 8px 18px;
  font-size: 13px; font-weight: 600; color: var(--text-dark);
  box-shadow: 0 2px 8px rgba(13,110,253,.07);
}
.trust-chip .chip-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.chip-green  { background: var(--green-dl); }
.chip-blue   { background: var(--blue); }
.chip-red    { background: var(--red); }

/* ══════════════════════════════════════
   PRODUCT CATEGORIES
══════════════════════════════════════ */
#categories { display: flex; min-height: 700px; background: var(--bg-light); }
.cat-left {
  width: 300px; flex-shrink: 0;
  background: var(--blue-hero);
  position: relative; overflow: hidden;
}
.cat-left::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1px, transparent 1px);
  background-size: 18px 18px; z-index: 1;
}
.cat-left-img {
  position: absolute; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 90%; max-width: 280px; z-index: 2;
  border-radius: 10px 10px 0 0;
  object-fit: cover; object-position: top;
}
.cat-right {
  flex: 1; padding: 52px 48px 44px;
  display: flex; flex-direction: column;
  background: var(--bg-light);
}
.cat-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 900; color: var(--text-dark);
  margin-bottom: 32px; text-align: right;
}
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; flex: 1; }
.cat-card {
  background: #fff; border: 2px solid var(--border-blue);
  border-radius: 10px; padding: 26px 26px 20px;
  display: flex; flex-direction: column; gap: 10px;
  box-shadow: 0 2px 29px 0 rgba(68,88,144,.08);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.cat-card:hover { border-color: var(--blue); box-shadow: 0 2px 35px 0 rgba(13,110,253,.14); transform: translateY(-5px); }
.cat-card-top { display: flex; align-items: center; gap: 14px; }
.cat-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-blue); border-radius: 8px;
  color: var(--blue); transition: background .25s, color .25s;
}
.cat-card:hover .cat-icon { background: var(--blue); color: #fff; }
.cat-icon svg { width: 22px; height: 22px; fill: currentColor; }
.cat-title { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 800; color: var(--text-dark); }
.cat-desc { font-size: 14px; line-height: 1.6; color: var(--text-body); flex: 1; }
.cat-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700;
  color: var(--blue); text-decoration: none; margin-top: 4px;
  transition: gap .2s, color .2s;
}
.cat-link:hover { gap: 10px; color: var(--red); }
.cat-footer { text-align: center; margin-top: 32px; }
.btn-view-all {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 36px; border-radius: 50px;
  text-decoration: none; border: 2px solid var(--red);
  transition: background .25s, border-color .25s, transform .2s;
  box-shadow: 0 4px 18px rgba(220,53,69,.25);
}
.btn-view-all:hover { background: #bb2d3b; border-color: #bb2d3b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,53,69,.35); }
.btn-view-all .arrow { font-size: 18px; transition: transform .2s; }
.btn-view-all:hover .arrow { transform: translateX(5px); }

/* ══════════════════════════════════════
   SUPPORTS
══════════════════════════════════════ */
#supports {
  padding: 72px 5% 60px;
  background: #fff; text-align: center; overflow: hidden;
}
.sup-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; color: var(--yellow);
  margin-bottom: 12px; display: block;
}
.sup-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 900; color: var(--text-dark);
  margin-bottom: 16px; line-height: 1.15;
}
.sup-sub {
  font-size: 16px; line-height: 1.7;
  color: var(--text-body); max-width: 560px; margin: 0 auto 52px;
}
.sup-track-wrap {
  position: relative; overflow: hidden; margin: 0 -5%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.sup-track {
  display: flex; align-items: center; gap: 20px;
  width: max-content; padding: 12px 40px;
  animation: supMarquee 32s linear infinite;
}
.sup-track:hover { animation-play-state: paused; }
@keyframes supMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.sup-card {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; width: 160px; height: 160px;
  background: #fff; border: 1.5px solid var(--border-blue);
  border-radius: 18px; box-shadow: 0 2px 20px rgba(13,110,253,.07);
  flex-shrink: 0; cursor: default;
  transition: border-color .3s, box-shadow .3s, transform .3s; padding: 18px;
}
.sup-card:hover { border-color: var(--blue); box-shadow: 0 6px 28px rgba(13,110,253,.14); transform: translateY(-6px); }
.sup-card img { width: 60px; height: 60px; object-fit: contain; }
.sup-card-label { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); }
.sup-info-pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--bg-blue2); border: 1.5px solid var(--border-blue);
  border-radius: 50px; padding: 12px 28px; margin-top: 48px;
  font-size: 14px; color: var(--text-body);
  box-shadow: 0 2px 12px rgba(13,110,253,.08);
}
.sup-info-pill svg { flex-shrink: 0; fill: var(--blue); }
.sup-info-pill strong { color: var(--text-dark); }

/* ══════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════ */
#testimonials {
  padding: 72px 5% 68px;
  background: var(--bg-light); overflow: hidden; position: relative;
}
#testimonials::before {
  content: ''; position: absolute;
  top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-blue), transparent);
}
.testi-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.testi-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 12px;
}
.testi-heading { font-family: 'Raleway', sans-serif; font-size: clamp(24px, 3.2vw, 40px); font-weight: 900; color: var(--text-dark); margin-bottom: 14px; }
.testi-sub { font-size: 15px; color: var(--text-body); line-height: 1.7; margin-bottom: 52px; }
.stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
.testi-card {
  background: #fff; border: 2px solid var(--border-blue);
  border-radius: 14px; padding: 30px 28px 26px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 2px 20px rgba(13,110,253,.07);
  transition: border-color .3s, box-shadow .3s, transform .3s; position: relative;
}
.testi-card:hover { border-color: var(--blue); box-shadow: 0 8px 32px rgba(13,110,253,.13); transform: translateY(-5px); }
.testi-card::before {
  content: '\201C'; font-family: Georgia, serif;
  font-size: 72px; line-height: 1; color: var(--bg-blue);
  position: absolute; top: 14px; right: 20px; pointer-events: none;
}
.testi-quote { font-size: 14.5px; line-height: 1.75; color: var(--text-body); font-style: italic; flex: 1; }
.testi-divider { height: 1px; background: var(--border-blue); }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar { width: 46px; height: 46px; border-radius: 50%; border: 3px solid var(--light-blue); object-fit: cover; flex-shrink: 0; }
.testi-name { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.testi-location { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.testi-cta {
  margin-top: 52px; background: var(--blue-hero); border-radius: 14px;
  padding: 36px 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; flex-wrap: wrap; text-align: left;
}
.testi-cta-text strong { display: block; font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800; color: #fff; margin-bottom: 6px; }
.testi-cta-text span { font-size: 14px; color: var(--white-70); }
.testi-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px;
  padding: 13px 30px; border-radius: 50px;
  text-decoration: none; border: 2px solid var(--red); white-space: nowrap;
  transition: background .25s, transform .2s;
}
.testi-cta-btn:hover { background: #bb2d3b; border-color: #bb2d3b; transform: translateY(-2px); color: #fff; }
.testi-cta-btn .arrow { transition: transform .2s; }
.testi-cta-btn:hover .arrow { transform: translateX(4px); }

/* ══════════════════════════════════════
   FAQ
══════════════════════════════════════ */
#faq {
  padding: 72px 5% 68px;
  background: #fff; position: relative; overflow: hidden;
}
#faq::before {
  content: ''; position: absolute;
  top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-blue), transparent);
}
.faq-inner { max-width: 1100px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 52px; }
.faq-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 12px;
}
.faq-heading { font-family: 'Raleway', sans-serif; font-size: clamp(24px, 3.2vw, 40px); font-weight: 900; color: var(--text-dark); margin-bottom: 14px; }
.faq-sub { font-size: 15px; color: var(--text-body); line-height: 1.7; }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff; border: 2px solid var(--border-blue);
  border-radius: 10px; overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item.open { border-color: var(--blue); box-shadow: 0 4px 20px rgba(13,110,253,.10); }
.faq-question {
  width: 100%; display: flex; align-items: center;
  justify-content: space-between; gap: 12px;
  padding: 18px 22px; background: none; border: none;
  cursor: pointer; text-align: left;
}
.faq-q-left { display: flex; align-items: center; gap: 14px; }
.faq-q-num {
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 800;
  color: var(--blue); background: var(--bg-blue); border-radius: 6px;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: background .3s, color .3s;
}
.faq-item.open .faq-q-num { background: var(--blue); color: #fff; }
.faq-q-text { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.faq-icon {
  width: 28px; height: 28px; flex-shrink: 0; border-radius: 50%;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s, transform .35s;
}
.faq-icon svg { fill: var(--blue); transition: fill .3s; }
.faq-item.open .faq-icon { background: var(--blue); transform: rotate(45deg); }
.faq-item.open .faq-icon svg { fill: #fff; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 22px; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 14px; line-height: 1.75; color: var(--text-body); border-top: 1px solid var(--border-blue); padding-top: 14px; }
.faq-panel { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.faq-contact-card { background: var(--blue-hero); border-radius: 14px; padding: 36px 30px; text-align: center; color: #fff; }
.faq-contact-icon {
  width: 60px; height: 60px; background: var(--white-15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 18px;
}
.faq-contact-icon svg { fill: #fff; width: 28px; height: 28px; }
.faq-contact-card h3 { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.faq-contact-card p { font-size: 14px; color: var(--white-70); line-height: 1.65; margin-bottom: 22px; }
.faq-contact-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px;
  padding: 11px 26px; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--red); transition: background .25s, transform .2s;
}
.faq-contact-btn:hover { background: #bb2d3b; border-color: #bb2d3b; color: #fff; transform: translateY(-2px); }
.faq-stats-card {
  background: var(--bg-blue2); border: 2px solid var(--border-blue);
  border-radius: 14px; padding: 28px 26px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.faq-stat { text-align: center; }
.faq-stat-val { font-family: 'Raleway', sans-serif; font-size: 24px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 5px; }
.faq-stat-lbl { font-size: 12px; color: var(--text-muted); font-weight: 600; }

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
#footer { background: var(--blue-hero); color: var(--white-70); font-size: 14px; }
.footer-banner {
  background: var(--red); padding: 28px 5%;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.footer-banner-text { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 800; color: #fff; }
.footer-banner-text span { font-weight: 400; font-size: 14px; color: rgba(255,255,255,.80); display: block; margin-top: 3px; }
.footer-banner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--red);
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 14px;
  padding: 12px 28px; border-radius: 50px; text-decoration: none; white-space: nowrap;
  transition: background .25s, transform .2s; border: 2px solid #fff;
}
.footer-banner-btn:hover { background: transparent; color: #fff; transform: translateY(-2px); }
.footer-body {
  padding: 56px 5% 40px;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1320px; margin: 0 auto;
}
.footer-brand img.footer-logo { height: 38px; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; line-height: 1.75; color: var(--white-70); max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; flex-wrap: wrap; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white-15); border: 1px solid var(--white-40);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: background .25s, transform .2s;
}
.social-btn:hover { background: var(--blue); transform: translateY(-3px); }
.social-btn svg { fill: #fff; width: 16px; height: 16px; }
.footer-col h4 {
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 800;
  color: #fff; letter-spacing: .5px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 10px;
  border-bottom: 2px solid var(--red); display: inline-block;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  color: var(--white-70); text-decoration: none; font-size: 14px;
  display: flex; align-items: center; gap: 7px; transition: color .2s, gap .2s;
}
.footer-col ul li a::before { content: '›'; color: var(--light-blue); font-size: 16px; font-weight: 700; line-height: 1; transition: transform .2s; }
.footer-col ul li a:hover { color: #fff; gap: 10px; }
.footer-col ul li a:hover::before { transform: translateX(3px); }
.footer-divider { border: none; border-top: 1px solid var(--white-15); margin: 0 5%; }
.footer-bottom {
  padding: 20px 5%; max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: var(--white-70); }
.footer-copy a { color: var(--light-blue); text-decoration: none; }
.footer-copy a:hover { color: #fff; }
.footer-legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-legal a { font-size: 13px; color: var(--white-70); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: #fff; }

/* Back to top */
.back-top-btn {
  position: fixed; bottom: 24px; right: 20px;
  width: 40px; height: 40px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; box-shadow: 0 4px 16px rgba(13,110,253,.35);
  opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, background .2s; z-index: 999;
}
.back-top-btn.visible { opacity: 1; pointer-events: all; }
.back-top-btn:hover { background: var(--red); transform: translateY(-3px); }
.back-top-btn svg { fill: #fff; width: 18px; height: 18px; }

/* ══════════════════════════════════════
   BLOG
══════════════════════════════════════ */
#blog {
  padding: 72px 5% 68px;
  background: var(--bg-light);
  position: relative;
}
#blog::before {
  content: ''; position: absolute;
  top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-blue), transparent);
}
.blog-inner { max-width: 1200px; margin: 0 auto; }

/* Header row */
.blog-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 20px;
  margin-bottom: 40px; flex-wrap: wrap;
}
.blog-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--yellow); display: block; margin-bottom: 10px;
}
.blog-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900; color: var(--text-dark); margin-bottom: 8px;
}
.blog-sub { font-size: 15px; color: var(--text-body); line-height: 1.6; }
.blog-view-all {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--blue); text-decoration: none; white-space: nowrap;
  border: 2px solid var(--blue); border-radius: 50px;
  padding: 10px 22px;
  transition: background .25s, color .25s, transform .2s;
}
.blog-view-all:hover { background: var(--blue); color: #fff; transform: translateY(-2px); }
.blog-view-all .arrow { transition: transform .2s; }
.blog-view-all:hover .arrow { transform: translateX(4px); }

/* 3-col grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Card */
.blog-card {
  background: #fff;
  border: 2px solid var(--border-blue);
  border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 2px 20px rgba(13,110,253,.06);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.blog-card:hover {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(13,110,253,.13);
  transform: translateY(-5px);
}

/* Image wrapper */
.blog-card-img-wrap {
  position: relative; display: block;
  overflow: hidden; aspect-ratio: 16/9;
  text-decoration: none;
}
.blog-card-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.blog-card:hover .blog-card-img-wrap img { transform: scale(1.05); }

/* Category badge */
.blog-cat {
  position: absolute; top: 12px; left: 12px;
  background: var(--blue); color: #fff;
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}

/* Card body */
.blog-card-body {
  padding: 22px 24px 24px;
  display: flex; flex-direction: column; gap: 10px; flex: 1;
}
.blog-meta {
  display: flex; align-items: center; gap: 6px;
  font-size: 12px; color: var(--text-muted);
}
.blog-dot { opacity: .5; }
.blog-read { color: var(--blue); font-weight: 600; }
.blog-title {
  font-family: 'Raleway', sans-serif;
  font-size: 16px; font-weight: 800;
  color: var(--text-dark); line-height: 1.4;
  flex: 1;
}
.blog-title a { color: inherit; text-decoration: none; transition: color .2s; }
.blog-title a:hover { color: var(--blue); }
.blog-excerpt { font-size: 13.5px; color: var(--text-body); line-height: 1.65; }
.blog-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--red); text-decoration: none;
  transition: gap .2s, color .2s; margin-top: 4px;
}
.blog-read-more:hover { gap: 9px; color: var(--blue); }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 991px) {
  nav .nav-links { display: none; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-brand { margin-left: auto; margin-right: auto; }
  .hero-sub   { margin-left: auto; margin-right: auto; }
  .hero-btns  { justify-content: center; }
  #categories { flex-direction: column; }
  .cat-left { width: 100%; height: 260px; }
  .cat-left-img { width: 50%; max-width: 200px; }
  .cat-right { padding: 36px 20px; }
  .cat-heading { text-align: center; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .faq-layout { grid-template-columns: 1fr; gap: 36px; }
  .faq-panel  { position: static; }
  .faq-stats-card { grid-template-columns: repeat(4, 1fr); }
  .footer-body { grid-template-columns: 1fr 1fr; }
  .footer-banner { text-align: center; justify-content: center; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  #hero { padding: 40px 5% 36px; }
  .hero-heading { font-size: 28px; }
  .stat-item { padding: 0 12px; }
  .stat-value { font-size: 20px; }
  .cat-grid { grid-template-columns: 1fr; }
  #clients { padding: 44px 5%; }
  .sup-card { width: 130px; height: 130px; }
  .sup-card img { width: 46px; height: 46px; }
  .testi-grid { grid-template-columns: 1fr; }
  .testi-cta  { text-align: center; justify-content: center; }
  .faq-stats-card { grid-template-columns: 1fr 1fr; }
  .footer-body { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-header { flex-direction: column; align-items: flex-start; }
}
/* ══════════════════════════════════════
   PRODUCTS PAGE — PCDOTS COLORS ONLY
══════════════════════════════════════ */

/* ── Hero banner ── */
.products-hero {
  background: var(--blue-hero);
  padding: 52px 5% 72px;
  position: relative;
  overflow: hidden;
}
.products-hero::before {
  content: '';
  position: absolute; top: -120px; left: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%);
  pointer-events: none;
}
.products-hero-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.products-eyebrow {
  font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 800;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 10px; display: block;
}
.products-heading {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 900; color: #fff;
  margin-bottom: 12px; line-height: 1.15;
}
.products-sub {
  font-size: 16px; color: var(--white-70);
  line-height: 1.6; margin-bottom: 36px;
}

/* ── Search + filter bar ── */
.search-bar-wrap {
  display: flex; align-items: stretch; gap: 12px;
  background: #fff; border-radius: 12px;
  padding: 10px 10px 10px 10px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  flex-wrap: wrap;
}
.search-input-wrap {
  flex: 1; display: flex; align-items: center;
  gap: 10px; min-width: 220px;
  background: var(--bg-blue2);
  border: 1.5px solid var(--border-blue);
  border-radius: 8px; padding: 0 12px;
}
.search-icon { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
.search-input {
  flex: 1; border: none; background: transparent;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px; color: var(--text-dark); padding: 10px 0;
  outline: none;
}
.search-input::placeholder { color: var(--text-muted); }
.search-clear {
  background: none; border: none; cursor: pointer;
  color: var(--text-muted); font-size: 13px;
  padding: 4px; border-radius: 50%;
  display: none; transition: color .2s;
}
.search-clear.visible { display: block; }
.search-clear:hover { color: var(--red); }

.filter-select-wrap {
  display: flex; align-items: center; gap: 8px;
  background: var(--bg-blue); border: 1.5px solid var(--border-blue);
  border-radius: 8px; padding: 0 14px; min-width: 200px;
}
.filter-icon { width: 16px; height: 16px; color: var(--blue); flex-shrink: 0; }
.category-select {
  flex: 1; border: none; background: transparent;
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--text-dark); padding: 10px 0; cursor: pointer; outline: none;
}

/* ── Category pills ── */
.cat-pills-wrap {
  background: #fff;
  border-bottom: 1px solid var(--border-blue);
  padding: 0 5%;
  position: sticky; top: 70px; z-index: 50;
}
.cat-pills {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  overflow-x: auto; padding: 14px 0;
  scrollbar-width: none;
}
.cat-pills::-webkit-scrollbar { display: none; }
.cat-pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700;
  color: var(--text-muted); background: var(--bg-light);
  border: 1.5px solid var(--border-blue); border-radius: 50px;
  padding: 7px 16px; cursor: pointer; white-space: nowrap;
  transition: all .2s;
}
.cat-pill .pill-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--border-blue); flex-shrink: 0;
  transition: background .2s;
}
.cat-pill .pill-count {
  font-size: 11px; font-weight: 800;
  background: var(--border-blue); color: var(--text-muted);
  border-radius: 50px; padding: 1px 7px;
  transition: background .2s, color .2s;
}
.cat-pill:hover { border-color: var(--blue); color: var(--blue); background: var(--bg-blue); }

/* All Products — Blue */
.cat-pill[data-cat="all"].active,
.cat-pill[data-cat="all"]:hover { background: var(--blue); color: #fff; border-color: var(--blue); }
.cat-pill[data-cat="all"].active .pill-dot  { background: rgba(255,255,255,.7); }
.cat-pill[data-cat="all"].active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

/* Email Converter — Blue */
.cat-pill[data-cat="Email Converter"] .pill-dot { background: var(--blue); }
.cat-pill[data-cat="Email Converter"]:hover,
.cat-pill[data-cat="Email Converter"].active { background: var(--blue); color: #fff; border-color: var(--blue); }
.cat-pill[data-cat="Email Converter"].active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

/* Email Backup — Red */
.cat-pill[data-cat="Email Backup"] .pill-dot { background: var(--red); }
.cat-pill[data-cat="Email Backup"]:hover,
.cat-pill[data-cat="Email Backup"].active { background: var(--red); color: #fff; border-color: var(--red); }
.cat-pill[data-cat="Email Backup"].active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

/* Email Migration — Green */
.cat-pill[data-cat="Email Migration"] .pill-dot { background: var(--green-dl); }
.cat-pill[data-cat="Email Migration"]:hover,
.cat-pill[data-cat="Email Migration"].active { background: var(--green-dl); color: #fff; border-color: var(--green-dl); }
.cat-pill[data-cat="Email Migration"].active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

/* Email Viewer — Teal */
.cat-pill[data-cat="Email Viewer"] .pill-dot { background: #0891b2; }
.cat-pill[data-cat="Email Viewer"]:hover,
.cat-pill[data-cat="Email Viewer"].active { background: #0891b2; color: #fff; border-color: #0891b2; }
.cat-pill[data-cat="Email Viewer"].active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

/* Data Care — Amber */
.cat-pill[data-cat="Data Care"] .pill-dot { background: #d97706; }
.cat-pill[data-cat="Data Care"]:hover,
.cat-pill[data-cat="Data Care"].active { background: #d97706; color: #fff; border-color: #d97706; }
.cat-pill[data-cat="Data Care"].active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

.cat-pill.active .pill-dot  { background: rgba(255,255,255,.6); }
.cat-pill.active .pill-count { background: rgba(255,255,255,.2); color: #fff; }

/* ── Results bar ── */
.results-bar {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-blue);
  padding: 10px 5%;
}
.results-bar-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px; flex-wrap: wrap;
}
.results-count {
  font-size: 13px; color: var(--text-muted); font-weight: 600;
}
.results-count strong { color: var(--blue); }
.sort-wrap {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
}
.sort-select {
  border: 1.5px solid var(--border-blue); border-radius: 6px;
  background: #fff; font-family: 'Open Sans', sans-serif;
  font-size: 13px; color: var(--text-dark);
  padding: 5px 10px; cursor: pointer; outline: none;
}

/* ── Product grid ── */
.products-section {
  padding: 36px 5% 60px;
  background: var(--bg-light);
  min-height: 400px;
}
.products-grid {
  max-width: 1300px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ── Product card ── */
.prod-card {
  background: #fff;
  border: 2px solid var(--border-blue);
  border-radius: 12px;
  padding: 24px 20px 20px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: 0 2px 16px rgba(13,110,253,.05);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative;
  border-top: 4px solid var(--border-blue);
}
.prod-card:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,.12);
  transform: translateY(-4px);
}

/* ── Per-category color themes ── */

/* Email Converter — PCDOTS Blue */
.prod-card[data-cat="Email Converter"]                        { border-top-color: var(--blue); }
.prod-card[data-cat="Email Converter"]:hover                  { border-color: var(--blue); }
.prod-card[data-cat="Email Converter"] .prod-icon             { background: #e8f0fe; }
.prod-card[data-cat="Email Converter"]:hover .prod-icon       { background: var(--blue); }
.prod-card[data-cat="Email Converter"] .prod-icon svg         { fill: var(--blue); }
.prod-card[data-cat="Email Converter"] .prod-cat              { background: #e8f0fe; color: var(--blue); }
.prod-card[data-cat="Email Converter"] .prod-btn              { background: var(--blue); }
.prod-card[data-cat="Email Converter"] .prod-btn:hover        { background: #0a4fbf; }
.prod-card[data-cat="Email Converter"] .prod-footer           { border-top-color: #d0e4ff; }

/* Email Backup — PCDOTS Red */
.prod-card[data-cat="Email Backup"]                           { border-top-color: var(--red); }
.prod-card[data-cat="Email Backup"]:hover                     { border-color: var(--red); }
.prod-card[data-cat="Email Backup"] .prod-icon                { background: #fdecea; }
.prod-card[data-cat="Email Backup"]:hover .prod-icon          { background: var(--red); }
.prod-card[data-cat="Email Backup"] .prod-icon svg            { fill: var(--red); }
.prod-card[data-cat="Email Backup"] .prod-cat                 { background: #fdecea; color: var(--red); }
.prod-card[data-cat="Email Backup"] .prod-btn                 { background: var(--red); }
.prod-card[data-cat="Email Backup"] .prod-btn:hover           { background: #b02030; }
.prod-card[data-cat="Email Backup"] .prod-footer              { border-top-color: #f8d0d4; }

/* Email Migration — PCDOTS Green */
.prod-card[data-cat="Email Migration"]                        { border-top-color: var(--green-dl); }
.prod-card[data-cat="Email Migration"]:hover                  { border-color: var(--green-dl); }
.prod-card[data-cat="Email Migration"] .prod-icon             { background: #e6f9e6; }
.prod-card[data-cat="Email Migration"]:hover .prod-icon       { background: var(--green-dl); }
.prod-card[data-cat="Email Migration"] .prod-icon svg         { fill: var(--green-dl); }
.prod-card[data-cat="Email Migration"] .prod-cat              { background: #e6f9e6; color: #038e07; }
.prod-card[data-cat="Email Migration"] .prod-btn              { background: var(--green-dl); }
.prod-card[data-cat="Email Migration"] .prod-btn:hover        { background: #038e07; }
.prod-card[data-cat="Email Migration"] .prod-footer           { border-top-color: #c3ecc3; }

/* Email Viewer — PCDOTS Light Blue */
.prod-card[data-cat="Email Viewer"]                           { border-top-color: #0891b2; }
.prod-card[data-cat="Email Viewer"]:hover                     { border-color: #0891b2; }
.prod-card[data-cat="Email Viewer"] .prod-icon                { background: #e0f5fa; }
.prod-card[data-cat="Email Viewer"]:hover .prod-icon          { background: #0891b2; }
.prod-card[data-cat="Email Viewer"] .prod-icon svg            { fill: #0891b2; }
.prod-card[data-cat="Email Viewer"] .prod-cat                 { background: #e0f5fa; color: #0891b2; }
.prod-card[data-cat="Email Viewer"] .prod-btn                 { background: #0891b2; }
.prod-card[data-cat="Email Viewer"] .prod-btn:hover           { background: #066d88; }
.prod-card[data-cat="Email Viewer"] .prod-footer              { border-top-color: #b8e8f3; }
.prod-card[data-cat="Email Viewer"] .prod-free-badge          { background: #0891b2; }

/* Data Care — PCDOTS Yellow/Amber */
.prod-card[data-cat="Data Care"]                              { border-top-color: #d97706; }
.prod-card[data-cat="Data Care"]:hover                        { border-color: #d97706; }
.prod-card[data-cat="Data Care"] .prod-icon                   { background: #fef3c7; }
.prod-card[data-cat="Data Care"]:hover .prod-icon             { background: #d97706; }
.prod-card[data-cat="Data Care"] .prod-icon svg               { fill: #d97706; }
.prod-card[data-cat="Data Care"] .prod-cat                    { background: #fef3c7; color: #d97706; }
.prod-card[data-cat="Data Care"] .prod-btn                    { background: #d97706; }
.prod-card[data-cat="Data Care"] .prod-btn:hover              { background: #b45309; }
.prod-card[data-cat="Data Care"] .prod-footer                 { border-top-color: #fde68a; }

/* Free badge */
.prod-free-badge {
  position: absolute; top: -1px; right: -1px;
  background: var(--green-dl); color: #fff;
  font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 0 10px 0 8px;
}

/* Icon area */
.prod-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .25s;
}
.prod-icon img { width: 34px; height: 34px; object-fit: contain; transition: transform .25s; }
.prod-card:hover .prod-icon img { transform: scale(1.1); }
.prod-card:hover .prod-icon { background: var(--blue); }
.prod-icon svg { width: 26px; height: 26px; fill: var(--blue); transition: fill .25s; }
.prod-card:hover .prod-icon svg { fill: #fff; }

/* Category badge */
.prod-cat {
  display: inline-block;
  font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); background: var(--bg-blue);
  border-radius: 50px; padding: 3px 10px;
  width: fit-content;
}

/* Name */
.prod-name {
  font-family: 'Raleway', sans-serif;
  font-size: 14px; font-weight: 600;
  color: var(--text-dark); line-height: 1.4;
  flex: 1;
}

/* Price row */
.prod-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 8px;
  margin-top: auto; padding-top: 12px;
  border-top: 1px solid var(--border-blue);
}
.prod-price {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 500;
  color: var(--text-body);
}
.prod-price.free { color: var(--green-dl); font-weight: 600; }

.prod-btn {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  color: #fff; background: var(--blue);
  border-radius: 50px; padding: 6px 14px;
  text-decoration: none; white-space: nowrap;
  transition: background .2s, transform .2s;
}
.prod-btn:hover { background: var(--red); transform: translateY(-1px); color: #fff; }

/* ── No results ── */
.no-results {
  max-width: 400px; margin: 60px auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.no-results svg { width: 56px; height: 56px; color: var(--border-blue); }
.no-results h3 { font-family: 'Raleway', sans-serif; font-size: 20px; font-weight: 800; color: var(--text-dark); }
.no-results p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }
.btn-reset {
  background: var(--blue); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px;
  border: none; border-radius: 50px; padding: 10px 24px;
  cursor: pointer; transition: background .2s;
}
.btn-reset:hover { background: var(--red); }

/* ── Responsive ── */
@media (max-width: 1200px) { .products-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 850px)  { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  {
  .products-grid { grid-template-columns: 1fr; }
  .search-bar-wrap { flex-direction: column; }
  .filter-select-wrap { min-width: unset; }
}


/* ══════════════════════════════════════
   PRODUCT PAGE STYLES — v2 (improved)
   Prefixes: pp-, sticky-, deepdive-,
   sysreq-, related-, formats-, stat-pill
   Zero conflicts with existing classes.
══════════════════════════════════════ */
/* ══════════════════════════════════════
   PRODUCT PAGE — FIXED & IMPROVED
   All selectors prefixed with pp-, sticky-,
   deepdive-, sysreq-, related-  (no clashes)
══════════════════════════════════════ */

/* ── Sticky Buy Bar ── */
.sticky-bar {
  position: fixed;
  top: 70px; left: 0; right: 0;
  z-index: 90;
  background: #fff;
  border-bottom: 3px solid var(--blue);
  box-shadow: 0 4px 24px rgba(0,0,0,.12);
  transform: translateY(-110%);
  opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
  pointer-events: none;
}
.sticky-bar.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.sticky-bar-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 10px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-bar-left { display: flex; align-items: center; gap: 12px; min-width: 0; }
.sticky-icon { width: 34px; height: 34px; object-fit: contain; flex-shrink: 0; }
.sticky-name { font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 15px; color: var(--text-dark); white-space: nowrap; }
.sticky-rating-row { display: flex; align-items: center; gap: 6px; }
.sticky-stars { color: var(--yellow); font-size: 13px; letter-spacing: 1px; }
.sticky-rating-text { font-size: 12px; color: var(--text-muted); white-space: nowrap; }
.sticky-bar-right { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.btn-sticky-free {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-dl); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  padding: 8px 20px; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--green-dl); transition: background .2s; white-space: nowrap;
}
.btn-sticky-free:hover { background: #038e07; border-color: #038e07; color: #fff; }
.btn-sticky-buy {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--red); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  padding: 8px 20px; border-radius: 50px; text-decoration: none;
  border: 2px solid var(--red); transition: background .2s; white-space: nowrap;
}
.btn-sticky-buy:hover { background: #bb2d3b; border-color: #bb2d3b; color: #fff; }

/* ── Breadcrumb — inside hero ── */
.breadcrumb-bar { display: none; } /* old standalone bar hidden */
.pp-hero-breadcrumb {
  padding: 10px 5%;
  margin-bottom: 0;
}
/* Cancel the global nav::after red line on the breadcrumb <nav> */
.pp-hero-breadcrumb nav::after { display: none; }
.pp-hero-breadcrumb-inner { max-width: 1300px; margin: 0 auto; }
.pp-breadcrumb {
  display: flex; align-items: center; gap: 6px;
  list-style: none; font-size: 13px; flex-wrap: wrap;
}
.pp-breadcrumb li + li::before { content: '›'; margin-right: 6px; color: rgba(255,255,255,.45); }
.pp-breadcrumb a {
  color: rgba(255,255,255,.65); text-decoration: none;
  font-weight: 500; transition: color .2s;
}
.pp-breadcrumb a:hover { color: var(--yellow); }
.pp-breadcrumb li:last-child {
  color: #fff; font-weight: 700;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 50px; padding: 2px 10px;
}

/* ════════════════════════════════
   HERO
════════════════════════════════ */
.pp-hero {
  background: var(--blue-hero);
  padding: 0 0 56px;
  position: relative; overflow: hidden;
}
.pp-hero::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
  pointer-events: none;
}
.pp-hero::after {
  content: ''; position: absolute; bottom: -80px; left: 5%;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 70%);
  pointer-events: none;
}
.pp-hero-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 56px; align-items: center; position: relative; z-index: 2;
  padding: 52px 5% 0;
}
.pp-hero-left { display: flex; flex-direction: column; min-width: 0; }
.pp-badge {
  display: inline-flex; align-items: center; gap: 7px;
  width: fit-content;
  background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.35);
  color: var(--yellow); font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.pp-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--yellow); flex-shrink: 0;
}
.pp-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(22px, 2.6vw, 34px); font-weight: 900;
  line-height: 1.12; color: #fff; margin-bottom: 16px;
  white-space: nowrap;
}
.pp-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.pp-stars { color: var(--yellow); font-size: 18px; letter-spacing: 2px; }
.pp-rating-text { font-size: 13px; color: rgba(255,255,255,.72); }
.pp-rating-text strong { color: #fff; }
.pp-desc {
  font-size: 15.5px; line-height: 1.72;
  color: rgba(255,255,255,.80); margin-bottom: 24px; max-width: 520px;
}
.pp-bullets { list-style: none; margin-bottom: 30px; display: flex; flex-direction: column; gap: 9px; }
.pp-bullets li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,.85); }
.pp-check { color: var(--yellow); font-size: 14px; font-weight: 700; flex-shrink: 0; margin-top: 2px; }

.pp-cta-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 12px; align-items: center; }
.btn-pp-download {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--green-dl); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 16px;
  padding: 14px 32px; border-radius: 16px; text-decoration: none;
  border: 2px solid var(--green-dl); line-height: 1;
  transition: background .25s, transform .2s;
  box-shadow: 0 5px 22px rgba(2,172,7,.32); min-width: 180px;
}
.btn-pp-download .btn-main {
  display: flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 800;
}
.btn-pp-download .btn-main svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }
.btn-pp-download:hover { background: #038e07; border-color: #038e07; transform: translateY(-2px); color: #fff; }
.btn-pp-sub { font-size: 11px; font-weight: 500; opacity: .85; font-family: 'Open Sans', sans-serif; letter-spacing: .3px; }
.btn-pp-buy {
  display: inline-flex; flex-direction: column; align-items: center; gap: 4px;
  background: var(--red); color: #fff;
  font-family: 'Raleway', sans-serif; font-weight: 800; font-size: 16px;
  padding: 14px 32px; border-radius: 16px; text-decoration: none;
  border: 2px solid var(--red); line-height: 1;
  transition: background .25s, transform .2s;
  box-shadow: 0 5px 22px rgba(220,53,69,.30); min-width: 180px;
}
.btn-pp-buy:hover { background: #bb2d3b; border-color: #bb2d3b; transform: translateY(-2px); color: #fff; }
.btn-pp-price { font-size: 13px; font-weight: 500; opacity: .88; font-family: 'Open Sans', sans-serif; }
.pp-cta-note { font-size: 11.5px; color: rgba(255,255,255,.50); margin-bottom: 24px; line-height: 1.5; }

.pp-trust-row { display: flex; flex-wrap: wrap; gap: 8px; }
.pp-trust-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.22);
  border-radius: 50px; padding: 6px 14px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.82);
  transition: background .2s;
}
.pp-trust-chip:hover { background: rgba(255,255,255,.18); }
.pp-trust-chip svg { fill: var(--light-blue); flex-shrink: 0; }

/* Hero right — clean screenshot */
.pp-hero-right { display: flex; justify-content: center; align-items: center; }
.pp-screenshot-wrap {
  width: 100%; max-width: 580px; border-radius: 12px; overflow: hidden;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15), 0 12px 40px rgba(0,0,0,.35), 0 32px 80px rgba(0,0,0,.25);
  animation: ppFadeUp .7s .2s ease both; position: relative;
}
.pp-screen-chrome {
  background: #1e2a3a; border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 10px 14px; display: flex; align-items: center; gap: 6px;
}
.sc-dot { width: 11px; height: 11px; border-radius: 50%; }
.sc-dot.red   { background: #ff5f56; }
.sc-dot.amber { background: #ffbd2e; }
.sc-dot.green { background: #27c93f; }
.sc-title { font-size: 11px; color: rgba(255,255,255,.50); margin-left: 8px; font-family: 'Open Sans', sans-serif; }
.pp-screenshot { width: 100%; display: block; }
.pp-version-chip {
  position: absolute; bottom: 12px; right: 12px;
  background: var(--yellow); color: #000;
  font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 800;
  padding: 3px 12px; border-radius: 50px; letter-spacing: .5px;
}
@keyframes ppFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Formats strip ── */
.formats-strip {
  background: #fff;
  border-top: 3px solid var(--blue);
  border-bottom: 3px solid var(--blue);
  padding: 13px 0;
  overflow: hidden;
}
.formats-strip-inner {
  display: flex; align-items: center; gap: 0;
}
.formats-label {
  font-family: 'Raleway', sans-serif;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-dark); flex-shrink: 0; white-space: nowrap;
  padding: 0 20px 0 5%;
  border-right: 2px solid var(--border-blue);
}
.formats-logos { display: none; }
.formats-track-wrap {
  flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 4%, #000 96%, transparent 100%);
}
.formats-track {
  display: flex; align-items: center; gap: 24px;
  width: max-content; padding: 2px 24px;
  animation: formatsMarquee 22s linear infinite;
}
.formats-track:hover { animation-play-state: paused; }
@keyframes formatsMarquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.formats-track img {
  height: 30px; object-fit: contain; flex-shrink: 0;
  filter: opacity(.85); transition: transform .2s, filter .2s;
}
.formats-track img:hover { transform: scale(1.15); filter: opacity(1); }
.formats-more {
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 800;
  color: var(--blue); text-decoration: none; white-space: nowrap; flex-shrink: 0;
  background: var(--bg-blue); padding: 6px 14px; border-radius: 50px;
  border: 1.5px solid var(--border-blue); margin: 0 5% 0 16px;
  transition: background .2s, color .2s, border-color .2s;
}
.formats-more:hover { background: var(--blue); color: #fff; border-color: var(--blue); }

/* ── Stats bar ── */
.stats-bar { background: var(--blue-hero); padding: 22px 5%; }
.stats-bar-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: center; }
.stat-pill { display: flex; flex-direction: column; align-items: center; padding: 0 36px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-pill:last-child { border-right: none; }
.stat-pill strong { font-family: 'Raleway', sans-serif; font-size: 26px; font-weight: 900; color: var(--yellow); line-height: 1; }
.stat-pill span { font-size: 12px; color: rgba(255,255,255,.65); font-weight: 500; margin-top: 4px; white-space: nowrap; }
.stat-divider { display: none; }

/* ── Section commons ── */
.pp-section     { padding: 72px 5%; background: #fff; }
.pp-section-alt { padding: 72px 5%; background: var(--bg-light); }
.pp-container   { max-width: 1200px; margin: 0 auto; }
.pp-section-head { text-align: center; margin-bottom: 48px; }
.pp-eyebrow {
  display: block; font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--red); margin-bottom: 10px;
}
.pp-section-title { font-family: 'Raleway', sans-serif; font-size: clamp(22px, 3vw, 36px); font-weight: 900; color: var(--text-dark); margin-bottom: 12px; }
.pp-section-sub { font-size: 15px; color: var(--text-body); line-height: 1.65; max-width: 600px; margin: 0 auto; }

/* ── Features grid ── */
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature-card {
  background: #fff; border: 2px solid var(--border-blue); border-radius: 12px;
  padding: 26px 22px 22px; display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(13,110,253,.05);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.feature-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); opacity: 0; transition: opacity .25s;
}
.feature-card:hover::after { opacity: 1; }
.feature-card:hover { border-color: var(--blue); box-shadow: 0 8px 30px rgba(13,110,253,.12); transform: translateY(-5px); }
.feature-icon {
  width: 48px; height: 48px; border-radius: 12px; background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px; transition: background .25s;
}
.feature-icon svg { width: 24px; height: 24px; fill: var(--blue); transition: fill .25s; }
.feature-card:hover .feature-icon { background: var(--blue); }
.feature-card:hover .feature-icon svg { fill: #fff; }
.feature-card h3 { font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; line-height: 1.35; }
.feature-card p  { font-size: 13.5px; line-height: 1.65; color: var(--text-body); flex: 1; }

/* ── Steps ── */
.steps-row { display: grid; grid-template-columns: 1fr 40px 1fr 40px 1fr; align-items: start; gap: 0; }
.step-card {
  background: #fff; border: 2px solid var(--border-blue); border-radius: 14px;
  padding: 32px 24px 26px; text-align: center;
  box-shadow: 0 2px 16px rgba(13,110,253,.05);
  transition: border-color .25s, transform .25s, box-shadow .25s; position: relative;
}
.step-card:hover { border-color: var(--blue); transform: translateY(-5px); box-shadow: 0 8px 28px rgba(13,110,253,.12); }
.step-num {
  position: absolute; top: -15px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 900;
  padding: 4px 16px; border-radius: 50px; letter-spacing: 1px; white-space: nowrap;
}
.step-icon {
  width: 60px; height: 60px; border-radius: 16px; background: var(--bg-blue);
  display: flex; align-items: center; justify-content: center;
  margin: 4px auto 18px; transition: background .25s;
}
.step-card:hover .step-icon { background: var(--blue); }
.step-icon svg { width: 28px; height: 28px; fill: var(--blue); transition: fill .25s; }
.step-card:hover .step-icon svg { fill: #fff; }
.step-card h3 { font-family: 'Raleway', sans-serif; font-size: 16px; font-weight: 800; color: var(--text-dark); margin-bottom: 10px; }
.step-card p   { font-size: 13.5px; line-height: 1.65; color: var(--text-body); }
.step-arrow { display: flex; align-items: center; justify-content: center; padding-top: 60px; color: var(--border-blue); font-size: 28px; font-weight: 300; user-select: none; }

/* ── Deep-dive (order-based reverse, no RTL) ── */
.deepdive-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-bottom: 68px; }
.deepdive-row:last-child { margin-bottom: 0; }
.deepdive-row-rev .deepdive-img  { order: 2; }
.deepdive-row-rev .deepdive-text { order: 1; }
.deepdive-img img { width: 100%; border-radius: 14px; box-shadow: 0 6px 32px rgba(13,110,253,.10), 0 2px 8px rgba(0,0,0,.06); border: 2px solid var(--border-blue); display: block; }
.deepdive-tag {
  display: inline-block; font-family: 'Raleway', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue);
  background: var(--bg-blue); border-radius: 50px; padding: 4px 14px;
  margin-bottom: 14px; border: 1px solid var(--border-blue);
}
.deepdive-text h3 { font-family: 'Raleway', sans-serif; font-size: clamp(20px, 2.2vw, 26px); font-weight: 900; color: var(--text-dark); margin-bottom: 14px; line-height: 1.3; }
.deepdive-text p  { font-size: 15px; line-height: 1.72; color: var(--text-body); margin-bottom: 20px; }
.deepdive-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.deepdive-list li { font-size: 14px; color: var(--text-body); padding-left: 22px; position: relative; line-height: 1.5; }
.deepdive-list li::before { content: '✔'; position: absolute; left: 0; color: var(--blue); font-weight: 700; font-size: 12px; margin-top: 2px; }

/* ── Comparison table ── */
.comparison-wrap { overflow-x: auto; border-radius: 14px; box-shadow: 0 4px 28px rgba(13,110,253,.09); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.comparison-table thead th { padding: 20px 24px; text-align: center; background: var(--bg-light); border-bottom: 2px solid var(--border-blue); }
.comparison-table thead th:first-child { text-align: left; }
.comparison-table thead th.plan-recommended { background: var(--blue); }
.comparison-table thead th.plan-recommended .plan-name  { color: #fff; }
.comparison-table thead th.plan-recommended .plan-price { color: #fff; }
.comparison-table thead th.plan-recommended .plan-price small { color: rgba(255,255,255,.75); }
.comparison-table tbody td { padding: 14px 24px; text-align: center; font-size: 14px; border-bottom: 1px solid var(--border-blue); color: var(--text-body); }
.comparison-table tbody td:first-child { text-align: left; font-weight: 600; color: var(--text-dark); background: #fff; }
.plan-recommended { background: #eef5ff; }
.comparison-table tbody tr:hover td { background: var(--bg-blue2); }
.comparison-table tbody tr:hover td:first-child { background: var(--bg-blue2); }
.comparison-table tbody tr:last-child td { border-bottom: none; }
.plan-name  { display: block; font-family: 'Raleway', sans-serif; font-size: 15px; font-weight: 800; color: var(--text-dark); }
.free-plan  { color: var(--text-muted) !important; }
.paid-plan  { color: #fff !important; }
.plan-price { display: block; font-family: 'Raleway', sans-serif; font-size: 24px; font-weight: 900; color: var(--text-dark); margin-top: 6px; }
.plan-price small { font-size: 13px; font-weight: 500; color: var(--text-muted); }
.plan-badge { display: inline-block; background: var(--yellow); color: #000; font-family: 'Raleway', sans-serif; font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; padding: 3px 10px; border-radius: 50px; margin-bottom: 8px; }
.td-yes   { color: var(--green-dl); font-weight: 700; font-size: 18px; }
.td-no    { color: #ddd; font-size: 18px; }
.td-limit { color: var(--text-muted); font-size: 13px; font-style: italic; }
.comparison-cta-row td { padding: 22px 24px; background: var(--bg-light) !important; }
.comparison-cta-row td.plan-recommended { background: #ddeeff !important; }
.btn-comp-free { display: inline-block; background: transparent; color: var(--blue); font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px; padding: 10px 26px; border-radius: 50px; text-decoration: none; border: 2px solid var(--blue); transition: background .2s, color .2s; }
.btn-comp-free:hover { background: var(--blue); color: #fff; }
.btn-comp-buy { display: inline-block; background: var(--red); color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 14px; padding: 10px 26px; border-radius: 50px; text-decoration: none; border: 2px solid var(--red); transition: background .2s; }
.btn-comp-buy:hover { background: #bb2d3b; color: #fff; }

/* ── System requirements ── */
.sysreq-wrap { display: grid; grid-template-columns: 1fr 220px; gap: 32px; align-items: start; }
.sysreq-table { width: 100%; border-collapse: collapse; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 18px rgba(13,110,253,.07); }
.sysreq-table th, .sysreq-table td { padding: 13px 18px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border-blue); vertical-align: top; }
.sysreq-table th { background: var(--bg-blue); color: var(--blue); font-family: 'Raleway', sans-serif; font-weight: 800; width: 190px; white-space: nowrap; }
.sysreq-table td { background: #fff; color: var(--text-body); line-height: 1.55; }
.sysreq-table tr:last-child th, .sysreq-table tr:last-child td { border-bottom: none; }
.sysreq-table tr:hover td { background: var(--bg-blue2); }
.sysreq-os { display: flex; flex-direction: column; gap: 8px; }
.sysreq-os-title { font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 800; color: var(--text-muted); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.os-chip { display: flex; align-items: center; gap: 8px; background: #fff; border: 1.5px solid var(--border-blue); border-radius: 8px; padding: 9px 14px; font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 700; color: var(--text-dark); transition: border-color .2s, background .2s, transform .2s; }
.os-chip:hover { border-color: var(--blue); background: var(--bg-blue); transform: translateX(4px); }
.os-chip svg { width: 15px; height: 15px; fill: var(--blue); flex-shrink: 0; }

/* ── Reviews ── */
.overall-rating { display: flex; align-items: center; gap: 18px; justify-content: center; margin-top: 18px; padding: 20px 28px; background: var(--bg-blue2); border: 2px solid var(--border-blue); border-radius: 14px; width: fit-content; margin-left: auto; margin-right: auto; }
.overall-score { font-family: 'Raleway', sans-serif; font-size: 56px; font-weight: 900; color: var(--blue); line-height: 1; }
.overall-stars { font-size: 24px; color: var(--yellow); }
.overall-based { font-size: 13px; color: var(--text-muted); margin-top: 4px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 36px; }
.review-card { background: #fff; border: 2px solid var(--border-blue); border-radius: 14px; padding: 26px; display: flex; flex-direction: column; gap: 14px; box-shadow: 0 2px 16px rgba(13,110,253,.05); transition: border-color .25s, box-shadow .25s, transform .25s; position: relative; border-top: 3px solid var(--blue); }
.review-card:hover { border-color: var(--blue); box-shadow: 0 8px 28px rgba(13,110,253,.12); transform: translateY(-4px); }
.review-card::before { content: '\201C'; font-family: Georgia, serif; font-size: 72px; line-height: 1; color: var(--bg-blue); position: absolute; top: 10px; right: 18px; pointer-events: none; }
.review-top { display: flex; align-items: center; justify-content: space-between; }
.review-stars { color: var(--yellow); font-size: 15px; letter-spacing: 2px; }
.review-date  { font-size: 11px; color: var(--text-muted); background: var(--bg-light); padding: 2px 8px; border-radius: 50px; }
.review-quote { font-size: 14px; line-height: 1.72; color: var(--text-body); font-style: italic; flex: 1; }
.review-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border-blue); }
.review-author img { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--light-blue); object-fit: cover; }
.review-name { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 800; color: var(--text-dark); }
.review-loc  { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ── FAQ 2-col layout ── */
.pp-faq-wrap { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.pp-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pp-faq-item { background: #fff; border: 2px solid var(--border-blue); border-radius: 10px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.pp-faq-item.open { border-color: var(--blue); box-shadow: 0 4px 20px rgba(13,110,253,.10); }
.pp-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 20px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }
.pp-faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: var(--bg-blue); color: var(--blue); font-size: 18px; line-height: 28px; text-align: center; transition: background .3s, transform .35s; font-style: normal; }
.pp-faq-item.open .pp-faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.pp-faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .3s ease; padding: 0 20px; }
.pp-faq-item.open .pp-faq-a { max-height: 300px; padding: 0 20px 18px; }
.pp-faq-a p { font-size: 14px; line-height: 1.75; color: var(--text-body); border-top: 1px solid var(--border-blue); padding-top: 14px; }

.pp-faq-panel { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 110px; }
.pp-faq-contact-card { background: var(--blue-hero); border-radius: 14px; padding: 28px 24px; text-align: center; color: #fff; }
.pp-faq-contact-icon { width: 52px; height: 52px; background: rgba(255,255,255,.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; }
.pp-faq-contact-icon svg { fill: #fff; width: 24px; height: 24px; }
.pp-faq-contact-card h3 { font-family: 'Raleway', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.pp-faq-contact-card p { font-size: 13px; color: var(--white-70); line-height: 1.6; margin-bottom: 18px; }
.pp-faq-contact-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--red); color: #fff; font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px; padding: 10px 22px; border-radius: 50px; text-decoration: none; border: 2px solid var(--red); transition: background .2s, transform .2s; }
.pp-faq-contact-btn:hover { background: #bb2d3b; border-color: #bb2d3b; color: #fff; transform: translateY(-2px); }
.pp-faq-stat-card { background: var(--bg-blue2); border: 2px solid var(--border-blue); border-radius: 14px; padding: 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pp-faq-stat { text-align: center; }
.pp-faq-stat-val { font-family: 'Raleway', sans-serif; font-size: 22px; font-weight: 900; color: var(--blue); line-height: 1; margin-bottom: 4px; }
.pp-faq-stat-lbl { font-size: 11px; color: var(--text-muted); font-weight: 600; }

/* ── Related products ── */
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card { display: flex; align-items: center; gap: 16px; background: #fff; border: 2px solid var(--border-blue); border-radius: 12px; padding: 20px 18px; text-decoration: none; box-shadow: 0 2px 14px rgba(13,110,253,.05); transition: border-color .25s, box-shadow .25s, transform .25s; border-left: 4px solid var(--blue); }
.related-card:hover { border-color: var(--blue); box-shadow: 0 8px 24px rgba(13,110,253,.12); transform: translateY(-3px); }
.related-card img { width: 50px; height: 50px; object-fit: contain; flex-shrink: 0; }
.related-info { flex: 1; min-width: 0; }
.related-name  { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 4px; }
.related-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.4; margin-bottom: 6px; }
.related-price { font-family: 'Raleway', sans-serif; font-size: 13px; font-weight: 800; color: var(--blue); }
.related-arrow { font-size: 20px; color: var(--border-blue); flex-shrink: 0; transition: color .2s, transform .2s; }
.related-card:hover .related-arrow { color: var(--blue); transform: translateX(4px); }

/* ── Bottom CTA ── */
.pp-bottom-cta { background: var(--blue-hero); padding: 60px 5%; position: relative; overflow: hidden; }
.pp-bottom-cta::before { content: ''; position: absolute; top: -80px; right: -80px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 70%); pointer-events: none; }
.pp-cta-box { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; position: relative; z-index: 2; }
.pp-cta-box-left h2 { font-family: 'Raleway', sans-serif; font-size: clamp(22px, 3vw, 30px); font-weight: 900; color: #fff; margin-bottom: 10px; }
.pp-cta-box-left p { font-size: 15px; color: rgba(255,255,255,.72); }
.pp-cta-box-right { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .sysreq-wrap   { grid-template-columns: 1fr; }
  .sysreq-os     { flex-direction: row; flex-wrap: wrap; }
}
@media (max-width: 991px) {
  .pp-hero-inner  { grid-template-columns: 1fr; text-align: center; }
  .pp-hero-left   { align-items: center; }
  .pp-desc        { margin-left: auto; margin-right: auto; }
  .pp-bullets     { text-align: left; max-width: 500px; }
  .pp-trust-row   { justify-content: center; }
  .pp-cta-row     { justify-content: center; }
  .pp-badge       { margin-left: auto; margin-right: auto; }
  .steps-row      { grid-template-columns: 1fr; gap: 28px; }
  .step-arrow     { display: none; }
  .deepdive-row, .deepdive-row-rev { grid-template-columns: 1fr; }
  .deepdive-row-rev .deepdive-img  { order: 0; }
  .deepdive-row-rev .deepdive-text { order: 0; }
  .reviews-grid   { grid-template-columns: 1fr 1fr; }
  .related-grid   { grid-template-columns: 1fr; }
  .pp-faq-wrap    { grid-template-columns: 1fr; }
  .pp-faq-panel   { position: static; }
  .pp-cta-box     { flex-direction: column; text-align: center; }
  .pp-cta-box-right { justify-content: center; }
  .stats-bar-inner { flex-wrap: wrap; gap: 12px; justify-content: center; }
  .stat-pill { border-right: none; padding: 8px 20px; border: 1px solid rgba(255,255,255,.15); border-radius: 50px; }
}
@media (max-width: 640px) {
  .pp-hero { padding: 44px 5% 40px; }
  .features-grid { grid-template-columns: 1fr; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .formats-logos { display: none; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; font-size: 13px; }
  .sticky-bar-left .sticky-name        { display: none; }
  .sticky-bar-left .sticky-rating-row  { display: none; }
  .pp-cta-box-right { flex-direction: column; align-items: center; width: 100%; }
  .btn-pp-download, .btn-pp-buy { width: 100%; justify-content: center; max-width: 280px; }
}

/* ── Fix 3: Blog internal links section ── */
.pp-blog {
  padding: 64px 5%;
  background: var(--bg-light);
  position: relative;
}
.pp-blog::before {
  content: ''; position: absolute;
  top: 0; left: 5%; right: 5%; height: 1px;
  background: linear-gradient(to right, transparent, var(--border-blue), transparent);
}
.pp-blog-inner { max-width: 1200px; margin: 0 auto; }
.pp-blog-head {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.pp-blog-head-left { }
.pp-blog-eyebrow {
  display: block; font-family: 'Raleway', sans-serif;
  font-size: 12px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.pp-blog-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(20px, 2.4vw, 28px); font-weight: 900;
  color: var(--text-dark); margin-bottom: 0;
}
.pp-blog-all {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 13px;
  color: var(--blue); text-decoration: none; white-space: nowrap;
  border: 1.5px solid var(--blue); border-radius: 50px; padding: 8px 18px;
  transition: background .2s, color .2s;
}
.pp-blog-all:hover { background: var(--blue); color: #fff; }
.pp-blog-all .arrow { transition: transform .2s; }
.pp-blog-all:hover .arrow { transform: translateX(4px); }

.pp-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pp-blog-card {
  background: #fff; border: 2px solid var(--border-blue); border-radius: 12px;
  overflow: hidden; display: flex; flex-direction: column;
  box-shadow: 0 2px 16px rgba(13,110,253,.05);
  transition: border-color .25s, box-shadow .25s, transform .25s;
  text-decoration: none;
}
.pp-blog-card:hover {
  border-color: var(--blue); box-shadow: 0 8px 28px rgba(13,110,253,.12);
  transform: translateY(-4px);
}
.pp-blog-card-body { padding: 20px 20px 18px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.pp-blog-tag {
  display: inline-block; font-family: 'Raleway', sans-serif;
  font-size: 10px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); background: var(--bg-blue); border-radius: 50px;
  padding: 3px 10px; width: fit-content;
}
.pp-blog-card-title {
  font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 800;
  color: var(--text-dark); line-height: 1.4; flex: 1;
}
.pp-blog-card:hover .pp-blog-card-title { color: var(--blue); }
.pp-blog-card-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted);
  padding-top: 10px; border-top: 1px solid var(--border-blue);
}
.pp-blog-card-meta svg { fill: var(--text-muted); flex-shrink: 0; }
.pp-blog-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: 'Raleway', sans-serif; font-size: 12px; font-weight: 700;
  color: var(--red); margin-top: 4px;
}

@media (max-width: 991px) {
  .pp-blog-grid { grid-template-columns: 1fr 1fr; }
  .pp-title { white-space: normal; font-size: clamp(24px, 4vw, 36px); }
}
@media (max-width: 640px) {
  .pp-blog-grid { grid-template-columns: 1fr; }
  .pp-blog-head { flex-direction: column; align-items: flex-start; }
}
