/* ============================================================
   TechVerdict.io — Tech-Forward Clean
   Direction: Dotlogics-inspired. White base, dark type,
   geometric Syne display + Plus Jakarta Sans body.
   Blue accent, smooth reveals, modular cards, generous space.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #FFFFFF;
  --bg-alt: #F6F7F9;
  --bg-dark: #0C0C0E;
  --ink: #111113;
  --ink-light: #5A5A65;
  --ink-faint: #9B9BA5;
  --accent: #2563EB;
  --accent-hover: #1D4FD7;
  --accent-soft: rgba(37, 99, 235, 0.08);
  --border: #E5E5EA;
  --radius: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

/* --- Typography --- */
h1, h2 { font-family: var(--font-display); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h3 { font-family: var(--font-body); font-weight: 600; line-height: 1.3; }

h1 { font-size: clamp(2.8rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); }

/* --- Layout --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 32px; }
.section { padding: 96px 0; }

.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  margin-bottom: 48px;
}

/* --- Scroll Reveal --- */
[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }

/* --- Header --- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-faint);
  transition: color 0.2s;
}

.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 1px;
}

/* --- Hero --- */
.hero {
  position: relative;
  padding: 140px 0 0;
  background: var(--bg-dark);
  background-size: cover;
  background-position: center;
  border-bottom: none;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12, 12, 14, 0.88) 0%,
    rgba(12, 12, 14, 0.78) 50%,
    rgba(12, 12, 14, 0.96) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 64px;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.25);
  border-radius: 100px;
}

.hero h1 { margin-bottom: 24px; color: #fff; }

.hero-highlight { color: var(--accent); }

.hero-sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 540px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn-outline-dark {
  background: transparent;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}

/* Hero Gallery Strip */
.hero-gallery {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  padding: 0 32px 0;
  transform: translateY(40px);
}

.hero-gallery-item {
  width: 280px;
  height: 180px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.hero-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.hero-gallery-item:hover img {
  transform: scale(1.06);
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: var(--bg-alt);
  color: var(--ink);
  border-color: var(--ink-faint);
}

/* Spacer after hero gallery overlap */
.hero + .section { padding-top: 136px; }

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

.focus-card {
  display: flex;
  flex-direction: column;
  padding: 36px 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s;
}

.focus-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: var(--accent);
}

.focus-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 20px;
  transition: color 0.3s;
}

.focus-card:hover .focus-num { color: var(--accent); }

.focus-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.focus-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.focus-card p {
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* --- RAM CTA --- */
.ram-cta {
  background: var(--bg-dark);
  color: #fff;
}

.ram-cta .section-label { color: rgba(255,255,255,0.35); }

.ram-cta-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}

.ram-cta-left h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
}

.ram-cta-right p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 28px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Buyer Path --- */
.buyer-path {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.path-card {
  padding: 32px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: inherit;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.path-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.05);
}

.path-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.path-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.path-card p {
  color: var(--ink-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* --- Decision Shortcuts --- */
.decision-shortcuts {
  padding-top: 12px;
}

.decision-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.decision-shortcut {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: inherit;
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.decision-shortcut:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: var(--bg-alt);
  box-shadow: 0 12px 32px rgba(0,0,0,0.06);
}

.decision-label {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(214,66,48,0.12);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.decision-shortcut strong {
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.45;
}

.decision-shortcut span:last-child {
  color: var(--ink-light);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* --- Verdicts / Cards --- */
.verdicts-section {
  border-bottom: 1px solid var(--border);
}

.verdicts-header {
  margin-bottom: 40px;
}

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

.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
}

.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-body { padding: 24px; }

.card-tag {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 12px;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.4;
}

.card-title a { color: var(--ink); transition: color 0.2s; }
.card-title a:hover { color: var(--accent); }

.card-excerpt {
  font-size: 0.85rem;
  color: var(--ink-light);
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.72rem;
  color: var(--ink-faint);
  font-weight: 500;
}

/* --- Methodology --- */
.methodology {
  padding: 80px 0;
}

.methodology-header {
  margin-bottom: 48px;
}

.methodology-grid {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.methodology-step {
  flex: 1;
  padding: 0 32px;
}

.methodology-step:first-child { padding-left: 0; }
.methodology-step:last-child { padding-right: 0; }

.methodology-step h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.methodology-step p {
  font-size: 0.88rem;
  color: var(--ink-light);
  line-height: 1.6;
}

.methodology-divider {
  width: 1px;
  align-self: stretch;
  background: var(--border);
  flex-shrink: 0;
}

/* --- Newsletter --- */
.newsletter {
  padding: 72px 0;
  background: var(--bg-dark);
  color: #fff;
}

.newsletter-inner { max-width: 480px; }

.newsletter h2 {
  color: #fff;
  margin-bottom: 24px;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { border-color: var(--accent); }

.newsletter-form button {
  padding: 14px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover { background: var(--accent-hover); }

.newsletter-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.3);
}

/* --- Footer --- */
.footer {
  padding: 48px 0 36px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.03em;
}

.footer-brand span { color: var(--accent); }

.footer-copy {
  font-size: 0.76rem;
  color: var(--ink-faint);
  line-height: 1.6;
}

.footer-disclosure { font-size: 0.68rem; }

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  list-style: none;
  max-width: 500px;
}

.footer-links a {
  font-size: 0.78rem;
  color: var(--ink-light);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--accent); }

/* --- Article Page --- */
.article-header {
  padding: 80px 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.article-header .card-tag { margin-bottom: 16px; }

.article-header h1 { max-width: 800px; margin: 0 auto 20px; }

.article-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--ink-faint);
  font-size: 0.82rem;
}

.article-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.article-content p {
  margin-bottom: 22px;
  color: var(--ink-light);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-content h2 {
  margin: 56px 0 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.article-content h3 { margin: 36px 0 12px; }

.article-content ul, .article-content ol {
  margin: 0 0 22px 24px;
  color: var(--ink-light);
}

.article-content li { margin-bottom: 8px; font-size: 1.02rem; }
.article-content strong { color: var(--ink); }

.article-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 28px 0;
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--ink-light);
}

/* --- Product Cards --- */
.product-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin: 32px 0;
  position: relative;
}

