
/* =========================================================================
   TOKENS (copy of SAV homepage system)
   ========================================================================= */
:root {
  --sav-brand:       #004466;
  --sav-brand-light: #0A5F86;
  --sav-accent:      #F59E0B;
  --sav-accent-soft: #FEF3C7;
  --sav-cta:         #16A34A;
  --sav-cta-hover:   #15803D;
  --sav-danger:      #DC2626;
  --sav-danger-soft: #FEF2F2;
  --sav-ink-900:     #0F172A;
  --sav-ink-700:     #334155;
  --sav-ink-500:     #64748B;
  --sav-ink-300:     #CBD5E1;
  --sav-ink-100:     #E2E8F0;
  --sav-ink-50:      #F8FAFC;
  --sav-white:       #FFFFFF;
  --sav-radius:      10px;
  --sav-radius-sm:   6px;
  --sav-shadow-sm:   0 1px 2px rgba(15,23,42,.04), 0 1px 3px rgba(15,23,42,.06);
  --sav-shadow-md:   0 4px 12px rgba(15,23,42,.06), 0 2px 4px rgba(15,23,42,.04);
}

.sav-products-page { font-family: 'Inter', -apple-system, system-ui, sans-serif; line-height: 1.7; font-size: 17px; color: var(--sav-ink-900); }
/* Width comes from Astra's "Narrow Container" layout (750px, set in Customizer).
   This file owns the content styling only — container width is configured via
   the Astra page-layout UI for future pages. */
.sav-products-page {
  margin: 0 auto; padding: 0 24px 80px;
}
/* All content inherits the 720px wrapper — no per-element max-width overrides
   so p / h2 / h3 / lists / cards / tables / callouts / embeds / CTAs all align
   to the same reading column and the eye tracks down the same gutter. */
.sav-products-page > p { margin: 0 0 20px; color: var(--sav-ink-700); }
.sav-products-page > p strong { color: var(--sav-ink-900); font-weight: 700; }
.sav-products-page > p a { color: var(--sav-brand); text-decoration: underline; text-underline-offset: 2px; }

.sav-products-page h2.wp-block-heading {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800; line-height: 1.25;
  color: var(--sav-ink-900);
  margin: 64px 0 20px;
  letter-spacing: -0.02em;
  position: relative; padding-left: 16px;
}
.sav-products-page h2.wp-block-heading::before {
  content: ""; position: absolute; left: 0; top: 0.3em;
  width: 4px; height: 0.9em;
  background: var(--sav-accent); border-radius: 2px;
}
.sav-products-page h3.wp-block-heading {
  font-size: clamp(1.2rem, 1.8vw, 1.375rem);
  font-weight: 700; line-height: 1.3;
  color: var(--sav-ink-900);
  margin: 40px 0 16px;
}

/* =========================================================================
   PATTERN #1 — Category Card Grid (main categories)
   ========================================================================= */
.sav-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}
.sav-category-card {
  display: block;
  padding: 24px;
  background: var(--sav-white);
  border: 1px solid var(--sav-ink-100);
  border-radius: var(--sav-radius);
  text-decoration: none;
  color: inherit;
  transition: all .2s ease;
  position: relative;
  overflow: hidden;
}
.sav-category-card:hover {
  border-color: var(--sav-brand);
  box-shadow: var(--sav-shadow-md);
  transform: translateY(-2px);
}
.ast-single-post .entry-content .sav-products-page .sav-category-card,
.ast-single-post .entry-content .sav-products-page a.sav-mini-card,
.ast-single-post .entry-content .sav-products-page .sav-cta-block .sav-btn {
  text-decoration: none;
}
a.sav-mini-card { display: block; color: inherit; transition: border-color .15s ease, transform .15s ease, box-shadow .15s ease; }
a.sav-mini-card:hover { border-color: var(--sav-brand); transform: translateY(-1px); box-shadow: var(--sav-shadow-sm); }
.sav-category-card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: var(--sav-accent);
}
.sav-category-card .sav-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sav-accent-soft);
  color: var(--sav-brand);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 24px;
}
.sav-category-card .sav-icon .material-symbols-rounded {
  font-size: 26px;
}
.sav-category-card .sav-cat-name {
  font-size: 16px; font-weight: 700; color: var(--sav-brand);
  margin: 0 0 8px; letter-spacing: -0.01em;
}
.sav-category-card .sav-cat-value {
  font-size: 26px; font-weight: 800; color: var(--sav-ink-900);
  line-height: 1; margin: 0 0 6px; letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
}
.sav-category-card .sav-cat-rank {
  font-size: 13px; color: var(--sav-ink-500); line-height: 1.4;
}
.sav-category-card .sav-cat-arrow {
  font-size: 13px; font-weight: 600; color: var(--sav-brand);
  margin-top: 12px; display: inline-flex; align-items: center; gap: 4px;
}

