/* DealRadar — premium B2B deal hub
   Palette: deep indigo + amber. Type: Inter (UI) + Space Grotesk (display) + JetBrains Mono (code) */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;600;700&family=JetBrains+Mono:wght@600;700&display=swap');

:root {
  --indigo-deep: #07091f;
  --indigo: #0f1235;
  --indigo-2: #1a1e4d;
  --indigo-3: #2a2f6e;
  --indigo-line: #1f2354;
  --ink: #0b0e2a;
  --ink-2: #3a4063;
  --muted: #6f7596;
  --line: #e3e6f3;
  --line-soft: #eef0f8;
  --surface: #ffffff;
  --surface-2: #f7f8fc;
  --amber: #f59e0b;
  --amber-bright: #fbbf24;
  --amber-deep: #b4730a;
  --lavender: #c4b5fd;
  --mint: #6ee7b7;
  --rose: #fb7185;
  --radius: 14px;
  --radius-sm: 8px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 8px rgba(11,14,42,.06);
  --shadow: 0 8px 28px rgba(11,14,42,.10);
  --shadow-lg: 0 24px 70px rgba(11,14,42,.20);
  --shadow-amber: 0 10px 30px rgba(245,158,11,.30);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface-2);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: 'cv02','cv03','cv04','cv11';
}
h1, h2, h3, h4, .display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -.02em; }
code, kbd, .mono { font-family: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }
a { color: var(--indigo-2); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--amber-deep); }
img, svg { max-width: 100%; height: auto; display: block; }
.wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 32px 0; }

