/* aliomis.com — premium minimalist startup aesthetic
   Linear/Vercel-style. Indigo-violet gradient, generous whitespace,
   crisp tables, hairline rules, pill badges. Light-mode default.
*/

:root {
  --bg: #FFFFFF;
  --bg-soft: #FAFAFB;
  --bg-grad-start: #F5F3FF;
  --bg-grad-end: #EEF2FF;
  --ink: #0A0A0F;
  --ink-2: #1F1F2A;
  --muted: #6B6B78;
  --muted-2: #9494A1;
  --rule: #E7E7EC;
  --rule-soft: #F1F1F4;
  --indigo: #6366F1;
  --violet: #8B5CF6;
  --grad: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
  --grad-soft: linear-gradient(135deg, rgba(99,102,241,0.08) 0%, rgba(139,92,246,0.08) 100%);
  --grad-text: linear-gradient(135deg, #6366F1, #8B5CF6);
  --shadow-sm: 0 1px 2px rgba(15, 15, 30, 0.04);
  --shadow-md: 0 6px 20px rgba(99, 102, 241, 0.08);
  --shadow-lg: 0 24px 48px rgba(15, 15, 30, 0.10);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 18px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-feature-settings: 'cv11', 'ss01', 'ss03';
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--indigo);
  text-decoration: none;
  transition: color 120ms ease;
}
a:hover { color: var(--violet); }

p { margin: 0 0 18px; color: var(--ink-2); }

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin: 48px 0 18px;
  line-height: 1.15;
}

h1 {
  font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  margin: 0 0 18px;
}
h2 { font-size: 30px; margin-top: 48px; }
h3 { font-size: 21px; margin-top: 32px; font-weight: 600; }
h4 { font-size: 17px; margin-top: 24px; font-weight: 600; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 28px;
}

.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 28px;
}

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--rule-soft);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-weight: 700;
}
.brand:hover { color: var(--ink); }
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--grad);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}
.brand-words {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.1;
}
.brand-name {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.brand-tag {
  font-size: 10px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav a {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 500;
}
.nav a:not(.btn):hover { color: var(--indigo); }
/* Buttons inside nav keep their own hover state — don't have nav a:hover bleed in */
.nav .btn-primary:hover { color: #FFFFFF; }
.nav .btn-ghost:hover { color: #FFFFFF; }
.nav .btn { font-size: 14px; padding: 9px 16px; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--rule);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease, border-color 120ms ease, color 120ms ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(99, 102, 241, 0.28);
}
.btn-ghost {
  background: #FFFFFF;
  color: var(--ink);
  border: 1px solid var(--rule);
}
.btn-ghost:hover {
  color: #FFFFFF;
  background: var(--ink);
  border-color: var(--ink);
}
.btn-sm { height: 36px; padding: 0 14px; font-size: 14px; }

/* === Pill / Badge === */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--grad-soft);
  border: 1px solid rgba(99,102,241,0.18);
  font-size: 13px;
  font-weight: 500;
  color: var(--indigo);
  letter-spacing: -0.005em;
}
.pill-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--grad);
}

.kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--indigo);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* === Hero === */
.hero {
  position: relative;
  padding: 72px 0 56px;
  background:
    radial-gradient(1200px 480px at 50% -120px, rgba(99,102,241,0.10), transparent 70%),
    linear-gradient(180deg, #FFFFFF 0%, var(--bg-grad-start) 100%);
  border-bottom: 1px solid var(--rule-soft);
}
.hero h1 .grad-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .lede {
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 640px;
  margin: 0 0 32px;
  letter-spacing: -0.012em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}
.hero-trust strong { color: var(--ink); font-weight: 600; }

/* Hero figure / chart card */
.hero-figure {
  margin-top: 48px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-lg);
}
.hero-figure-title {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.hero-figure figcaption {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--rule-soft);
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* === Sections === */
.section {
  padding: 64px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.section.section-tight { padding: 48px 0; }
.section:last-of-type { border-bottom: none; }

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}
.section-head h2 { margin-top: 0; }
.section-head p {
  font-size: 17px;
  color: var(--muted);
  margin: 0;
}

/* === Breadcrumb === */
.breadcrumb {
  font-size: 13px;
  color: var(--muted);
  padding: 22px 0 0;
}
.breadcrumb a { color: var(--muted); }
.breadcrumb a:hover { color: var(--indigo); }

/* === Article === */
.article-header {
  padding: 40px 0 28px;
  border-bottom: 1px solid var(--rule-soft);
  margin-bottom: 36px;
}
.article-header h1 { font-size: clamp(34px, 4.6vw, 48px); }
.article-header .lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin: 14px 0 24px;
  letter-spacing: -0.012em;
}
.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--muted);
}
.byline .author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 600;
}
.byline .author img {
  width: 36px; height: 36px;
  border-radius: 999px;
}
.byline .sep { color: var(--muted-2); }

