/* ═══════════════════════════════════════════════════════
   HetPadelLab — Design System  (Sportief & Energiek)
   ═══════════════════════════════════════════════════════ */

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

:root {
  /* ── Palette ── */
  --c-dark:        #0f172a;
  --c-dark-soft:   #1e293b;
  --c-bg:          #ffffff;
  --c-surface:     #f8fafc;
  --c-surface-2:   #f1f5f9;
  --c-border:      #e2e8f0;
  --c-border-dark: #cbd5e1;

  --c-text:        #0f172a;
  --c-text-soft:   #475569;
  --c-muted:       #94a3b8;

  --c-primary:     #2563eb;
  --c-primary-dark:#1d4ed8;
  --c-primary-soft: rgba(37,99,235,0.08);

  --c-accent:      #f59e0b;   /* gold — ratings, highlights */
  --c-accent-soft: rgba(245,158,11,0.1);

  --c-cta:         #16a34a;   /* green — buy/shop buttons */
  --c-cta-hover:   #15803d;
  --c-cta-soft:    rgba(22,163,74,0.08);

  --c-danger:      #ef4444;

  /* ── Typography ── */
  --f-body:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --f-head:  'Inter', -apple-system, sans-serif;

  /* ── Spacing ── */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* ── Radius ── */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 9999px;

  /* ── Shadows ── */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 50px rgba(0,0,0,0.15);

  /* ── Transitions ── */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ═══════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════ */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow 0.3s;
}

.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--c-dark);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--c-text-soft);
  transition: color 0.2s;
  position: relative;
}

.nav-links a:hover { color: var(--c-primary); }

.nav-links a.active {
  color: var(--c-primary);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--c-primary);
  border-radius: 1px;
}

.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: var(--r-full);
  transition: background 0.2s, transform 0.2s;
}

.nav-cta-btn:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-dark);
  margin: 5px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ═══════════════════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════════════════ */

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-xl);
}

.section {
  padding: var(--space-4xl) 0;
}

.section--surface { background: var(--c-surface); }
.section--dark    { background: var(--c-dark); color: #fff; }
.section--dark .c-muted { color: #94a3b8; }

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */

.hero {
  position: relative;
  background: var(--c-dark);
  color: #fff;
  padding: 8rem 0 5rem;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(37,99,235,0.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(22,163,74,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(37,99,235,0.15);
  color: #93bbfc;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--space-lg);
  border: 1px solid rgba(37,99,235,0.25);
  width: fit-content;
}

.hero-badge svg { flex-shrink: 0; }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-lg);
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--c-primary), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: #94a3b8;
  max-width: 48ch;
  margin-bottom: var(--space-2xl);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.hero-racket-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--space-xl);
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.hero-racket-card + .hero-racket-card {
  margin-top: var(--space-md);
}

.hero-racket-img {
  width: 80px;
  height: 100px;
  object-fit: contain;
  flex-shrink: 0;
  mix-blend-mode: lighten;
}

.hero-racket-info h3 {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-racket-info .price {
  font-weight: 700;
  color: var(--c-cta);
  font-size: 1.1rem;
}

.hero-trust {
  display: flex;
  gap: var(--space-2xl);
  margin-top: var(--space-3xl);
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero-trust-item svg { color: var(--c-primary); flex-shrink: 0; }

.hero-trust-item span {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--f-body);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
  border-radius: var(--r-full);
  line-height: 1;
}

.btn svg { flex-shrink: 0; }

.btn--lg {
  font-size: 0.95rem;
  padding: 0.85rem 1.8rem;
}

.btn--md {
  font-size: 0.85rem;
  padding: 0.65rem 1.4rem;
}

.btn--sm {
  font-size: 0.8rem;
  padding: 0.5rem 1rem;
}

.btn--primary {
  background: var(--c-primary);
  color: #fff;
}
.btn--primary:hover {
  background: var(--c-primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37,99,235,0.3);
}

.btn--cta {
  background: var(--c-cta);
  color: #fff;
}
.btn--cta:hover {
  background: var(--c-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,163,74,0.3);
}

.btn--outline {
  background: transparent;
  color: var(--c-text);
  border: 1.5px solid var(--c-border-dark);
}
.btn--outline:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.btn--white {
  background: #fff;
  color: var(--c-dark);
}
.btn--white:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

.btn--ghost {
  background: transparent;
  color: #94a3b8;
  padding-left: 0;
  padding-right: 0;
}
.btn--ghost:hover { color: #fff; }

/* ═══════════════════════════════════════════════════════
   SECTION HEADERS
   ═══════════════════════════════════════════════════════ */

.section-header {
  margin-bottom: var(--space-3xl);
}

.section-header--center { text-align: center; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-primary);
  margin-bottom: var(--space-sm);
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  color: var(--c-text);
}

.section--dark .section-title { color: #fff; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  max-width: 55ch;
  margin-top: var(--space-md);
  line-height: 1.65;
}

.section-header--center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════════════════
   RACKET CARDS
   ═══════════════════════════════════════════════════════ */

.racket-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.racket-card {
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s;
  position: relative;
}

.racket-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.racket-card-badge {
  position: absolute;
  top: var(--space-md);
  left: var(--space-md);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--c-primary);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.racket-card-badge--gold {
  background: var(--c-accent);
  color: #1a1a2e;
}

.racket-card-img {
  background: var(--c-surface);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl);
  position: relative;
  overflow: hidden;
}

.racket-card-img img {
  width: 70%;
  height: 80%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.4s var(--ease);
}

.racket-card:hover .racket-card-img img {
  transform: scale(1.06) translateY(-4px);
}

.racket-card-body {
  padding: var(--space-lg);
}

.racket-card-brand {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--c-muted);
  margin-bottom: 0.25rem;
}