/* =========================================================================
   PATTERN #2 — Detailed Section Card with H3 overlaid on ribbon (top)
   ========================================================================= */
.sav-section-card {
  border-left: 4px solid var(--sav-accent);
  background: var(--sav-ink-50);
  padding: 0;
  border-radius: 0 var(--sav-radius-sm) var(--sav-radius-sm) 0;
  margin: 24px 0 32px;
  overflow: hidden;
  box-shadow: var(--sav-shadow-sm);
}
.sav-section-card .sav-ribbon-header {
  height: 170px;
  background-size: cover;
  background-position: center;
  background-color: var(--sav-brand);
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 24px 28px;
}
.sav-section-card .sav-ribbon-header::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,68,102,.05) 0%, rgba(0,68,102,.55) 55%, rgba(0,68,102,.88) 100%);
}
.sav-products-page .sav-section-card .sav-ribbon-header h3,
.sav-products-page .sav-section-card .sav-ribbon-header h3.wp-block-heading {
  position: relative;
  z-index: 1;
  color: #fff;
  margin: 0;
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.sav-section-card .sav-card-body {
  padding: 22px 28px 24px;
}
.sav-section-card .sav-card-body p { color: var(--sav-ink-700); }
.sav-section-card .sav-card-body p:last-child { margin-bottom: 0; }
.sav-section-card .sav-card-body p a { color: var(--sav-brand); font-weight: 500; text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 640px) {
  .sav-section-card .sav-ribbon-header { height: 130px; padding: 18px 20px; }
  .sav-section-card .sav-card-body { padding: 18px 20px; }
}

/* =========================================================================
   PATTERN #3 — Mini Card Grid (secondary products)
   ========================================================================= */
.sav-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}
.sav-mini-card {
  background: var(--sav-white);
  border: 1px solid var(--sav-ink-100);
  border-radius: var(--sav-radius-sm);
  padding: 18px 20px;
  transition: border-color .15s ease;
}
.sav-mini-card:hover { border-color: var(--sav-ink-300); }
.sav-mini-card .sav-mini-title {
  font-size: 15px; font-weight: 700; color: var(--sav-brand); margin: 0 0 6px;
  display: flex; align-items: center; gap: 10px;
}
.sav-mini-card .sav-mini-title .sav-icon {
  width: 32px; height: 32px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--sav-accent-soft);
  color: var(--sav-brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.sav-mini-card .sav-mini-title .sav-icon .material-symbols-rounded {
  font-size: 20px;
}
.sav-mini-card .sav-mini-desc {
  font-size: 13px; color: var(--sav-ink-500); line-height: 1.5; margin: 0 0 8px;
}
.sav-mini-card .sav-mini-value {
  padding-top: 10px; border-top: 1px dashed var(--sav-ink-100);
  font-size: 18px; font-weight: 800; color: var(--sav-brand);
  letter-spacing: -0.02em;
  font-feature-settings: 'tnum';
}
.sav-mini-card .sav-mini-value sup {
  font-size: 12px; font-weight: 700; color: var(--sav-accent);
  margin-left: 1px;
}
.sav-mini-footnote {
  font-size: 12px; color: var(--sav-ink-500);
  margin: -20px 0 32px;
  font-style: italic;
}
.sav-mini-footnote sup {
  color: var(--sav-accent); font-weight: 700; font-style: normal;
  margin-right: 3px;
}

/* =========================================================================
   PATTERN #4 — Callout Box (amber / warning / info)
   ========================================================================= */
.sav-callout {
  display: flex; gap: 16px;
  padding: 18px 22px;
  border-radius: var(--sav-radius-sm);
  margin: 24px 0 32px;
  font-size: 15px; line-height: 1.6;
}
.sav-callout .sav-callout-icon { flex-shrink: 0; font-size: 22px; line-height: 1.4; }
.sav-callout p { margin: 0; }
.sav-callout p strong { color: inherit; font-weight: 700; }
.sav-callout.is-amber {
  background: var(--sav-accent-soft);
  border-left: 4px solid var(--sav-accent);
  color: #78350F;
}
.sav-callout.is-warning {
  background: var(--sav-danger-soft);
  border-left: 4px solid var(--sav-danger);
  color: #7F1D1D;
}
.sav-callout.is-info {
  background: #EFF6FF;
  border-left: 4px solid var(--sav-brand);
  color: var(--sav-brand);
}

/* =========================================================================
   PATTERN #5 — Feature Block (standout, like VinFast)
   Two layouts: with image (.has-image) or text-only
   ========================================================================= */
.sav-feature-block {
  background: linear-gradient(135deg, var(--sav-brand), var(--sav-brand-light));
  color: var(--sav-white);
  border-radius: var(--sav-radius);
  padding: 28px 32px;
  margin: 24px 0 32px;
  position: relative; overflow: hidden;
}
.sav-feature-block::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 60%);
  pointer-events: none;
}
.sav-feature-block.has-image {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sav-feature-block.has-image::before { display: none; }
.sav-feature-block .sav-feature-content {
  padding: 28px 32px;
  position: relative;
  isolation: isolate;
  order: 1;
}
.sav-feature-block .sav-feature-content::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(245,158,11,.18) 0%, transparent 60%);
  pointer-events: none; z-index: -1;
}
.sav-feature-block .sav-feature-image {
  order: 2;
  position: relative;
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center 65%;
}
.sav-feature-block .sav-feature-image .sav-feature-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 8px 16px;
  background: rgba(0,0,0,.55);
  color: rgba(255,255,255,.85);
  font-size: 12px; line-height: 1.4;
  font-style: italic;
  text-align: center;
}
@media (max-width: 640px) {
  .sav-feature-block .sav-feature-image { height: 220px; background-position: center 65%; }
}
.sav-feature-block .sav-feature-badge {
  display: inline-block; background: var(--sav-accent); color: #78350F;
  font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 4px; margin-bottom: 16px;
  position: relative; z-index: 1;
}
.sav-feature-block h3,
.sav-feature-block .sav-feature-title {
  color: #fff !important; margin: 0 0 12px !important;
  font-size: 1.5rem !important; font-weight: 800;
  line-height: 1.2; letter-spacing: -0.01em;
  position: relative; z-index: 1;
}
.sav-feature-block p:not(.sav-feature-title) {
  color: rgba(255,255,255,.9) !important; margin: 0 0 12px;
  position: relative; z-index: 1;
}
.sav-feature-block p:last-child:not(.sav-feature-title) { margin-bottom: 0; }
.sav-feature-block strong { color: var(--sav-accent); }
@media (max-width: 640px) {
  .sav-feature-block .sav-feature-content { padding: 22px 20px; }
}