.article-body { font-size: 17px; }
.article-body h2 { margin-top: 56px; }
.article-body h3 { margin-top: 36px; }
.article-body p { margin-bottom: 20px; }
.article-body ul, .article-body ol { margin: 0 0 24px; padding-left: 22px; }
.article-body li { margin-bottom: 8px; }

/* === Ranked Table === */
.ranked-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  background: #FFFFFF;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.ranked-table th, .ranked-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--rule-soft);
  vertical-align: middle;
}
.ranked-table thead th {
  background: var(--bg-soft);
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-top: 14px;
  padding-bottom: 14px;
}
.ranked-table tbody tr { transition: background 150ms ease; }
.ranked-table tbody tr:hover { background: var(--bg-soft); }
.ranked-table tbody tr:last-child td { border-bottom: none; }
.ranked-table .rank {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--muted);
  width: 48px;
  text-align: center;
}
.ranked-table .platform-cell {
  border-left: 3px solid transparent;
}
.ranked-table tr.top-pick { background: #F5F4FE; }
.ranked-table tr.top-pick .platform-cell {
  border-left: 3px solid var(--indigo);
}
.ranked-table tr.top-pick td { color: var(--ink); }
.ranked-table .platform-cell strong { font-size: 16px; color: var(--ink); }
.ranked-table .top-pick-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--grad);
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: middle;
}