.racket-card-name {
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--c-text);
}

.racket-card-name a {
  color: inherit;
  text-decoration: none;
}
.racket-card-name a:hover { color: var(--c-primary); }

.racket-card-specs {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.racket-spec {
  font-size: 0.78rem;
  color: var(--c-text-soft);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.racket-spec svg { color: var(--c-muted); }

/* Rating stars */
.stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
}

.stars svg {
  width: 14px;
  height: 14px;
  color: var(--c-accent);
  fill: var(--c-accent);
}

.stars svg.empty {
  fill: none;
  color: #d1d5db;
}

.stars-score {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text);
  margin-left: 0.4rem;
}

/* Price & CTA row */
.racket-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-md);
  border-top: 1px solid var(--c-border);
}

.racket-price {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--c-text);
}

.racket-price .from {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-muted);
  display: block;
  line-height: 1;
}

.racket-card .btn--cta {
  font-size: 0.78rem;
  padding: 0.5rem 1rem;
}

/* Featured / large card variant */
.racket-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.racket-card--featured .racket-card-img {
  aspect-ratio: auto;
  min-height: 320px;
}

.racket-card--featured .racket-card-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-2xl);
}

.racket-card--featured .racket-card-name {
  font-size: 1.5rem;
}

/* ═══════════════════════════════════════════════════════
   CATEGORY CARDS
   ═══════════════════════════════════════════════════════ */

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.cat-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--space-2xl) var(--space-xl);
  text-align: center;
  transition: all 0.25s var(--ease);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.cat-card:hover {
  background: var(--c-primary-soft);
  border-color: var(--c-primary);
  transform: translateY(-2px);
}

.cat-card-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-soft);
  border-radius: var(--r-md);
  color: var(--c-primary);
}

.cat-card-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.cat-card-count {
  font-size: 0.82rem;
  color: var(--c-muted);
}

/* ═══════════════════════════════════════════════════════
   TRUST / USP BAR
   ═══════════════════════════════════════════════════════ */

.usp-bar {
  background: var(--c-surface);
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  padding: var(--space-xl) 0;
}

.usp-grid {
  display: flex;
  justify-content: center;
  gap: var(--space-3xl);
  flex-wrap: wrap;
}

.usp-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.usp-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary-soft);
  border-radius: var(--r-sm);
  color: var(--c-primary);
  flex-shrink: 0;
}

.usp-text strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--c-text);
}