/* =========================================================================
   PATTERN #12 — Flow Infographic (horizontal steps with arrows)
   ========================================================================= */
.sav-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr) ;
  gap: 0;
  margin: 24px 0 32px;
  background: var(--sav-ink-50);
  border-radius: var(--sav-radius);
  padding: 24px 20px;
  position: relative;
}
.sav-flow-step {
  text-align: center;
  padding: 12px 14px;
  position: relative;
}
.sav-flow-step + .sav-flow-step::before {
  content: "→";
  position: absolute;
  left: -12px; top: 28px;
  color: var(--sav-brand);
  font-size: 22px; font-weight: 700;
}
.sav-flow-icon {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--sav-white);
  border: 2px solid var(--sav-brand);
  color: var(--sav-brand);
  font-size: 22px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
}
.sav-flow-icon .material-symbols-rounded { font-size: 24px; }
.sav-flow-step.is-highlight .sav-flow-icon {
  background: var(--sav-accent);
  border-color: var(--sav-accent);
  color: #78350F;
}
.sav-flow-title {
  font-size: 13px; font-weight: 700; color: var(--sav-brand);
  text-transform: uppercase; letter-spacing: 0.04em;
  margin-bottom: 6px; line-height: 1.3;
}
.sav-flow-desc {
  font-size: 12px; color: var(--sav-ink-700); line-height: 1.5;
}
.sav-flow-step.is-highlight .sav-flow-title {
  color: #78350F;
}
.sav-flow-note {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--sav-ink-300);
  font-size: 13px; color: var(--sav-ink-500);
  text-align: center;
  font-style: italic;
}
.sav-flow-note strong { color: var(--sav-ink-900); font-style: normal; }

