/* StackPicks — Global Styles — Redesigned with visual personality */
:root {
  --bg: #0a0a0f;
  --bg-card: #111118;
  --bg-card-hover: #16161f;
  --border: #1e1e2a;
  --text: #e4e4e7;
  --text-dim: #71717a;
  --text-bright: #fafafa;
  --green: #10b981;
  --green-dim: rgba(16, 185, 129, 0.1);
  --green-glow: rgba(16, 185, 129, 0.15);
  --green-light: #34d399;
  --green-lighter: #6ee7b7;
  --teal: #14b8a6;
  --cyan: #22d3ee;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 20px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   AMBIENT BACKGROUND — GRAIN + GRADIENT ORB
   ============================================ */

body::before {
  content: '';
  position: fixed;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  z-index: 0;
  pointer-events: none;
}

.ambient-orb {
  position: fixed;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.07;
  pointer-events: none;
  z-index: 0;
}

.ambient-orb--1 {
  top: -300px;
  right: -200px;
  background: radial-gradient(circle, var(--green) 0%, transparent 70%);
  animation: orbFloat1 20s ease-in-out infinite;
}

.ambient-orb--2 {
  bottom: -400px;
  left: -300px;
  background: radial-gradient(circle, var(--teal) 0%, transparent 70%);
  animation: orbFloat2 25s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-60px, 80px); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(80px, -60px); }
}

/* ============================================
   NAV
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(10, 10, 15, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(30, 30, 42, 0.6);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--text-bright); }

.btn-nav {
  background: var(--green-dim);
  color: var(--green) !important;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 500;
  transition: all 0.2s !important;
}

.btn-nav:hover { 
  background: rgba(16, 185, 129, 0.2) !important;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: inherit;
  position: relative;
}

.btn-primary {
  background: var(--green);
  color: #000;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2), 0 4px 12px rgba(0,0,0,0.3);
}

.btn-primary:hover {
  background: #0fd990;
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(16, 185, 129, 0.3), 0 8px 24px rgba(0,0,0,0.4);
}

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

.btn-secondary:hover {
  border-color: var(--text-dim);
  background: var(--bg-card);
  transform: translateY(-2px);
}

/* ============================================
   HERO — THE SHOWPIECE
   ============================================ */

.hero {
  position: relative;
  padding: 160px 0 80px;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  text-align: left;
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--green-dim);
  color: var(--green);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
  border: 1px solid rgba(16, 185, 129, 0.15);
}

.hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.08;
  color: var(--text-bright);
  margin-bottom: 24px;
  letter-spacing: -0.03em;
}

.gradient-text {
  background: linear-gradient(135deg, #10b981 0%, #34d399 40%, #6ee7b7 70%, #a7f3d0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-dim);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero illustration container */
.hero-illustration {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
  max-width: 520px;
  filter: drop-shadow(0 0 60px rgba(16, 185, 129, 0.1));
}

/* Floating decorative shapes around hero */
.hero-float {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.hero-float--1 {
  top: 80px;
  right: -40px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 24px;
  transform: rotate(15deg);
  animation: floatSlow 8s ease-in-out infinite;
}

.hero-float--2 {
  bottom: 40px;
  left: 10%;
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.04);
  border-radius: 50%;
  animation: floatSlow 10s ease-in-out infinite reverse;
}

.hero-float--3 {
  top: 50%;
  left: 5%;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  opacity: 0.4;
  animation: floatDot 6s ease-in-out infinite;
}

.hero-float--4 {
  top: 30%;
  right: 10%;
  width: 4px;
  height: 4px;
  background: var(--cyan);
  border-radius: 50%;
  opacity: 0.3;
  animation: floatDot 8s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: rotate(15deg) translateY(0); }
  50% { transform: rotate(18deg) translateY(-20px); }
}

@keyframes floatDot {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-15px) scale(1.5); opacity: 0.8; }
}

/* Hero SVG block animations */
@keyframes blockPulse1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes blockPulse2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

@keyframes blockPulse3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

@keyframes lineFlow {
  0% { stroke-dashoffset: 20; }
  100% { stroke-dashoffset: 0; }
}

@keyframes connectorPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-svg-block-1 { animation: blockPulse1 4s ease-in-out infinite; }
.hero-svg-block-2 { animation: blockPulse2 5s ease-in-out infinite 0.5s; }
.hero-svg-block-3 { animation: blockPulse3 4.5s ease-in-out infinite 1s; }
.hero-svg-block-4 { animation: blockPulse1 5.5s ease-in-out infinite 1.5s; }
.hero-svg-block-5 { animation: blockPulse2 4s ease-in-out infinite 2s; }

.hero-svg-connector {
  animation: connectorPulse 3s ease-in-out infinite;
}

.hero-svg-flow {
  stroke-dasharray: 4 4;
  animation: lineFlow 2s linear infinite;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-bright);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.section-sub {
  color: var(--text-dim);
  font-size: 1.05rem;
  margin-bottom: 48px;
}

/* Section divider line with fading gradient */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 20%, rgba(16, 185, 129, 0.2) 50%, var(--border) 80%, transparent);
  margin: 0;
  border: none;
}

/* ============================================
   CATEGORIES — WITH ILLUSTRATIONS
   ============================================ */

.categories {
  position: relative;
  padding: 100px 0;
}

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

.category-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  border-color: rgba(16, 185, 129, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(16, 185, 129, 0.05);
}

/* Card background decoration */
.category-card-bg {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  opacity: 0.04;
  transition: opacity 0.3s;
}