/* ---------- Header ---------- */
.site-header {
  background: var(--indigo-deep);
  background-image:
    radial-gradient(1200px 200px at 10% 0%, rgba(245,158,11,.10), transparent 60%),
    linear-gradient(180deg, #07091f 0%, #0d1130 100%);
  border-bottom: 1px solid rgba(255,255,255,.06);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; gap: 24px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: #fff; font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 22px; letter-spacing: -.02em;
}
.brand:hover { color: #fff; }
.brand-mark {
  width: 28px; height: 28px; border-radius: 8px;
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: var(--indigo-deep); font-weight: 800; font-size: 18px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 14px rgba(245,158,11,.4);
}
.brand-text span { color: var(--amber-bright); }
.primary-nav { display: flex; gap: 22px; flex-wrap: wrap; align-items: center; }
.primary-nav a {
  color: #d3d8f0; font-weight: 500; font-size: 14.5px;
  padding: 8px 0; position: relative;
}
.primary-nav a:hover { color: #fff; }
.primary-nav a:hover::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 2px;
  height: 2px; background: var(--amber-bright); border-radius: 2px;
}
.nav-cta {
  background: var(--amber); color: var(--indigo-deep) !important;
  padding: 10px 16px !important; border-radius: 10px;
  font-weight: 700 !important; font-size: 14px !important;
  box-shadow: 0 6px 16px rgba(245,158,11,.3);
}
.nav-cta:hover { background: var(--amber-bright); color: var(--indigo-deep) !important; }
.nav-cta:hover::after { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: #fff;
  background: var(--indigo-deep);
  background-image:
    radial-gradient(800px 500px at 80% -10%, rgba(245,158,11,.18), transparent 55%),
    radial-gradient(900px 600px at 0% 100%, rgba(196,181,253,.14), transparent 55%),
    linear-gradient(160deg, #07091f 0%, #11164a 60%, #1d2467 100%);
  padding: 72px 0 88px;
}
.hero::before {
  content: ''; position: absolute; inset: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, #000 30%, transparent 80%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: rgba(245,158,11,.14); color: var(--amber-bright);
  font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  border: 1px solid rgba(245,158,11,.3);
}
.hero h1 {
  font-size: clamp(36px, 5.4vw, 64px);
  line-height: 1.04; margin: 18px 0 18px;
  max-width: 18ch; font-weight: 700;
}
.hero h1 em { font-style: normal; color: var(--amber-bright); position: relative; }
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -4px; height: 6px;
  background: linear-gradient(90deg, var(--amber), transparent);
  border-radius: 4px; opacity: .65;
}
.hero .lede { font-size: 19px; color: #cfd5ed; max-width: 58ch; margin: 0 0 28px; }

/* Hero search */
.hero-search {
  margin-top: 8px; display: flex; gap: 10px; max-width: 640px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.18);
  padding: 8px; border-radius: 16px; backdrop-filter: blur(8px);
}
.hero-search input[type="search"] {
  flex: 1; min-width: 0; background: transparent; border: 0; outline: 0;
  color: #fff; font: 500 16px 'Inter', sans-serif; padding: 12px 14px;
}
.hero-search input::placeholder { color: rgba(255,255,255,.55); }
.hero-search button {
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: var(--indigo-deep); border: 0; border-radius: 12px;
  padding: 12px 22px; font: 700 15px 'Inter', sans-serif;
  cursor: pointer; box-shadow: var(--shadow-amber);
  transition: transform .12s ease;
}
.hero-search button:hover { transform: translateY(-1px); }
.hero-suggest { color: #aab1d4; font-size: 13.5px; margin-top: 12px; }
.hero-suggest a { color: var(--amber-bright); margin-right: 12px; font-weight: 500; }
.hero-suggest a:hover { color: #fff; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  margin-top: 44px; border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10); padding: 20px 0;
}
.hero-stats > div { padding: 4px 0; border-right: 1px solid rgba(255,255,255,.07); }
.hero-stats > div:last-child { border-right: 0; }
.hero-stats b { display: block; font-family: 'Space Grotesk', sans-serif; font-size: 30px; color: #fff; font-weight: 700; letter-spacing: -.01em; }
.hero-stats span { color: #9aa2c8; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section-tight { padding: 36px 0; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 28px; }
.section-head h2 { font-size: 30px; margin: 0 0 6px; }
.section-head .sub { color: var(--ink-2); margin: 0; max-width: 60ch; }
.section-head a.see-all { color: var(--indigo-2); font-weight: 600; font-size: 14.5px; white-space: nowrap; }
.section-head a.see-all:hover { color: var(--amber-deep); }

/* ---------- 2-col layout (sidebar + main) ---------- */
.layout-2col { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }

/* Category sidebar */
.cat-sidebar { position: sticky; top: 88px; }
.cat-sidebar h4 {
  font: 700 12px/1 'Inter', sans-serif; letter-spacing: .12em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 12px;
}
.cat-list { display: flex; flex-direction: column; gap: 2px; }
.cat-list a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 12px; border-radius: 10px; color: var(--ink);
  font-size: 14.5px; font-weight: 500;
  border: 1px solid transparent;
}
.cat-list a:hover, .cat-list a.active {
  background: #fff; border-color: var(--line);
  color: var(--indigo-2); box-shadow: var(--shadow-sm);
}
.cat-list a .pill {
  background: var(--surface-2); color: var(--muted); font-size: 11.5px; font-weight: 600;
  padding: 3px 9px; border-radius: 999px; border: 1px solid var(--line);
}
.cat-list a:hover .pill, .cat-list a.active .pill {
  background: var(--amber); color: #fff; border-color: var(--amber);
}

/* ---------- Deal cards ---------- */
.deal-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); gap: 18px; }
.deal-grid.cols-2 { grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); }
.deal-card {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 22px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  overflow: hidden;
}
.deal-card::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: linear-gradient(90deg, var(--amber), var(--amber-bright));
  opacity: 0; transition: opacity .15s ease;
}
.deal-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: #cfd6ee; }
.deal-card:hover::before { opacity: 1; }
.deal-card .row1 { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.deal-card .merchant {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 13.5px; color: var(--indigo-2);
  text-transform: uppercase; letter-spacing: .04em;
}
.deal-card .merchant-dot {
  width: 8px; height: 8px; border-radius: 999px; background: var(--mint);
}

/* Big amber badge */
.badge-savings {
  display: inline-flex; align-items: center; gap: 4px;
  background: linear-gradient(135deg, var(--amber-bright) 0%, var(--amber) 100%);
  color: var(--indigo-deep); font: 800 13px 'Space Grotesk', sans-serif;
  padding: 7px 12px; border-radius: 999px; letter-spacing: .02em;
  box-shadow: 0 4px 14px rgba(245,158,11,.3);
  white-space: nowrap;
}
.badge-savings.alt {
  background: var(--indigo-deep); color: var(--amber-bright);
  box-shadow: none; border: 1px solid var(--indigo-line);
}
.deal-card h3 { margin: 0; font-size: 19px; line-height: 1.3; }
.deal-card h3 a { color: var(--ink); }
.deal-card h3 a:hover { color: var(--indigo-2); }
.deal-card .summary { color: var(--ink-2); font-size: 14px; margin: 0; }
.deal-card .meta {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line-soft);
}
.deal-card .urgency { color: var(--amber-deep); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .04em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  background: var(--ink); color: #fff; border-radius: 10px;
  font: 700 14px 'Inter', sans-serif; border: 0; cursor: pointer;
  transition: transform .12s ease, background .12s ease;
}
.btn:hover { background: var(--indigo-2); color: #fff; transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, var(--amber-bright), var(--amber));
  color: var(--indigo-deep); box-shadow: var(--shadow-amber);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--amber), var(--amber-deep));
  color: #fff;
}
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: #fff; color: var(--indigo-2); border-color: var(--indigo-2); }
.btn-lg { padding: 14px 22px; font-size: 15px; }