.product-card.verdict-winner {
  border-color: var(--accent);
  border-width: 2px;
}

.product-card.verdict-winner::before {
  content: "VERDICT WINNER";
  position: absolute;
  top: -12px;
  left: 24px;
  padding: 4px 16px;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  border-radius: 100px;
  letter-spacing: 2px;
}

.product-header { display: flex; align-items: center; gap: 20px; margin-bottom: 20px; }

.product-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.product-name { font-size: 1.15rem; font-weight: 700; }
.product-price { color: var(--accent); font-weight: 600; font-size: 0.92rem; }

.product-specs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.spec {
  display: flex;
  justify-content: space-between;
  padding: 10px 14px;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
}

.spec-label { color: var(--ink-faint); }
.spec-value { color: var(--ink); font-weight: 600; }

.product-pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0; }

.pros h4, .cons h4 {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.pros h4 { color: #16A34A; }
.cons h4 { color: #DC2626; }

.pros li, .cons li { font-size: 0.86rem; color: var(--ink-light); list-style: none; padding: 3px 0; }
.pros li::before { content: "+ "; color: #16A34A; font-weight: 700; }
.cons li::before { content: "- "; color: #DC2626; font-weight: 700; }

.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.buy-btn:hover { background: var(--accent-hover); color: #fff; transform: translateY(-1px); }

.buy-btn-secondary {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--ink);
}

.buy-btn-secondary:hover { background: var(--bg-alt); color: var(--ink); }

.buy-links { display: flex; gap: 12px; margin-top: 20px; flex-wrap: wrap; }

/* --- Rating Bar --- */
.rating-bar { display: flex; align-items: center; gap: 12px; margin: 6px 0; }
.rating-bar-label { font-size: 0.8rem; color: var(--ink-faint); min-width: 100px; }
.rating-bar-track { flex: 1; height: 4px; background: var(--bg-alt); border-radius: 2px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--accent); border-radius: 2px; transition: width 0.8s var(--ease); }
.rating-bar-value { font-size: 0.8rem; font-weight: 700; min-width: 32px; text-align: right; }

.score-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1rem;
  font-weight: 700;
  border: 2px solid var(--accent);
  color: var(--accent);
}

/* --- Comparison Table --- */
.comparison-table { width: 100%; border-collapse: collapse; margin: 32px 0; font-size: 0.88rem; }
.comparison-table th {
  padding: 12px 16px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-weight: 600;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--ink-faint);
}
.comparison-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--ink-light); }
.comparison-table tr:hover td { background: var(--bg-alt); }
.comparison-table .winner-cell { color: var(--accent); font-weight: 700; }

/* --- Verdict Box --- */
.verdict-box {
  background: var(--accent-soft);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: var(--radius);
  padding: 36px;
  margin: 40px 0;
  text-align: center;
}

.verdict-box h2 {
  color: var(--accent);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.verdict-box p { max-width: 560px; margin: 0 auto; }

.next-article-box {
  margin-top: 32px;
  padding: 28px;
  border-radius: var(--radius);
  background: var(--bg-alt);
  border: 1px solid rgba(214,66,48,0.18);
}

.next-article-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(214,66,48,0.12);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.next-article-box h3 {
  margin: 0 0 10px;
}

.next-article-box p {
  margin-bottom: 0;
}

.compare-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin: 32px 0;
}

.compare-mini-card {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
}

.compare-eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.8px;
  color: var(--accent);
}

.compare-mini-card h3 {
  margin: 0 0 8px;
  font-size: 1rem;
}

.compare-mini-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.data-note {
  margin: -8px 0 24px;
  font-size: 0.84rem;
  color: var(--ink-faint);
}

.stack-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.stack-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
  color: var(--ink-light);
}

.stack-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

/* --- Affiliate Disclosure --- */
.disclosure {
  padding: 14px 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.76rem;
  color: var(--ink-faint);
  margin-bottom: 32px;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 32px;
    gap: 14px;
  }
  .nav-toggle { display: flex; }
  .hero { padding: 80px 0 0; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-gallery { gap: 10px; padding: 0 16px; }
  .hero-gallery-item { width: 200px; height: 130px; }
  .hero + .section { padding-top: 100px; }
  .ram-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .path-grid { grid-template-columns: 1fr; }
  .path-card { border-right: none; border-bottom: 1px solid var(--border); }
  .path-card:last-child { border-bottom: none; }
  .decision-shortcuts-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .methodology-grid { flex-direction: column; gap: 28px; }
  .methodology-divider { width: 100%; height: 1px; }
  .methodology-step { padding: 0; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .compare-card-grid { grid-template-columns: 1fr; }
  .product-pros-cons { grid-template-columns: 1fr; }
  .product-specs { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .buy-links { flex-direction: column; }
  .buy-btn { justify-content: center; }
  .section { padding: 64px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  .article-meta { flex-direction: column; gap: 8px; }
}