@media (max-width: 760px) {
  .sav-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .sav-flow-step {
    padding: 8px 14px; text-align: left;
    display: grid;
    grid-template-columns: 52px 1fr;
    grid-template-areas: "icon title" "icon desc";
    column-gap: 14px; row-gap: 4px;
    align-items: start;
  }
  .sav-flow-step + .sav-flow-step::before {
    content: "↓";
    left: 20px; top: -14px;
  }
  .sav-flow-icon { grid-area: icon; margin-bottom: 0; align-self: center; }
  .sav-flow-title { grid-area: title; text-align: left; align-self: end; }
  .sav-flow-desc  { grid-area: desc; text-align: left; align-self: start; }
}

/* =========================================================================
   PATTERN #6 — Icon-Title-Text Cards (3-col row)
   ========================================================================= */
.sav-icon-card-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}
.sav-icon-card {
  background: var(--sav-white);
  border: 1px solid var(--sav-ink-100);
  border-radius: var(--sav-radius);
  padding: 24px;
}
.sav-icon-card .sav-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--sav-accent-soft); color: var(--sav-brand);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
}
.sav-icon-card .sav-icon-wrap .material-symbols-rounded { font-size: 26px; }
.sav-icon-card h4,
.sav-icon-card .sav-icon-card-title {
  font-size: 15px; font-weight: 700; color: var(--sav-brand); margin: 0 0 8px;
  letter-spacing: -0.01em; line-height: 1.3;
}
.sav-icon-card p {
  font-size: 14px; line-height: 1.6; color: var(--sav-ink-700); margin: 0;
}

/* =========================================================================
   PATTERN #7 — Styled List (bullets with branded checkmarks)
   ========================================================================= */
.sav-styled-list {
  list-style: none; padding: 0; margin: 24px 0 32px;
  background: var(--sav-ink-50); border-radius: var(--sav-radius-sm);
  padding: 20px 24px;
}
.sav-styled-list li {
  padding: 10px 0 10px 32px;
  border-bottom: 1px solid var(--sav-ink-100);
  position: relative;
  font-size: 15px; line-height: 1.6; color: var(--sav-ink-700);
}
.sav-styled-list li:last-child { border-bottom: none; }
.sav-styled-list li::before {
  content: "✓"; position: absolute; left: 0; top: 10px;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--sav-cta); color: #fff;
  font-size: 13px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  line-height: 1;
}
.sav-styled-list li strong { color: var(--sav-ink-900); }

/* =========================================================================
   PATTERN #8 — Brand Tag Groups (sector → brand pills)
   ========================================================================= */
