/* =============================================================
   ProcurementAIAgents.com — Shared Design System
   Teal dark theme · DM Sans + JetBrains Mono
   https://procurementaiagents.com/
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700;9..40,800&family=JetBrains+Mono:wght@400;500&display=swap');

/* =============================================================
   DESIGN TOKENS
   ============================================================= */
:root {
  /* Backgrounds */
  --bg:    #0B0F1A;
  --bg2:   #101625;
  --bg3:   #161C2E;
  --card:  #131929;
  --card-h:#1A2138;

  /* Text */
  --cream:  #F0EDE6;
  --cream2: #C8C3B8;
  --cream3: #8A857C;

  /* Accent — teal */
  --acc:   #0EA5E9;
  --acc-h: #38BDF8;
  --acc-s: rgba(14,165,233,.08);
  --acc-b: rgba(14,165,233,.18);

  /* Semantic colours */
  --grn:   #38BDF8;
  --grn-s: rgba(52,211,153,.10);
  --amber: #FBBF24;
  --red:   #FB7185;

  /* Borders */
  --bd:  rgba(255,255,255,.06);
  --bd2: rgba(255,255,255,.10);

  /* Misc */
  --r:    14px;
  --fm:   'DM Sans', system-ui, sans-serif;
  --mono: 'JetBrains Mono', monospace;
}

/* =============================================================
   RESET & BASE
   ============================================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--fm);
  background: var(--bg);
  color: var(--cream2);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a {
  color: var(--acc);
  text-decoration: none;
  transition: color .2s;
}
a:hover { color: var(--acc-h); }

/* =============================================================
   LAYOUT
   ============================================================= */
.c {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--fm);
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 10px;
  font-size: .9375rem;
  transition: all .25s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Accent / primary */
.btn-a {
  background: var(--acc);
  color: #fff;
}
.btn-a:hover {
  background: var(--acc-h);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(14,165,233,.25);
}

/* Ghost / secondary */
.btn-g {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--bd2);
}
.btn-g:hover {
  border-color: var(--acc-b);
  color: var(--acc);
}

/* Small modifier */
.btn-sm { padding: 10px 15px; font-size: .8125rem; }

/* =============================================================
   NAVIGATION — sticky, frosted
   ============================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(11,15,26,.88);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--bd);
}

.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.nb {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s;
}
.nb:hover { color: var(--acc); }

.nls { display: flex; gap: 2px; }

.nl {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--cream3);
  padding: 7px 13px;
  border-radius: 8px;
  transition: color .15s, background .15s;
  text-decoration: none;
}
.nl:hover {
  color: var(--cream);
  background: rgba(255,255,255,.04);
}

.nr { display: flex; gap: 8px; align-items: center; }

.nr .login {
  font-size: .8125rem;
  font-weight: 500;
  color: var(--cream3);
  padding: 7px 13px;
}

/* ---- hamburger button (hidden on desktop) ---- */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: 1px solid var(--bd2);
  border-radius: 8px;
  cursor: pointer;
  padding: 7px 9px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .25s, opacity .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- mobile breakpoint ---- */
@media (max-width: 768px) {
  .nav-burger { display: flex; }

  /* hide desktop CTAs */
  .nr .btn { display: none; }

  /* slide-down mobile menu */
  .nls {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 4px;
    background: rgba(11,15,26,.97);
    backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid var(--bd2);
    padding: 12px 20px 20px;
    z-index: 99;
    box-shadow: 0 16px 40px rgba(0,0,0,.5);
  }
  .nls.open { display: flex; }

  /* bigger tap targets on mobile */
  .nls .nl {
    font-size: .9375rem;
    font-weight: 500;
    color: var(--cream2);
    padding: 13px 16px;
    border-radius: 10px;
    border-bottom: 1px solid var(--bd);
  }
  .nls .nl:last-child { border-bottom: none; }
  .nls .nl:hover, .nls .nl:active {
    background: var(--acc-s);
    color: var(--cream);
  }

  /* mobile CTA row at bottom of dropdown */
  .nls .mob-ctas {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid var(--bd);
  }
  .nls .mob-ctas .btn { flex: 1; justify-content: center; font-size: .875rem; padding: 11px 14px; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  padding: 100px 0 72px;
  border-bottom: 1px solid var(--bd);
  overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .10;
  filter: saturate(.4);
}

.hero-content { position: relative; z-index: 1; }

/* Pulsing eyebrow chip */
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--acc);
  letter-spacing: .02em;
  margin-bottom: 15px;
}
.hero-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--grn);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .3; }
}

