/* ==========================================================================
   InteractiveSex.Toys — 2026 Tech-Editorial Theme
   Aesthetic: Premium tech magazine meets product review site
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Playfair+Display:wght@600;700;800&display=swap');

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

:root {
  --bg: #faf9f7;
  --bg-warm: #f5f3ef;
  --bg-card: #ffffff;
  --bg-dark: #141820;
  --bg-dark-2: #1c2130;
  --text: #1a1d26;
  --text-2: #4a4e5a;
  --text-3: #8b8f9a;
  --accent: #3366ff;
  --accent-hover: #2554db;
  --accent-soft: #eef3ff;
  --accent-glow: rgba(51, 102, 255, 0.12);
  --green: #0d9668;
  --green-bg: #edfcf5;
  --green-border: #a3edcc;
  --red: #d93636;
  --red-bg: #fef2f2;
  --red-border: #f5bfbf;
  --amber: #e89a1c;
  --amber-bg: #fef9ec;
  --border: #e4e2de;
  --border-light: #efeee9;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.09);
  --shadow-xl: 0 24px 48px rgba(0,0,0,0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-sm: 8px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --max-w: 1200px;
  --max-w-narrow: 820px;
}

html { font-size: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.72;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

/* --- Typography --- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.2; color: var(--text); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.35rem); margin-bottom: 0.6rem; }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); margin-bottom: 0.5rem; font-weight: 600; }

p { font-size: 1.0125rem; line-height: 1.8; margin-bottom: 1.2rem; color: var(--text-2); }

a { color: var(--accent); text-decoration: none; transition: 0.2s var(--ease); }
a:hover { color: var(--accent-hover); }

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

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  padding: 0 1.5rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s var(--ease);
}

header.scrolled { box-shadow: 0 1px 12px rgba(0,0,0,0.06); }

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

header h1 {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  font-weight: 800;
  white-space: nowrap;
  margin: 0;
}

header h1 a {
  color: var(--text);
  transition: 0.2s;
}

header h1 a:hover { color: var(--accent); }

nav ul { display: flex; gap: 0.15rem; list-style: none; }

nav a {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.45rem 0.95rem;
  border-radius: 9999px;
  color: var(--text-2);
  transition: all 0.2s var(--ease);
}

nav a:hover, nav a.active {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  margin: 4.5px 0;
  border-radius: 2px;
  transition: all 0.25s var(--ease);
}

.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(3.5px, 4.5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(3.5px, -4.5px); }

/* ==========================================================================
   MAIN
   ========================================================================== */
main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

/* ==========================================================================
   HOMEPAGE — Hero
   ========================================================================== */
.hero-banner {
  position: relative;
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: clamp(3rem, 8vw, 5.5rem) clamp(2rem, 5vw, 4rem);
  margin: 1.5rem 0 3rem;
  overflow: hidden;
  color: #fff;
}

.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(51,102,255,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(139,92,246,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 50% 50%, rgba(255,255,255,0.03) 0%, transparent 60%);
  pointer-events: none;
}

.hero-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-banner > * { position: relative; z-index: 1; }

.hero-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 9999px;
}

.hero-banner h2 {
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  max-width: 700px;
  margin-bottom: 1.25rem;
}

.hero-banner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, #6ea8fe, #a78bfa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-banner p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 560px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.7rem 1.5rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: all 0.2s var(--ease);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 2px 12px rgba(51,102,255,0.3);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(51,102,255,0.4);
  text-decoration: none;
}

.btn-ghost {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.15);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.14);
  color: #fff;
  text-decoration: none;
}

/* --- Homepage Stats --- */
.stats-row {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.stat { text-align: left; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* --- Homepage Category Cards --- */
.categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.cat-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  text-decoration: none;
  color: var(--text);
}

.cat-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md), 0 0 0 3px var(--accent-glow);
  transform: translateY(-2px);
  text-decoration: none;
  color: var(--text);
}

.cat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cat-icon svg { width: 22px; height: 22px; }