.usp-text span {
  font-size: 0.78rem;
  color: var(--c-muted);
}

/* ═══════════════════════════════════════════════════════
   COMPARISON TABLE
   ═══════════════════════════════════════════════════════ */

.compare-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.compare-table th,
.compare-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid var(--c-border);
  white-space: nowrap;
}

.compare-table th {
  background: var(--c-surface);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-text-soft);
  position: sticky;
  top: 0;
}

.compare-table tbody tr {
  transition: background 0.15s;
}

.compare-table tbody tr:hover {
  background: var(--c-primary-soft);
}

.compare-table .racket-name-cell {
  font-weight: 700;
  color: var(--c-text);
}

.compare-table .racket-name-cell a {
  color: var(--c-primary);
  text-decoration: none;
}

.compare-table .racket-name-cell a:hover {
  text-decoration: underline;
}

.compare-table .price-cell {
  font-weight: 700;
  color: var(--c-text);
}

.compare-table .score-cell {
  font-weight: 700;
}

.compare-table .score-cell.high { color: var(--c-cta); }
.compare-table .score-cell.mid  { color: var(--c-accent); }

/* ═══════════════════════════════════════════════════════
   GUIDE / ARTICLE CONTENT
   ═══════════════════════════════════════════════════════ */

.article-content {
  max-width: 760px;
  margin: 0 auto;
}

.article-content h2 {
  font-size: 1.6rem;
  font-weight: 800;
  margin: var(--space-3xl) 0 var(--space-md);
  letter-spacing: -0.01em;
}

.article-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: var(--space-2xl) 0 var(--space-sm);
}

.article-content p {
  color: var(--c-text-soft);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
  font-size: 1.05rem;
}

.article-content ul,
.article-content ol {
  margin: var(--space-md) 0 var(--space-xl) var(--space-xl);
}

.article-content li {
  color: var(--c-text-soft);
  line-height: 1.8;
  margin-bottom: var(--space-sm);
  list-style: disc;
}

.article-content ol li { list-style: decimal; }

.article-content a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.article-content blockquote {
  background: var(--c-primary-soft);
  border-left: 4px solid var(--c-primary);
  padding: var(--space-lg) var(--space-xl);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  margin: var(--space-xl) 0;
}

.article-content blockquote p {
  color: var(--c-text);
  margin: 0;
  font-weight: 500;
}

/* Info box */
.info-box {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.info-box--tip {
  border-left: 4px solid var(--c-cta);
  background: var(--c-cta-soft);
}

.info-box--warning {
  border-left: 4px solid var(--c-accent);
  background: var(--c-accent-soft);
}

.info-box h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.info-box p {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  margin: 0;
  line-height: 1.65;
}

/* ═══════════════════════════════════════════════════════
   REVIEW PAGE — RACKET DETAIL
   ═══════════════════════════════════════════════════════ */

.review-hero {
  background: var(--c-surface);
  padding: 7rem 0 var(--space-3xl);
}

.review-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.review-img-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  padding: var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-border);
}

.review-img-wrap img {
  max-height: 400px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.review-badge {
  background: var(--c-primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.review-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
}

.review-summary {
  font-size: 1.05rem;
  color: var(--c-text-soft);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 48ch;
}

.review-score-box {
  display: inline-flex;
  align-items: center;
  gap: var(--space-md);
  background: var(--c-bg);
  border: 1px solid var(--c-border);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--r-md);
  margin-bottom: var(--space-xl);
}

.review-score-num {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--c-cta);
  line-height: 1;
}

.review-score-label {
  font-size: 0.8rem;
  color: var(--c-muted);
}

.review-price-cta {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.review-price {
  font-size: 1.8rem;
  font-weight: 800;
}

/* Spec table on review page */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-border);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  overflow: hidden;
  margin: var(--space-2xl) 0;
}

.spec-item {
  background: var(--c-bg);
  padding: var(--space-md) var(--space-lg);
}

.spec-label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  margin-bottom: 0.2rem;
}

.spec-value {
  font-weight: 700;
  font-size: 0.95rem;
}