.sav-brand-groups {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin: 24px 0 32px;
}
.sav-brand-group {
  background: var(--sav-white);
  border: 1px solid var(--sav-ink-100);
  border-radius: var(--sav-radius);
  padding: 18px 22px;
}
.sav-brand-group .sav-sector {
  font-size: 13px; font-weight: 700; color: var(--sav-brand);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.sav-brand-group .sav-sector .sav-icon {
  width: 26px; height: 26px; flex-shrink: 0;
  border-radius: 6px;
  background: var(--sav-accent-soft);
  color: var(--sav-brand);
  display: inline-flex; align-items: center; justify-content: center;
}
.sav-brand-group .sav-sector .sav-icon .material-symbols-rounded { font-size: 16px; }
.sav-brand-group .sav-pills {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sav-brand-group .sav-pill {
  background: var(--sav-ink-50);
  color: var(--sav-ink-700);
  font-size: 13px; font-weight: 500;
  padding: 4px 10px; border-radius: 100px;
  border: 1px solid var(--sav-ink-100);
}

/* =========================================================================
   PATTERN #9 — Styled Comparison Table
   ========================================================================= */
.sav-table-wrap {
  overflow-x: auto; margin: 24px 0 32px;
  border-radius: var(--sav-radius-sm); border: 1px solid var(--sav-ink-100);
  box-shadow: var(--sav-shadow-sm);
}
.sav-table {
  width: 100%; border-collapse: collapse; min-width: 600px;
  font-size: 14px; background: var(--sav-white);
}
.sav-table thead { background: var(--sav-brand); color: var(--sav-white); }
.sav-table th {
  padding: 12px 16px; text-align: left;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em;
  border-right: 1px solid rgba(255,255,255,.15);
}
.sav-table th:last-child { border-right: none; }
.sav-table td {
  padding: 14px 16px; vertical-align: top; line-height: 1.5;
  color: var(--sav-ink-700);
  border-bottom: 1px solid var(--sav-ink-100);
}
.sav-table tbody tr:nth-child(even) { background: var(--sav-ink-50); }
.sav-table tbody tr:last-child td { border-bottom: none; }
.sav-table tbody tr:hover { background: #E0F2FE; }
.sav-table td:first-child {
  font-weight: 600; color: var(--sav-ink-900);
}
.sav-table td a { color: var(--sav-brand); text-decoration: underline; text-underline-offset: 2px; font-weight: 500; }
.sav-table th.is-featured {
  background: var(--sav-accent);
  color: #78350F;
  font-weight: 800;
}
.sav-table .sav-flag {
  font-size: 16px; margin-right: 4px;
  font-family: 'Apple Color Emoji','Segoe UI Emoji','Noto Color Emoji',sans-serif;
  vertical-align: -2px;
}
.sav-table tbody tr:nth-child(even) td.is-featured,
.sav-table tbody tr:nth-child(odd) td.is-featured {
  background: var(--sav-accent-soft);
  color: var(--sav-ink-900);
  font-weight: 600;
}

/* =========================================================================
   Eyebrow (small label above a block)
   ========================================================================= */
.sav-eyebrow {
  font-size: 12px; font-weight: 700;
  color: var(--sav-accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin: 24px 0 8px !important;
  display: flex; align-items: center; gap: 8px;
}
.sav-eyebrow::before {
  content: ""; display: block;
  width: 18px; height: 2px;
  background: var(--sav-accent);
  border-radius: 1px;
}

/* =========================================================================
   PATTERN #10 — Stats Grid (numbers section, end of page)
   ========================================================================= */
.sav-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 24px 0 32px;
}
.sav-stat {
  background: var(--sav-ink-50);
  border-radius: var(--sav-radius);
  padding: 20px 18px;
  text-align: left;
  border-top: 3px solid var(--sav-brand);
}
.sav-stat .sav-stat-value {
  font-size: 28px; font-weight: 800; color: var(--sav-brand);
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px;
  font-feature-settings: 'tnum';
}
.sav-stat .sav-stat-label {
  font-size: 13px; font-weight: 500; color: var(--sav-ink-700); line-height: 1.4;
}

/* =========================================================================
   PATTERN #13 — Next-Step mini-block (inline content CTA, lightweight)
   ========================================================================= */
.sav-products-page a.sav-next-step,
.ast-single-post .entry-content .sav-products-page a.sav-next-step {
  display: flex; align-items: center; gap: 16px;
  background: linear-gradient(90deg, var(--sav-accent-soft) 0%, rgba(254,243,199,0) 100%);
  border-left: 4px solid var(--sav-accent);
  border-radius: 0 var(--sav-radius-sm) var(--sav-radius-sm) 0;
  padding: 18px 22px;
  margin: 24px 0 40px;
  text-decoration: none;
  color: inherit;
  transition: transform .2s ease, background .2s ease;
}
.sav-products-page a.sav-next-step:hover {
  background: linear-gradient(90deg, var(--sav-accent-soft) 0%, var(--sav-ink-50) 100%);
  transform: translateX(4px);
}
.sav-next-step .sav-next-step-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--sav-accent); color: #78350F;
  border-radius: 8px;
  display: inline-flex; align-items: center; justify-content: center;
}
.sav-next-step .sav-next-step-icon .material-symbols-rounded { font-size: 22px; }
.sav-next-step .sav-next-step-body { flex: 1; min-width: 0; }
.sav-next-step .sav-next-step-eyebrow {
  display: block;
  font-size: 11px; font-weight: 700; color: var(--sav-accent);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 2px;
}
.sav-next-step .sav-next-step-title {
  display: block;
  font-size: 17px; font-weight: 700; color: var(--sav-brand);
  letter-spacing: -0.01em; line-height: 1.3;
  margin-bottom: 2px;
}
.sav-next-step .sav-next-step-desc {
  display: block;
  font-size: 13px; color: var(--sav-ink-500); line-height: 1.5;
}
.sav-next-step .sav-next-step-arrow {
  font-size: 22px; color: var(--sav-brand); font-weight: 700;
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .sav-products-page a.sav-next-step { padding: 16px 18px; gap: 12px; }
  .sav-next-step .sav-next-step-title { font-size: 15px; }
  .sav-next-step .sav-next-step-icon { width: 36px; height: 36px; }
}

/* =========================================================================
   PATTERN #14 — At-a-glance key numbers (compact bullet list)
   Denser alternative to the stats-grid cards; keeps the number prominent
   but uses reading-flow space efficiently.
   ========================================================================= */
.sav-at-a-glance {
  list-style: disc;
  padding-left: 22px;
  margin: 4px 0 40px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--sav-ink-700);
}
.sav-at-a-glance li { margin: 2px 0; }
.sav-at-a-glance li::marker { color: var(--sav-accent); }
.sav-at-a-glance li strong {
  color: var(--sav-brand);
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
  margin-right: 2px;
}