.cat-icon.hw { background: linear-gradient(135deg, #fef3c7, #fde68a); color: #92400e; }
.cat-icon.vib { background: linear-gradient(135deg, #fce7f3, #fbcfe8); color: #9d174d; }
.cat-icon.mach { background: linear-gradient(135deg, #e0e7ff, #c7d2fe); color: #3730a3; }
.cat-icon.ai { background: linear-gradient(135deg, #d1fae5, #a7f3d0); color: #065f46; }
.cat-icon.play { background: linear-gradient(135deg, #eef3ff, #dbeafe); color: #1e40af; }
.cat-icon.edit { background: linear-gradient(135deg, #fef9ec, #fef08a); color: #854d0e; }

.cat-card h3 { font-family: var(--font); font-size: 1rem; margin: 0; }
.cat-card span { font-size: 0.85rem; color: var(--text-3); }

/* --- Homepage Section Titles --- */
.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.section-header h2 { margin-bottom: 0; }

.section-header a {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  white-space: nowrap;
}

/* --- Featured Review Card --- */
.featured-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.featured-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-dark);
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  color: #fff;
}

.featured-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
  text-decoration: none;
  color: #fff;
}

.featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  transition: opacity 0.3s, transform 0.5s var(--ease);
}

.featured-card:hover img { opacity: 0.6; transform: scale(1.03); }

.featured-card .overlay {
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
}

.featured-card .tag {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.tag-hw { background: rgba(251,191,36,0.2); color: #fbbf24; }
.tag-sw { background: rgba(99,102,241,0.2); color: #818cf8; }

.featured-card h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  color: #fff;
  margin-bottom: 0.4rem;
}

.featured-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; margin: 0; }

.featured-card .rating-pip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.85rem;
  color: #fbbf24;
  margin-top: 0.75rem;
}

/* --- Latest Reviews Grid --- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: all 0.25s var(--ease);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  text-decoration: none;
  color: var(--text);
}

.review-card .rc-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.65rem;
}

.review-card h3 {
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.35;
}

.review-card .rc-rating {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
  padding: 0.2rem 0.55rem;
  background: var(--amber-bg);
  border-radius: 6px;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.review-card .rc-desc {
  font-size: 0.875rem;
  color: var(--text-3);
  line-height: 1.55;
  margin: 0;
  flex: 1;
}

.review-card .rc-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-3);
  margin-top: 0.85rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--border-light);
}

/* ==========================================================================
   INDEX PAGES (hardware.html, software.html)
   ========================================================================== */
.page-intro {
  text-align: center;
  padding: 2.5rem 1rem 2rem;
}

.page-intro p {
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.section-title {
  margin: 2.5rem 0 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 2px solid var(--border);
}

/* --- Review List Links --- */
.review-list {
  list-style: none;
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.review-list li a {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.8rem 1.15rem;
  color: var(--text);
  font-weight: 500;
  font-size: 0.975rem;
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  transition: all 0.2s var(--ease);
}

.review-list li a::before {
  content: '→';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.review-list li a:hover {
  background: var(--accent-soft);
  border-color: rgba(51,102,255,0.2);
  color: var(--accent);
  text-decoration: none;
  transform: translateX(3px);
}

.review-list li a:hover::before { transform: translateX(3px); }

.review-list li strong {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-left: auto;
  flex-shrink: 0;
}

/* ==========================================================================
   REVIEW PAGES
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.82rem;
  color: var(--text-3);
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.breadcrumb a { color: var(--text-2); font-weight: 500; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb .sep { color: var(--text-3); }

/* Review hero image */
.review-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 1.75rem;
  background: var(--bg-warm);
  box-shadow: var(--shadow-md);
}

/* Rating + Buy row */
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: var(--amber-bg);
  color: var(--amber);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.5rem 1.1rem;
  border-radius: 9999px;
  border: 1.5px solid rgba(232,154,28,0.25);
}

.buy-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  color: #fff;
  background: var(--accent);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  transition: all 0.2s var(--ease);
}

.buy-link:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(51,102,255,0.3);
}

/* --- Review Sections --- */
.review-section {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 1.25rem 0;
  box-shadow: var(--shadow-xs);
}

.review-section h3 {
  font-family: var(--font-display);
  color: var(--text);
  margin-bottom: 0.85rem;
  font-size: 1.25rem;
}

.review-section p { font-size: 0.99rem; max-width: 72ch; }

.review-section ul { list-style: none; padding: 0; }

.review-section ul li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.4rem;
  font-size: 0.96rem;
  color: var(--text-2);
  line-height: 1.65;
}

.review-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- Pros & Cons --- */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.25rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.pros, .cons {
  padding: 1.35rem 1.5rem;
  border-radius: var(--radius);
}

.pros {
  background: var(--green-bg);
  border: 1px solid var(--green-border);
}

.cons {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
}

.pros h3, .cons h3 {
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.65rem;
}

.pros h3 { color: var(--green); }
.cons h3 { color: var(--red); }
.pros ul li::before { background: var(--green); }
.cons ul li::before { background: var(--red); }

/* --- Key Specs / Highlight Box --- */
.specs-box {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1.75rem;
  margin: 1.25rem 0;
}

.specs-box h3 {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 0.75rem;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.85rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.spec-item .spec-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.spec-item .spec-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* --- Verdict Box --- */
.verdict-box {
  background: linear-gradient(135deg, var(--bg-dark) 0%, var(--bg-dark-2) 100%);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 1.5rem 0;
  color: #fff;
}

.verdict-box h3 {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.65rem;
}

.verdict-box p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin: 0;
  max-width: 65ch;
  line-height: 1.7;
}

/* --- Pull Quote --- */
.pull-quote {
  border-left: 3px solid var(--accent);
  padding: 0.75rem 0 0.75rem 1.5rem;
  margin: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
  font-style: italic;
}

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */
.about-hero {
  background: var(--bg-dark);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 7vw, 4.5rem) clamp(2rem, 5vw, 4rem);
  margin: 1.5rem 0 3rem;
  overflow: hidden;
  position: relative;
  color: #fff;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 80% 70%, rgba(51,102,255,0.2) 0%, transparent 70%),
    radial-gradient(ellipse 40% 45% at 20% 30%, rgba(139,92,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-hero-inner { position: relative; z-index: 1; max-width: 640px; }

.about-hero-label {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
}

.about-hero h2 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}

.about-hero p {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  margin: 0;
}

/* About cards grid */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1rem;
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.about-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-card h3 {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.95rem;
  margin: 0;
  color: var(--text-2);
}

/* About text sections */
.about-text-section {
  max-width: 740px;
  margin: 0 auto 3rem;
}

.about-text-section h2 {
  margin-bottom: 1rem;
}

.about-text-section p {
  font-size: 1.02rem;
  max-width: 68ch;
}

.about-section {
  margin-bottom: 3rem;
}

/* Methodology numbered items */
.method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1.25rem;
}

.method-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.35rem 1.5rem;
}

.method-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.method-item h3 {
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.method-item p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-2);
  line-height: 1.6;
}

/* Coverage grid */
.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 1rem;
}

.coverage-item {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
}

.coverage-item h3 {
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.coverage-item p {
  font-size: 0.93rem;
  margin: 0;
  color: var(--text-2);
  line-height: 1.65;
}

/* Contact CTA */
.about-cta {
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem 2rem;
  margin: 2rem 0;
}

.about-cta h2 { margin-bottom: 0.65rem; }

.about-cta p {
  max-width: 480px;
  margin: 0 auto 1.5rem;
  font-size: 1.02rem;
}

@media (max-width: 768px) {
  .method-grid { grid-template-columns: 1fr; }
  .coverage-grid { grid-template-columns: 1fr; }
  .about-hero { margin: 1rem -0.5rem 2rem; border-radius: var(--radius); padding: 2rem 1.5rem; }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.4);
  padding: 2.5rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  margin-top: 2rem;
}

footer p { color: rgba(255,255,255,0.4); margin: 0; font-size: 0.85rem; }
footer a { color: rgba(255,255,255,0.6); }
footer a:hover { color: #fff; }

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim { opacity: 0; transform: translateY(20px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 768px) {
  .header-inner { height: 56px; }
  .nav-toggle { display: block; }

  nav {
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    position: absolute;
    top: 56px;
    left: 0;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
  }

  nav.open { max-height: 220px; }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.25rem 1rem;
  }

  nav a { display: block; padding: 0.65rem 0.75rem; font-size: 0.95rem; }

  .hero-banner { padding: 2.5rem 1.5rem; margin: 1rem -0.5rem 2rem; border-radius: var(--radius); }
  .hero-banner h2 { font-size: 1.75rem; }
  .stats-row { gap: 1.5rem; }
  .stat-number { font-size: 1.5rem; }

  .featured-grid { grid-template-columns: 1fr; }
  .featured-card { min-height: 260px; }

  .categories { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }

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

  .review-section { padding: 1.25rem 1.25rem; }
  .review-meta { flex-direction: column; align-items: flex-start; }
  .review-hero-img { max-height: 240px; border-radius: var(--radius); }

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

@media (max-width: 480px) {
  h2 { font-size: 1.4rem; }
  .hero-banner h2 { font-size: 1.5rem; }
  .featured-card { min-height: 220px; }
  .specs-grid { grid-template-columns: 1fr; }
}

/* --- Focus & Print --- */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media print {
  header, footer, nav { display: none; }
  body { background: #fff; color: #000; }
  main { max-width: 100%; padding: 0; }
  .hero-banner { display: none; }
  .review-section { box-shadow: none; border: 1px solid #ccc; break-inside: avoid; }
}