/* Pros / Cons */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-lg);
  margin: var(--space-2xl) 0;
}

.pros-box, .cons-box {
  border-radius: var(--r-md);
  padding: var(--space-xl);
}

.pros-box {
  background: var(--c-cta-soft);
  border: 1px solid rgba(22,163,74,0.2);
}

.cons-box {
  background: rgba(239,68,68,0.05);
  border: 1px solid rgba(239,68,68,0.15);
}

.pros-box h3, .cons-box h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pros-box h3 { color: var(--c-cta); }
.cons-box h3 { color: var(--c-danger); }

.pros-box li, .cons-box li {
  font-size: 0.92rem;
  color: var(--c-text-soft);
  margin-bottom: 0.5rem;
  padding-left: 1.2rem;
  position: relative;
  list-style: none;
}

.pros-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--c-cta);
  font-weight: 700;
}

.cons-box li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: var(--c-danger);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════
   SEO CONTENT BLOCK (homepage)
   ═══════════════════════════════════════════════════════ */

.seo-content {
  max-width: 800px;
  margin: 0 auto;
}

.seo-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: var(--space-md);
}

.seo-content p {
  color: var(--c-text-soft);
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

/* ═══════════════════════════════════════════════════════
   TOC (Table of Contents)
   ═══════════════════════════════════════════════════════ */

.toc {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--space-xl);
  margin: var(--space-xl) 0;
}

.toc h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--c-muted);
  margin-bottom: var(--space-md);
}

.toc ol {
  list-style: none;
  counter-reset: toc;
}

.toc li {
  counter-increment: toc;
  margin-bottom: 0.5rem;
}

.toc li a {
  color: var(--c-primary);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.toc li a::before {
  content: counter(toc) ".";
  color: var(--c-muted);
  font-weight: 600;
  font-size: 0.8rem;
  min-width: 1.5rem;
}

.toc li a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */

.footer {
  background: var(--c-dark);
  color: #fff;
  padding: var(--space-4xl) 0 var(--space-2xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer-brand .nav-logo {
  color: #fff;
  margin-bottom: var(--space-md);
  display: inline-flex;
}

.footer-brand p {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 32ch;
}

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: var(--space-lg);
}

.footer-col a {
  display: block;
  color: #cbd5e1;
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: #fff; }

.footer-disclosure {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md);
  padding: var(--space-lg) var(--space-xl);
  margin-bottom: var(--space-2xl);
  font-size: 0.82rem;
  color: #94a3b8;
  line-height: 1.6;
}

.footer-disclosure strong { color: #cbd5e1; }

.footer-disclosure a {
  color: var(--c-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: #64748b;
}

/* ═══════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════ */

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--c-muted);
  padding: var(--space-md) 0;
}

.breadcrumb a {
  color: var(--c-text-soft);
  text-decoration: none;
}

.breadcrumb a:hover { color: var(--c-primary); }

.breadcrumb .sep { color: var(--c-border-dark); }

/* ═══════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════ */

.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-d1 { transition-delay: 0.1s; }
.fade-up-d2 { transition-delay: 0.2s; }
.fade-up-d3 { transition-delay: 0.3s; }
.fade-up-d4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero { min-height: auto; padding: 7rem 0 4rem; }

  .racket-card--featured {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }

  .review-hero-grid { grid-template-columns: 1fr; }
  .review-img-wrap { max-width: 400px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-2xl); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--c-border);
    padding: var(--space-lg);
    gap: var(--space-md);
    box-shadow: var(--shadow-md);
  }

  .container { padding: 0 var(--space-md); }
  .section { padding: var(--space-3xl) 0; }

  .racket-grid { grid-template-columns: 1fr 1fr; gap: var(--space-md); }
  .cat-grid { grid-template-columns: 1fr 1fr; }

  .hero-trust { flex-direction: column; gap: var(--space-md); }

  .compare-table-wrap { margin: 0 calc(-1 * var(--space-md)); border-radius: 0; }

  .pros-cons { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }

  .usp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .racket-grid { grid-template-columns: 1fr; }
  .cat-grid { grid-template-columns: 1fr 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
}