/* =========================================================================
   PATTERN #11 — CTA Block (final)
   ========================================================================= */
.sav-cta-block {
  background: var(--sav-ink-50);
  border: 1px solid var(--sav-ink-100);
  border-radius: var(--sav-radius);
  padding: 32px;
  margin: 64px 0 0;
  text-align: center;
}
.sav-cta-block .sav-cta-title {
  font-size: 1.375rem; font-weight: 800; color: var(--sav-brand);
  margin: 0 0 10px; letter-spacing: -0.01em;
  line-height: 1.25;
  text-align: center;
}
.sav-cta-block p { text-align: center; }
.sav-cta-block .sav-btn a { color: inherit; }
.sav-cta-block p {
  font-size: 15px; color: var(--sav-ink-700);
  margin: 0 auto 20px;
}
.sav-cta-block .sav-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--sav-cta); color: #fff;
  padding: 12px 22px; border-radius: 6px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  transition: background .15s ease;
}
.sav-cta-block .sav-btn:hover { background: var(--sav-cta-hover); }

/* =========================================================================
   Mobile tweaks
   ========================================================================= */
@media (max-width: 640px) {
  body { font-size: 16px; }
  .sav-products-page { padding: 0 16px 48px; }
  .sav-products-page h2.wp-block-heading { margin: 44px 0 16px; font-size: 1.35rem; }
  .sav-products-page h3.wp-block-heading { margin: 28px 0 12px; font-size: 1.1rem; }
  .sav-section-card { padding: 16px 20px 4px; }
  .sav-feature-block { padding: 22px 20px; }
  .sav-cta-block { padding: 24px 20px; }
}