h1 {
  font-size: clamp(2.25rem, 4.5vw, 3.25rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 15px;
  max-width: 780px;
}
h1 em {
  font-style: italic;
  color: var(--acc);
}

.hero-sub {
  font-size: 1.0625rem;
  color: var(--cream2);
  max-width: 615px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-acts {
  display: flex;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

/* Stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  margin-bottom: 28px;
}

.stat {
  padding: 15px 24px;
  border-right: 1px solid var(--bd);
  text-align: center;
}
.stat:last-child { border-right: none; }

.stat-n {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--cream);
  letter-spacing: -.03em;
  font-family: var(--mono);
}
.stat-l {
  font-size: .625rem;
  color: var(--cream3);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 2px;
}

/* Trust pills */
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pill {
  font-size: .6875rem;
  font-weight: 500;
  color: var(--cream3);
  background: rgba(255,255,255,.03);
  border: 1px solid var(--bd);
  padding: 5px 14px;
  border-radius: 100px;
}

/* =============================================================
   SECTIONS
   ============================================================= */
.sec {
  padding: 80px 0;
  border-bottom: 1px solid var(--bd);
}
.sec-alt { background: var(--bg2); }

/* Eyebrow label */
.ey {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--acc);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}

/* Section title */
.st {
  font-size: clamp(1.5rem, 2.8vw, 2.125rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 8px;
}

/* Section subtitle */
.ss {
  color: var(--cream3);
  max-width: 560px;
  font-size: .9375rem;
  line-height: 1.65;
}

/* Section header row (title left, CTA right) */
.sh {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 15px;
  margin-bottom: 40px;
}

/* =============================================================
   CATEGORY CARDS — image overlay
   ============================================================= */
.cat-g {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.cat {
  border-radius: var(--r);
  overflow: hidden;
  position: relative;
  height: 180px;
  display: block;
  text-decoration: none;
  transition: transform .3s;
}
.cat:hover { transform: scale(1.02); }

.cat img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.55) saturate(.8);
}
.cat:hover img {
  transform: scale(1.06);
  filter: brightness(.65);
}

.cat-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, transparent 60%);
}

.cat-info {
  position: absolute;
  bottom: 0;
  padding: 16px;
  color: #fff;
  z-index: 1;
}
.cat-n { font-size: .9375rem; font-weight: 700; }
.cat-c { font-size: .625rem; color: rgba(255,255,255,.55); margin-top: 2px; }

/* =============================================================
   AGENT REVIEW CARDS
   ============================================================= */
.ag-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.ag {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s;
  display: block;
  text-decoration: none;
  color: var(--cream2);
}
.ag:hover {
  border-color: var(--acc-b);
  transform: translateY(-3px);
}

.ag-img {
  height: 160px;
  overflow: hidden;
  position: relative;
}
.ag-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.6) saturate(.7);
}
.ag:hover .ag-img img {
  transform: scale(1.05);
  filter: brightness(.7);
}

.ag-img-ov {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--card) 0%, transparent 60%);
}

.ag-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: .5625rem;
  font-weight: 700;
  color: #fff;
  background: var(--acc);
  padding: 3px 10px;
  border-radius: 6px;
  text-transform: uppercase;
  letter-spacing: .02em;
}

.ag-body { padding: 15px; }

.ag-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2px;
}
.ag-cat {
  font-size: .6875rem;
  color: var(--cream3);
  margin-bottom: 10px;
}
.ag-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .8125rem;
  color: var(--cream3);
}
.ag-rating { color: var(--amber); font-weight: 600; }
.ag-price {
  margin-left: auto;
  font-weight: 600;
  color: var(--cream);
  font-family: var(--mono);
  font-size: .8125rem;
}

/* =============================================================
   NUMBERED DIFFERENTIATORS (01–04)
   ============================================================= */
.diffs {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.diff {
  padding: 36px 0;
  border-bottom: 1px solid var(--bd);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
}
.diff:last-child { border-bottom: none; }

.diff-n {
  font-family: var(--mono);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--bg3);
  line-height: 1;
  padding-top: 4px;
}
.diff-t {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}
.diff-d {
  font-size: .9375rem;
  color: var(--cream2);
  line-height: 1.65;
}