/* === Comparison cards grid === */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: stretch;
}
.platform-card {
  padding: 28px;
  background: #FFFFFF;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  transition: border-color 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}
.platform-card:hover {
  border-color: rgba(99,102,241,0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.platform-card.top-pick {
  border: 1px solid transparent;
  background:
    linear-gradient(#FFFFFF, #FFFFFF) padding-box,
    var(--grad) border-box;
}
.platform-card .pc-rank {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.platform-card h3 { margin: 8px 0 6px; font-size: 21px; font-weight: 700; }
.platform-card .one-liner { color: var(--muted); margin: 0 0 14px; font-size: 15px; }
.platform-card .pc-body { flex: 1 1 auto; font-size: 15px; }
.platform-card .pc-body p { margin: 0 0 14px; }
.platform-card .meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  border-top: 1px solid var(--rule-soft);
  padding-top: 14px;
  margin-top: auto;
}
.platform-card .meta-row strong { color: var(--ink); font-weight: 600; }
.platform-card .read-more { font-size: 14px; font-weight: 500; margin-top: 16px; display: inline-block; }

/* === TLDR / CTA === */
.tldr-cta {
  margin: 32px 0;
  padding: 28px 32px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #FFFFFF 0%, var(--bg-grad-start) 100%);
  border: 1px solid rgba(99,102,241,0.20);
  text-align: center;
}
.tldr-cta .subtext { color: var(--muted); font-size: 13px; margin: 12px 0 0; }

.tldr-crosslink {
  margin: 24px 0;
  padding: 16px 22px;
  background: var(--bg-soft);
  border-left: 3px solid;
  border-image: var(--grad) 1;
  border-radius: 4px;
}
.tldr-crosslink p { margin: 0; font-size: 15px; color: var(--ink-2); }

.cta-card {
  margin: 32px 0;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--grad);
  color: #FFFFFF;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-card h4 {
  color: #FFFFFF;
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.cta-card p { color: rgba(255,255,255,0.85); margin: 0 0 18px; font-size: 15px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-card .btn-primary {
  background: #FFFFFF;
  color: var(--indigo);
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(15, 15, 30, 0.18);
}
.cta-card .btn-primary:hover {
  background: #FFFFFF;
  color: var(--violet);
  box-shadow: 0 10px 24px rgba(15, 15, 30, 0.24);
}
.cta-card .subtext { color: rgba(255,255,255,0.78); font-size: 13px; margin-top: 14px; margin-bottom: 0; }

/* === Pros/cons === */
.proscons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0;
}
.proscons > div {
  padding: 24px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid var(--rule-soft);
}
.proscons h4 {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.proscons ul { padding-left: 18px; margin: 0; }

/* === TLDR box (review summary) === */
.tldr {
  margin: 28px 0;
  padding: 26px 28px;
  background: #FFFFFF;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.tldr h4 {
  margin: 0 0 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 600;
}
.tldr ul { margin: 0; padding-left: 18px; }
.tldr li { margin-bottom: 6px; }
.tldr .overall {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}

/* === Pricing list === */
.pricing-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 28px;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  background: #FFFFFF;
  overflow: hidden;
}
.pricing-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--rule-soft);
  font-size: 15px;
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list .plan { font-weight: 500; }
.pricing-list .price { color: var(--indigo); font-weight: 600; font-variant-numeric: tabular-nums; }

/* === Image / screenshot === */
.tool-screenshot {
  margin: 28px 0 36px;
  padding: 0;
}
.tool-screenshot img {
  border-radius: var(--radius);
  border: 1px solid var(--rule);
  box-shadow: var(--shadow-md);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top center;
  width: 100%;
  height: auto;
  background: var(--bg-soft);
}
.tool-screenshot figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}
/* Author monogram displayed inline shouldn't get the screenshot frame */
.tool-screenshot.is-monogram { display: flex; flex-direction: column; align-items: center; }
.tool-screenshot.is-monogram img {
  border: none;
  box-shadow: none;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: transparent;
}

/* === Author block === */
.author-block {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: center;
  margin: 64px 0 0;
  padding: 32px;
  background: var(--bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--rule-soft);
}
.author-block img {
  width: 100px; height: 100px;
  border-radius: 999px;
}
.author-block h4 { margin: 0 0 4px; font-size: 18px; }
.author-block .role {
  font-size: 13px;
  color: var(--indigo);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 10px;
}
.author-block p { margin: 0; color: var(--muted); font-size: 15px; }

/* === FAQ === */
.faq-list { margin: 32px 0; }
.faq-list details {
  border-bottom: 1px solid var(--rule);
  padding: 18px 0;
}
.faq-list summary {
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  letter-spacing: -0.01em;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: "+";
  font-size: 22px;
  color: var(--muted);
  font-weight: 400;
}
.faq-list details[open] summary::after { content: "−"; }
.faq-list details[open] { padding-bottom: 24px; }
.faq-list summary + p,
.faq-list details > p { margin: 12px 0 0; color: var(--muted); }

/* === Footer === */
.site-footer {
  background: #0A0A0F;
  color: #D4D9E2;
  padding: 72px 0 36px;
  font-size: 14px;
}
.site-footer p { color: #D4D9E2; }
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.site-footer h4 {
  color: #FFFFFF;
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: #D4D9E2; }
.site-footer a:hover { color: #FFFFFF; }
.site-footer .brand-mark {
  margin-bottom: 16px;
}
.site-footer .footer-strap { margin: 0; max-width: 320px; }

.disclosure {
  border-top: 1px solid #1F1F2A;
  padding-top: 24px;
  font-size: 13px;
  color: #B0B6C2;
  line-height: 1.65;
}
.disclosure strong { color: #FFFFFF; }
.disclosure a { color: #B5BCC8; text-decoration: underline; text-underline-offset: 2px; }

/* === References === */
.references {
  font-size: 14px;
  color: var(--muted);
  border-top: 1px solid var(--rule);
  padding-top: 14px;
  margin-top: 32px;
}

/* === Hero comparison chart (SVG bar) === */
.bar-row {
  display: grid;
  grid-template-columns: 160px 1fr 80px;
  gap: 18px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 14px;
}
.bar-row:last-of-type { margin-bottom: 0; }
.bar-row .label { font-weight: 500; color: var(--ink-2); }
.bar-row.is-pick .label { font-weight: 700; color: var(--ink); }
.bar-row .price { font-weight: 600; color: var(--ink); font-variant-numeric: tabular-nums; text-align: right; }
.bar-row.is-pick .price {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.bar-track {
  height: 14px;
  background: #EDEEF3;
  border: 1px solid #E0E1E8;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}
.bar-fill {
  height: 100%;
  min-width: 14px;
  background: var(--grad);
  border-radius: 999px;
  box-shadow: 0 1px 3px rgba(99,102,241,0.25);
  display: block;
}
.bar-fill.muted {
  background: linear-gradient(135deg, #8B92A8 0%, #6B7388 100%);
  box-shadow: none;
}

/* === Pull quote === */
.pull-quote {
  margin: 40px 0;
  padding: 28px 32px;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
  border-left: 3px solid;
  border-image: var(--grad) 1;
  background: linear-gradient(90deg, var(--bg-grad-start) 0%, transparent 100%);
}

/* === Contact / utility === */
.muted { color: var(--muted); }
hr.divider {
  border: none;
  border-top: 1px solid var(--rule);
  margin: 48px 0;
}

/* === Responsive === */
@media (max-width: 880px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(32px, 8vw, 44px); }
  h2 { font-size: 24px; margin-top: 36px; }
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 48px 0; }
  .hero { padding: 48px 0 40px; }
  .article-header { padding: 28px 0 20px; margin-bottom: 28px; }

  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #FFFFFF;
    padding: 20px 28px;
    border-bottom: 1px solid var(--rule);
    gap: 16px;
  }
  .nav-toggle { display: inline-flex; }

  .platform-grid { grid-template-columns: 1fr; }
  .proscons { grid-template-columns: 1fr; }

  .hero-figure { padding: 22px 18px; margin-top: 36px; }
  .bar-row { grid-template-columns: 110px 1fr 60px; gap: 12px; font-size: 13px; }

  .ranked-table { font-size: 14px; }
  .ranked-table th, .ranked-table td { padding: 12px 12px; }
  .ranked-table .top-pick-badge { display: inline-block; margin-left: 0; margin-top: 4px; }
  .ranked-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }

  .author-block { grid-template-columns: 1fr; text-align: center; padding: 24px; }
  .author-block img { margin: 0 auto; width: 80px; height: 80px; }

  .cta-card { padding: 24px 20px; }
  .cta-card h4 { font-size: 18px; }
  .cta-card p { font-size: 14px; }

  .site-footer { padding: 56px 0 32px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 36px; }
  .breadcrumb { padding: 16px 0 0; }
  .pull-quote { padding: 22px 22px; font-size: 18px; }
}

@media (max-width: 480px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-trust { gap: 14px; font-size: 12px; }
  .bar-row { grid-template-columns: 100px 1fr 56px; gap: 10px; font-size: 12px; }
}


/* === Reviews dropdown nav === */
.nav-dropdown { position: relative; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.72em;
  margin-left: 3px;
  opacity: 0.6;
  color: currentColor;
  transition: opacity .15s ease, color .15s ease;
}
.nav-dropdown:hover > .dropdown-trigger,
.nav-dropdown:focus-within > .dropdown-trigger,
.nav-dropdown > .dropdown-trigger:hover { color: var(--accent); }
.nav-dropdown:hover > .dropdown-trigger::after,
.nav-dropdown:focus-within > .dropdown-trigger::after { color: var(--accent); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: #FFFFFF;
  border: 1px solid var(--rule);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, .08);
  min-width: 260px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s;
  z-index: 60;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 18px;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
}
.nav-dropdown-menu a:hover {
  background: var(--rule-soft);
  color: var(--accent);
}
.nav-dropdown-menu .pick-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #FFFFFF;
  background: var(--accent);
  padding: 3px 9px;
  border-radius: 999px;
  margin-left: 14px;
}
@media (max-width: 760px) {
  .nav-dropdown { width: 100%; }
.nav-dropdown > .dropdown-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  /* font-family, font-size, font-weight, text-transform, letter-spacing,
     color all inherit from the sibling nav <a> rule so the trigger matches
     the rest of the nav. */
}
.nav-dropdown > .dropdown-trigger::after {
  content: "\25BE";
  font-size: 0.72em;
  margin-left: 3px;
  opacity: 0.6;
  color: currentColor;
  transition: opacity .15s ease, color .15s ease;
}
  .nav-dropdown-menu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    box-shadow: none;
    background: transparent;
    border: none;
    border-left: 2px solid var(--rule);
    border-radius: 0;
    padding: 4px 0 0 14px;
    margin-top: 4px;
    min-width: 0;
  }
  .nav-dropdown-menu a {
    padding: 6px 0;
    font-size: 13px;
    color: var(--muted, #6B7280);
  }
  .nav-dropdown-menu .pick-tag { font-size: 9px; padding: 2px 7px; }
}