/* ---------- Featured row (3-up large cards) ---------- */
.featured-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.featured-card {
  background: linear-gradient(180deg, #fff 0%, #fbfaf4 100%);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease;
}
.featured-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.featured-card .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.featured-card .pill-cat {
  font: 600 11px 'Inter', sans-serif; text-transform: uppercase; letter-spacing: .08em;
  color: var(--indigo-2); background: #eef0fb; padding: 4px 10px; border-radius: 999px;
}
.featured-card h3 { margin: 0; font-size: 22px; line-height: 1.25; }
.featured-card h3 a { color: var(--ink); }
.featured-card .code-line {
  font-family: 'JetBrains Mono', monospace; font-size: 13px; color: var(--ink-2);
  background: var(--surface-2); padding: 8px 12px; border-radius: 8px;
  border: 1px dashed var(--line); display: flex; justify-content: space-between; align-items: center;
}
.featured-card .code-line strong { color: var(--indigo-deep); font-weight: 700; }

/* ---------- Cat grid (large cards) ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; }
.cat-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
  display: flex; flex-direction: column; gap: 6px; color: var(--ink);
  position: relative; overflow: hidden;
}
.cat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--amber); }
.cat-card .name { font-family: 'Space Grotesk'; font-weight: 700; font-size: 17px; }
.cat-card .tag { color: var(--muted); font-size: 13px; flex: 1; }
.cat-card .count { color: var(--amber-deep); font-size: 13px; font-weight: 700; margin-top: 8px; }

/* ---------- Featured strip ---------- */
.featured-strip { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }

/* ---------- Crumbs ---------- */
.crumbs { color: var(--muted); font-size: 13px; padding: 18px 0 6px; }
.crumbs a { color: var(--ink-2); }
.crumbs a:hover { color: var(--indigo-2); }

/* ---------- Deal page ---------- */
.deal-hero {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; box-shadow: var(--shadow);
  display: grid; grid-template-columns: 1.6fr 1fr; gap: 32px;
}
.deal-hero .pill { display: inline-block; background: #eef0fb; color: var(--indigo-2); padding: 5px 12px; border-radius: 999px; font-size: 12px; font-weight: 600; }
.deal-hero h1 { margin: 14px 0 10px; font-size: clamp(28px, 3.6vw, 42px); line-height: 1.1; }
.deal-hero p.summary { color: var(--ink-2); margin: 0 0 18px; font-size: 17px; }
.deal-hero .urgency-big { color: var(--amber-deep); font-weight: 700; }

.code-card {
  background: linear-gradient(155deg, var(--indigo-deep) 0%, var(--indigo-2) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 26px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; overflow: hidden;
}
.code-card::before {
  content: ''; position: absolute; top: -40%; right: -20%;
  width: 240px; height: 240px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,.25), transparent 70%);
}
.code-card .label { font-size: 11px; text-transform: uppercase; letter-spacing: .14em; color: #aab1d4; font-weight: 600; }
.code-card .code-wrap {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  background: rgba(255,255,255,.07); border: 1px dashed rgba(245,158,11,.45);
  padding: 14px 18px; border-radius: 12px;
}
.code-card .code { font-family: 'JetBrains Mono', monospace; font-size: 22px; font-weight: 700; letter-spacing: .08em; color: var(--amber-bright); }
.code-card .discount { font-family: 'Space Grotesk'; font-size: 32px; font-weight: 700; color: var(--amber-bright); letter-spacing: -.01em; }

.deal-body { display: grid; grid-template-columns: 1fr 300px; gap: 32px; margin-top: 32px; }
.deal-body article {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 38px; box-shadow: var(--shadow-sm);
}
.deal-body article h2 { font-size: 24px; margin: 32px 0 10px; }
.deal-body article h2:first-child { margin-top: 0; }
.deal-body article p { margin: 8px 0 14px; color: var(--ink); }
.deal-body article code { background: #fef3c7; color: var(--amber-deep); padding: 2px 7px; border-radius: 5px; font-size: 14px; font-weight: 600; }
.feature-list { padding-left: 22px; margin: 12px 0 18px; }
.feature-list li { margin: 6px 0; }
.faq dt { font-weight: 700; margin-top: 16px; color: var(--indigo-2); }
.faq dd { margin: 6px 0 16px; color: var(--ink-2); }

.callout {
  background: linear-gradient(135deg, #fef3c7 0%, #fef9c3 100%);
  border: 1px solid #fde68a; border-radius: var(--radius);
  padding: 18px 22px; margin: 18px 0; font-size: 15px; color: #78350f;
}
.callout strong { color: #78350f; }

/* Sidebar (deal + category page) */
.sidebar { display: flex; flex-direction: column; gap: 16px; }
.sidebar .box {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; box-shadow: var(--shadow-sm);
}
.sidebar h4 { margin: 0 0 12px; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-family: 'Inter', sans-serif; font-weight: 700; }
.sidebar ul { margin: 0; padding-left: 18px; }
.sidebar li { margin: 6px 0; }
.sidebar .box.dark {
  background: linear-gradient(160deg, var(--indigo-deep), var(--indigo-2));
  color: #fff; border-color: var(--indigo-line);
}
.sidebar .box.dark h4 { color: var(--amber-bright); }
.sidebar .box.dark a { color: #d3d8f0; }
.sidebar .box.dark a:hover { color: #fff; }

/* Related Resources editorial block */
.recos {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 26px 28px; margin: 40px 0;
}
.recos h3 { margin: 0 0 4px; font-size: 20px; }
.recos .recos-eyebrow { color: var(--amber-deep); font: 700 11px 'Inter'; letter-spacing: .14em; text-transform: uppercase; margin: 0 0 14px; }
.recos-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 16px; }
.reco {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 16px; background: var(--surface-2);
  border: 1px solid var(--line-soft); border-radius: 10px;
  transition: border-color .15s ease, transform .12s ease;
}
.reco:hover { border-color: var(--amber); transform: translateY(-1px); }
.reco .reco-label { font-weight: 700; color: var(--indigo-2); font-size: 14.5px; }
.reco .reco-tag { color: var(--muted); font-size: 12.5px; }

/* Adsense slot */
.adsense-slot {
  border: 1px dashed #cdd3e3; background: #fafbff; color: var(--muted);
  text-align: center; padding: 18px; border-radius: var(--radius-sm);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}

/* ---------- Category page ---------- */
.cat-header { padding: 44px 0 14px; }
.cat-header h1 { font-size: 38px; margin: 0 0 8px; }
.cat-header p { margin: 0; color: var(--ink-2); font-size: 17px; max-width: 70ch; }

/* ---------- Static prose pages ---------- */
.prose {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 40px 48px; max-width: 820px; margin: 24px auto; box-shadow: var(--shadow-sm);
}
.prose h1 { margin-top: 0; font-size: 38px; }
.prose h2 { margin-top: 32px; font-size: 24px; }
.prose ul { padding-left: 22px; }
.prose p, .prose li { color: var(--ink); }

/* ---------- Search results ---------- */
.search-header { padding: 32px 0 20px; }
.search-header h1 { font-size: 30px; margin: 0 0 6px; }
.search-form-inline {
  margin-top: 16px; display: flex; gap: 8px; max-width: 560px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 6px;
  box-shadow: var(--shadow-sm);
}
.search-form-inline input {
  flex: 1; min-width: 0; border: 0; background: transparent; outline: 0;
  font: 500 15px 'Inter'; padding: 10px 12px;
}
.search-form-inline button {
  background: var(--indigo-deep); color: #fff; border: 0; border-radius: 8px;
  padding: 10px 18px; font: 700 14px 'Inter'; cursor: pointer;
}
.search-form-inline button:hover { background: var(--indigo-2); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--indigo-deep);
  background-image: linear-gradient(180deg, #07091f 0%, #0c0f30 100%);
  color: #c5cce0; margin-top: 80px; padding: 56px 0 24px;
  border-top: 3px solid var(--amber);
}
.site-footer h4 { color: #fff; font: 700 12px 'Inter'; text-transform: uppercase; letter-spacing: .14em; margin: 0 0 14px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: 7px 0; font-size: 14px; }
.site-footer a { color: #c5cce0; }
.site-footer a:hover { color: var(--amber-bright); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
.brand-footer { color: #fff; margin-bottom: 14px; }
.copy { color: #6f7896; font-size: 13px; padding: 28px 24px 0; border-top: 1px solid rgba(255,255,255,.08); margin-top: 36px; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .layout-2col { grid-template-columns: 1fr; }
  .cat-sidebar { position: static; }
  .featured-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .recos-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .hero { padding: 56px 0 64px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats > div:nth-child(2) { border-right: 0; }
  .deal-hero, .deal-body { grid-template-columns: 1fr; }
  .deal-hero { padding: 24px; }
  .deal-body article { padding: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .recos-grid { grid-template-columns: 1fr; }
  .primary-nav { gap: 14px; font-size: 13.5px; }
  .nav-cta { display: none; }
}