/* =============================================================
   COMPARISON PREVIEW CARDS
   ============================================================= */
.comp-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.comp {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 24px;
  transition: all .25s;
  display: block;
  text-decoration: none;
  color: var(--cream2);
}
.comp:hover {
  border-color: var(--acc-b);
  transform: translateY(-2px);
}

.comp-vs {
  font-family: var(--mono);
  font-size: .625rem;
  color: var(--acc);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
  display: block;
}
.comp-t {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 6px;
}
.comp-d {
  font-size: .8125rem;
  color: var(--cream3);
  line-height: 1.5;
}

/* =============================================================
   TESTIMONIALS with headshots
   ============================================================= */
.test-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.test {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 28px;
  transition: transform .2s;
}
.test:hover { transform: translateY(-2px); }

.test-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}

.test-av {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--bd2);
}
.test-av img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.test-info {
  font-size: .875rem;
  font-weight: 600;
  color: var(--cream);
}
.test-info span {
  display: block;
  font-size: .75rem;
  color: var(--cream3);
  font-weight: 400;
}

.test-text {
  font-size: .9375rem;
  color: var(--cream2);
  line-height: 1.6;
  font-style: italic;
}

/* =============================================================
   BLOG CARDS with cover images
   ============================================================= */
.blog-g {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.blog {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: all .25s;
  display: block;
  text-decoration: none;
  color: var(--cream2);
}
.blog:hover {
  border-color: var(--acc-b);
  transform: translateY(-2px);
}

.blog-img { height: 170px; overflow: hidden; }
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s;
  filter: brightness(.65);
}
.blog:hover .blog-img img {
  transform: scale(1.04);
  filter: brightness(.75);
}

.blog-body { padding: 22px; }

.blog-cat {
  font-family: var(--mono);
  font-size: .5625rem;
  color: var(--acc);
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-bottom: 8px;
  display: block;
}
.blog-t {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 6px;
}
.blog-d {
  font-size: .8125rem;
  color: var(--cream3);
  line-height: 1.5;
  margin-bottom: 10px;
}
.blog-meta {
  font-family: var(--mono);
  font-size: .625rem;
  color: var(--cream3);
}

/* =============================================================
   CTA SECTION
   ============================================================= */
.cta-sec {
  position: relative;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.cta-bg { position: absolute; inset: 0; }
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .06;
  filter: saturate(.3);
}

.cta-content { position: relative; z-index: 1; }

.cta-ey {
  font-family: var(--mono);
  font-size: .6875rem;
  color: var(--acc);
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: block;
}
.cta-h {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.12;
  letter-spacing: -.03em;
  margin-bottom: 12px;
}
.cta-h em { font-style: italic; color: var(--acc); }
.cta-p {
  color: var(--cream3);
  max-width: 540px;
  margin: 0 auto 28px;
  font-size: 1rem;
}

/* Newsletter inline form */
.nl-box {
  max-width: 480px;
  margin: 40px auto 0;
  text-align: center;
}
.nl-box p {
  font-size: .875rem;
  color: var(--cream3);
  margin-bottom: 12px;
}
.nl-f { display: flex; gap: 6px; }
.nl-i {
  flex: 1;
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 8px;
  padding: 11px 16px;
  color: var(--cream);
  font-family: var(--fm);
  font-size: .875rem;
  outline: none;
  transition: border-color .2s;
}
.nl-i:focus { border-color: var(--acc); }
.nl-i::placeholder { color: var(--cream3); }

/* =============================================================
   FOOTER — 5 columns
   ============================================================= */
.ft {
  padding: 56px 0 24px;
  border-top: 1px solid var(--bd);
}