.category-card:hover .category-card-bg {
  opacity: 0.08;
}

.category-icon {
  width: 56px;
  height: 56px;
  background: var(--green-dim);
  border: 1px solid rgba(16, 185, 129, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s;
  position: relative;
  z-index: 1;
}

.category-card:hover .category-icon {
  background: rgba(16, 185, 129, 0.15);
  border-color: rgba(16, 185, 129, 0.25);
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.1);
}

.category-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}

.category-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

.coming-soon {
  display: inline-block;
  margin-top: 12px;
  padding: 4px 10px;
  background: rgba(113, 113, 122, 0.1);
  color: var(--text-dim);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ============================================
   COMPARISONS
   ============================================ */

.comparisons {
  position: relative;
  padding: 100px 0;
}

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

.comparison-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.comparison-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--green);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.comparison-card:hover::after {
  width: 60%;
}

.comparison-card:hover {
  border-color: rgba(16, 185, 129, 0.25);
  background: var(--bg-card-hover);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 40px rgba(16, 185, 129, 0.05);
}

.comparison-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 12px;
  background: var(--green-dim);
  color: var(--green);
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.comparison-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
  line-height: 1.3;
}

.comparison-card p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
  flex: 1;
}

.comparison-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-dim);
}

.comparison-arrow {
  color: var(--green);
  font-size: 1.2rem;
  transition: transform 0.3s;
}

.comparison-card:hover .comparison-arrow {
  transform: translateX(6px);
}

/* ============================================
   HOW IT WORKS — WITH VISUAL FLAIR
   ============================================ */

.how-it-works {
  position: relative;
  padding: 100px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}

/* Connecting line between steps */
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 16.6%;
  right: 16.6%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.2), transparent);
}

.step {
  position: relative;
  text-align: center;
  padding: 0 12px;
}

.step-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  position: relative;
}

.step-icon svg {
  width: 100%;
  height: 100%;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ============================================
   SOCIAL PROOF / TRUST STRIP
   ============================================ */

.trust-strip {
  padding: 60px 0;
  text-align: center;
}

.trust-strip p {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-dim);
  opacity: 0.6;
  margin-bottom: 32px;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dim);
  opacity: 0.25;
  letter-spacing: 0.05em;
}

/* ============================================
   NEWSLETTER — ELEVATED
   ============================================ */

.newsletter {
  padding: 80px 0 100px;
}

.newsletter-inner {
  position: relative;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.08), rgba(20, 184, 166, 0.04), rgba(16, 185, 129, 0.02));
  border: 1px solid rgba(16, 185, 129, 0.15);
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  display: flex;
  align-items: center;
  gap: 48px;
  overflow: hidden;
}

/* Background decoration for newsletter */
.newsletter-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner::after {
  content: '';
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(16, 185, 129, 0.06);
  border-radius: 50%;
  pointer-events: none;
}

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

.newsletter-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 12px;
}

.newsletter-content p {
  color: var(--text-dim);
  font-size: 0.95rem;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.newsletter-form input {
  padding: 14px 18px;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
  width: 260px;
  outline: none;
  transition: all 0.2s;
}

.newsletter-form input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.newsletter-form input::placeholder {
  color: var(--text-dim);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
  position: relative;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--text-dim);
  font-size: 0.9rem;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-bright);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--text-dim);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-bright); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-made-with {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================
   ARTICLE LAYOUT (unchanged content)
   ============================================ */

.article {
  padding: 120px 0 80px;
  max-width: 760px;
  margin: 0 auto;
}

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

.article-header .comparison-badge {
  margin-bottom: 20px;
}

.article-header h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: var(--text-bright);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.article-header .article-meta {
  font-size: 0.9rem;
  color: var(--text-dim);
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.article-body h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-bright);
  margin-top: 32px;
  margin-bottom: 12px;
}

.article-body p {
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body ul, .article-body ol {
  margin: 0 0 20px 24px;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.8;
}

.article-body li {
  margin-bottom: 8px;
}

.article-body strong {
  color: var(--text-bright);
}

.article-body a {
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-body a:hover {
  color: #34d399;
}

/* Verdict box */
.verdict {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--green);
  border-radius: var(--radius-sm);
  padding: 28px 32px;
  margin: 32px 0;
}

.verdict h3 {
  margin-top: 0 !important;
  color: var(--green) !important;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.verdict p {
  margin-bottom: 0;
}

/* Comparison table */
.vs-table {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.vs-table.three-col {
  grid-template-columns: 1fr 1fr 1fr;
}

.vs-col {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 24px;
}

.vs-col h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-bright);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.vs-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.vs-col li {
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

.vs-col li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: middle;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
  .mobile-toggle { display: block; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  .nav-links.open { display: flex; }

  .hero {
    padding: 120px 0 60px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-content {
    text-align: center;
  }

  .hero-sub {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta {
    justify-content: center;
  }

  .hero-illustration {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .hero-float { display: none; }

  .category-grid,
  .comparison-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .steps-grid::before { display: none; }

  .newsletter-inner {
    flex-direction: column;
    padding: 36px 24px;
    gap: 24px;
  }

  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }

  .newsletter-form input {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
  }

  .footer-links {
    flex-direction: column;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .vs-table, .vs-table.three-col {
    grid-template-columns: 1fr;
  }

  .article {
    padding: 100px 24px 60px;
  }

  .trust-logos {
    gap: 24px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .category-grid {
    gap: 12px;
  }

  .comparison-grid {
    gap: 12px;
  }
}