.ft-g {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.ft-brand {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 10px;
}
.ft-d {
  font-size: .8125rem;
  color: var(--cream3);
  line-height: 1.6;
  margin-bottom: 12px;
}
.ft-checks {
  font-size: .6875rem;
  color: var(--cream3);
  line-height: 1.8;
}

.ft-h {
  font-family: var(--mono);
  font-size: .5rem;
  font-weight: 500;
  color: var(--cream3);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 12px;
}

.ft-col a {
  display: block;
  font-size: .8125rem;
  color: var(--cream3);
  padding: 3px 0;
  transition: color .12s;
}
.ft-col a:hover { color: var(--acc); }

.ft-bot {
  border-top: 1px solid var(--bd);
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  font-size: .6875rem;
  color: var(--cream3);
  opacity: .5;
}

/* =============================================================
   REVEAL ON SCROLL ANIMATION
   ============================================================= */
.rv {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity .5s ease, transform .5s ease;
}
.rv.on {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================================
   INNER PAGE UTILITIES
   ============================================================= */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: .625rem;
  color: var(--cream3);
  margin-bottom: 20px;
}
.breadcrumb a { color: var(--cream3); }
.breadcrumb a:hover { color: var(--acc); }
.breadcrumb .sep { opacity: .4; }

/* Score badge */
.score-badge {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  font-family: var(--mono);
  font-weight: 800;
  font-size: 2.5rem;
  color: var(--acc);
  line-height: 1;
}
.score-badge sup { font-size: 1rem; opacity: .6; }

/* Quick facts bar */
.qf-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  margin: 32px 0;
}
.qf-item {
  flex: 1;
  min-width: 120px;
  padding: 14px 20px;
  border-right: 1px solid var(--bd);
}
.qf-item:last-child { border-right: none; }
.qf-label {
  font-family: var(--mono);
  font-size: .5625rem;
  color: var(--cream3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.qf-val {
  font-size: .9375rem;
  font-weight: 600;
  color: var(--cream);
}

/* Scorecard grid */
.scorecard {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.sc-item {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: 10px;
  padding: 18px 20px;
  text-align: center;
}
.sc-label {
  font-family: var(--mono);
  font-size: .5625rem;
  color: var(--cream3);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 6px;
}
.sc-val {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--acc);
  font-family: var(--mono);
}

/* Pros / Cons lists */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 24px 0;
}
.pro-list, .con-list {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 24px;
}
.pro-list h3 { color: var(--grn); font-size: .9375rem; margin-bottom: 12px; }
.con-list h3 { color: var(--red); font-size: .9375rem; margin-bottom: 12px; }
.pro-list li, .con-list li {
  font-size: .9375rem;
  color: var(--cream2);
  line-height: 1.6;
  padding: 4px 0 4px 20px;
  position: relative;
  list-style: none;
}
.pro-list li::before { content: '+'; position: absolute; left: 0; color: var(--grn); font-weight: 700; }
.con-list li::before { content: '−'; position: absolute; left: 0; color: var(--red); font-weight: 700; }

/* Pricing table */
.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}
.pt-card {
  background: var(--card);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: 28px;
}
.pt-card.featured { border-color: var(--acc-b); }
.pt-tier { font-family: var(--mono); font-size: .625rem; color: var(--acc); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 6px; }
.pt-price { font-size: 1.75rem; font-weight: 800; color: var(--cream); font-family: var(--mono); margin-bottom: 4px; }
.pt-cadence { font-size: .75rem; color: var(--cream3); margin-bottom: 16px; }
.pt-feats { list-style: none; }
.pt-feats li { font-size: .875rem; color: var(--cream2); padding: 4px 0; border-bottom: 1px solid var(--bd); }
.pt-feats li:last-child { border-bottom: none; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 900px) {
  .stats            { grid-template-columns: repeat(2, 1fr); }
  .cat-g            { grid-template-columns: 1fr 1fr; }
  .ag-g             { grid-template-columns: 1fr; }
  .comp-g           { grid-template-columns: 1fr; }
  .test-g           { grid-template-columns: 1fr; }
  .blog-g           { grid-template-columns: 1fr; }
  .diff             { grid-template-columns: 60px 1fr; }
  .ft-g             { grid-template-columns: 1fr 1fr; }
  .pros-cons        { grid-template-columns: 1fr; }
  .scorecard        { grid-template-columns: repeat(2, 1fr); }
  .pricing-table    { grid-template-columns: 1fr; }
  .nls, .nr         { display: none; }
  .qf-bar           { flex-direction: column; }
  .qf-item          { border-right: none; border-bottom: 1px solid var(--bd); }
  .qf-item:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .c                { padding: 0 20px; }
  .cat-g            { grid-template-columns: 1fr; }
  .stats            { grid-template-columns: repeat(2, 1fr); }
  .ft-g             { grid-template-columns: 1fr; }
  .hero             { padding: 60px 0 48px; }
  .sh               { flex-direction: column; align-items: flex-start; }
  .hero-acts        { flex-direction: column; }
  .hero-acts .btn   { width: 100%; justify-content: center; }
}
