/* =========================================
   eScooterHaven — Complete Stylesheet
   ========================================= */

/* --- Google Fonts are loaded in HTML --- */

/* --- CSS Variables --- */
:root {
  --primary: #0f172a;
  --accent: #10b981;
  --accent-dark: #059669;
  --accent-light: #d1fae5;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --text: #0f172a;
  --radius: 12px;
  --shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 25px -3px rgba(0,0,0,0.15);
  --transition: all 0.2s ease;
}

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

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

/* --- Reading Progress Bar --- */
#reading-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  z-index: 9999;
  transition: width 0.1s linear;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--gray-600);
  font-size: 1rem;
  line-height: 1.75;
}

p:last-child { margin-bottom: 0; }

strong { font-weight: 600; color: var(--text); }

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-sm {
  padding: 3rem 0;
}

.section-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.5rem;
  color: var(--text);
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.section-header {
  margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16,185,129,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--gray-200);
}

.btn-outline-dark:hover {
  background: var(--gray-100);
  border-color: var(--gray-400);
}

.btn-white {
  background: var(--white);
  color: var(--accent-dark);
  border-color: var(--white);
}

.btn-white:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

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

.text-link {
  color: var(--accent-dark);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: var(--transition);
}

.text-link:hover {
  gap: 0.5rem;
  color: var(--accent);
}

/* --- Header --- */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow 0.3s ease;
}

#site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--text);
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-bolt {
  color: var(--accent);
  font-size: 1.4rem;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex: 1;
  justify-content: center;
}

.main-nav a {
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  background: var(--gray-100);
}

.main-nav a.nav-highlight {
  color: var(--accent-dark);
  background: var(--accent-light);
  font-weight: 600;
}

.main-nav a.nav-highlight:hover {
  background: #a7f3d0;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--gray-600);
  transition: var(--transition);
  cursor: pointer;
}

.btn-icon:hover {
  background: var(--gray-100);
  color: var(--text);
}

.btn-icon svg {
  width: 20px;
  height: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
  transition: var(--transition);
}

.hamburger:hover { background: var(--gray-100); }

.hamburger span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
  display: none;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--white);
  z-index: 999;
  padding: 2rem 1.5rem;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav a {
  display: block;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition);
}

.mobile-nav a:hover {
  color: var(--accent);
  padding-left: 0.5rem;
}

/* --- Hero Section --- */
.hero {
  background: var(--primary);
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(16,185,129,0.15);
  color: var(--accent);
  border: 1px solid rgba(16,185,129,0.3);
  padding: 0.35rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}

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

.hero-sub {
  color: var(--gray-400);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin-bottom: 2.25rem;
  line-height: 1.7;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero-trust {
  color: var(--gray-400);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.hero-trust .dot {
  width: 4px;
  height: 4px;
  background: var(--gray-400);
  border-radius: 50%;
}

/* Inner page hero */
.page-hero {
  background: var(--primary);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
}

.page-hero p {
  color: var(--gray-400);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
}

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1.5rem 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-dark);
}

.trust-icon svg {
  width: 24px;
  height: 24px;
}

.trust-text strong {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}

.trust-text span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* --- Category Grid --- */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.category-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.category-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.category-icon svg {
  width: 28px;
  height: 28px;
}

.category-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.35rem;
  color: var(--text);
}

.category-card p {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.5;
  margin: 0;
}

/* Category color variants */
.cat-repair { background: #fef2f2; color: #dc2626; }
.cat-trouble { background: #fffbeb; color: #d97706; }
.cat-maintenance { background: #f0fdf4; color: #16a34a; }
.cat-buying { background: #eff6ff; color: #2563eb; }
.cat-reviews { background: #fdf4ff; color: #9333ea; }
.cat-compare { background: #fff7ed; color: #ea580c; }
.cat-battery { background: #fefce8; color: #ca8a04; }
.cat-tires { background: #f0fdf4; color: #15803d; }
.cat-motor { background: #f0f9ff; color: #0284c7; }
.cat-safety { background: #fff1f2; color: #e11d48; }
.cat-beginner { background: #f5f3ff; color: #7c3aed; }
.cat-accessories { background: #fdf2f8; color: #db2777; }

/* --- Badge Pills --- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-repair { background: #fef2f2; color: #dc2626; }
.badge-trouble { background: #fffbeb; color: #d97706; }
.badge-maintenance { background: #f0fdf4; color: #16a34a; }
.badge-buying { background: #eff6ff; color: #2563eb; }
.badge-reviews { background: #fdf4ff; color: #9333ea; }
.badge-battery { background: #fefce8; color: #ca8a04; }
.badge-tires { background: #f0fdf4; color: #15803d; }
.badge-safety { background: #fff1f2; color: #e11d48; }
.badge-beginner { background: #f5f3ff; color: #7c3aed; }
.badge-accessories { background: #fdf2f8; color: #db2777; }
.badge-green { background: var(--accent-light); color: var(--accent-dark); }

/* --- Blog Cards --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.blog-grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--gray-800) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.blog-card-img.img-repair { background: linear-gradient(135deg, #1e293b, #dc2626); }
.blog-card-img.img-buying { background: linear-gradient(135deg, #1e40af, #3b82f6); }
.blog-card-img.img-maintenance { background: linear-gradient(135deg, #065f46, #10b981); }
.blog-card-img.img-battery { background: linear-gradient(135deg, #78350f, #f59e0b); }
.blog-card-img.img-trouble { background: linear-gradient(135deg, #7c2d12, #fb923c); }
.blog-card-img.img-safety { background: linear-gradient(135deg, #881337, #f43f5e); }
.blog-card-img.img-tires { background: linear-gradient(135deg, #14532d, #22c55e); }
.blog-card-img.img-motor { background: linear-gradient(135deg, #0c4a6e, #0ea5e9); }

.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-badge {
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
  color: var(--text);
}

.blog-card h3 a {
  color: inherit;
  transition: var(--transition);
}

.blog-card h3 a:hover { color: var(--accent-dark); }

.blog-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: var(--gray-400);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.blog-card-meta span {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.blog-card-meta svg {
  width: 14px;
  height: 14px;
}

/* Featured card variant */
.blog-card.featured {
  border: 2px solid var(--accent);
}

/* --- CTA Sections --- */
.cta-section {
  background: var(--accent-dark);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.03) 40px,
    rgba(255,255,255,0.03) 80px
  );
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 650px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--white);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.cta-stats {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta-stat {
  text-align: center;
}

.cta-stat strong {
  display: block;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.cta-stat span {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
}

/* --- Newsletter --- */
.newsletter-section {
  background: var(--accent-light);
  padding: 4rem 0;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.newsletter-section p {
  color: var(--gray-600);
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  background: var(--white);
  transition: var(--transition);
  outline: none;
}

.newsletter-form input:focus {
  border-color: var(--accent);
}

.newsletter-disclaimer {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 1rem;
}

/* --- Footer --- */
.site-footer {
  background: var(--primary);
  color: var(--gray-400);
  padding: 4rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .logo {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  font-family: 'Inter', sans-serif;
}

.footer-col ul li {
  margin-bottom: 0.6rem;
}

.footer-col ul a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul a:hover {
  color: var(--accent);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--accent);
  color: var(--white);
}

.social-link svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: var(--gray-400);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom a {
  color: var(--gray-400);
  text-decoration: underline;
  font-size: 0.85rem;
  transition: var(--transition);
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

/* --- Sidebar --- */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 2.5rem;
  align-items: start;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  position: sticky;
  top: 90px;
}

.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.sidebar-widget h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--accent-light);
  color: var(--text);
}

.search-form {
  display: flex;
  gap: 0.5rem;
}

.search-form input {
  flex: 1;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 8px;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
}

.search-form input:focus {
  border-color: var(--accent);
}

.search-form button {
  padding: 0.7rem 1rem;
  background: var(--accent);
  color: var(--white);
  border-radius: 8px;
  transition: var(--transition);
}

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

.search-form button svg {
  width: 18px;
  height: 18px;
  display: block;
}

.categories-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.categories-list li:last-child { border-bottom: none; }

.categories-list a {
  color: var(--gray-600);
  font-size: 0.9rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.categories-list a:hover { color: var(--accent-dark); }

.cat-count {
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.recent-post-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-100);
}

.recent-post-item:last-child { border-bottom: none; }

.recent-post-thumb {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.recent-post-info h4 {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.recent-post-info h4 a {
  transition: var(--transition);
}

.recent-post-info h4 a:hover { color: var(--accent-dark); }

.recent-post-info span {
  font-size: 0.75rem;
  color: var(--gray-400);
}

.sidebar-cta {
  background: linear-gradient(135deg, var(--primary), #1e3a5f);
  border-radius: var(--radius);
  padding: 1.75rem;
  text-align: center;
  color: var(--white);
  border: none;
}

.sidebar-cta h3 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  border: none;
  padding: 0;
}

.sidebar-cta p {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  margin-bottom: 1.25rem;
}

/* --- Category Filter Pills --- */
.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.filter-pill {
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  border: 2px solid var(--gray-200);
  color: var(--gray-600);
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.filter-pill:hover,
.filter-pill.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
  font-size: 0.875rem;
  color: var(--gray-400);
  padding: 1rem 0;
}

.breadcrumbs a {
  color: var(--gray-400);
  transition: var(--transition);
}

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

.breadcrumbs .sep {
  color: var(--gray-400);
}

.breadcrumbs .current {
  color: var(--gray-600);
  font-weight: 500;
}

/* --- Article Post Styles --- */
.post-hero {
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.post-hero.hero-repair { background: linear-gradient(135deg, #0f172a, #1e293b); }
.post-hero.hero-buying { background: linear-gradient(135deg, #1e3a5f, #1e40af); }
.post-hero.hero-maintenance { background: linear-gradient(135deg, #064e3b, #065f46); }
.post-hero.hero-battery { background: linear-gradient(135deg, #451a03, #78350f); }
.post-hero.hero-trouble { background: linear-gradient(135deg, #431407, #7c2d12); }
.post-hero.hero-tires { background: linear-gradient(135deg, #14532d, #166534); }

.post-hero-content {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.post-hero .breadcrumbs {
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.5);
}

.post-hero .breadcrumbs a { color: rgba(255,255,255,0.5); }
.post-hero .breadcrumbs a:hover { color: var(--accent); }
.post-hero .breadcrumbs .current { color: rgba(255,255,255,0.8); }
.post-hero .breadcrumbs .sep { color: rgba(255,255,255,0.3); }

.post-hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.post-meta svg {
  width: 15px;
  height: 15px;
}

/* --- Article Content --- */
.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
}

.article-body h2 {
  font-size: 1.75rem;
  margin: 2rem 0 1rem;
  color: var(--text);
  padding-top: 0.5rem;
}

.article-body h3 {
  font-size: 1.35rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--text);
}

.article-body h4 {
  font-size: 1.1rem;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.article-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.article-body ul,
.article-body ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.article-body ul { list-style: disc; }
.article-body ol { list-style: decimal; }

.article-body li {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.article-body a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: var(--transition);
}

.article-body a:hover { color: var(--accent); }

.article-body blockquote {
  border-left: 4px solid var(--accent);
  background: var(--accent-light);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--gray-600);
}

.article-body code {
  background: var(--gray-100);
  color: var(--accent-dark);
  padding: 0.15rem 0.4rem;
  border-radius: 4px;
  font-size: 0.9em;
  font-family: 'Courier New', monospace;
}

.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  overflow-x: auto;
  display: block;
}

.article-body th {
  background: var(--primary);
  color: var(--white);
  padding: 0.875rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.article-body td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  vertical-align: top;
}

.article-body tr:nth-child(even) td { background: var(--gray-50); }
.article-body tr:last-child td { border-bottom: none; }

/* Info boxes */
.box {
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.box-tip {
  background: #f0fdf4;
  border: 1.5px solid #86efac;
  border-left: 4px solid var(--accent);
}

.box-warning {
  background: #fffbeb;
  border: 1.5px solid #fcd34d;
  border-left: 4px solid #f59e0b;
}

.box-danger {
  background: #fef2f2;
  border: 1.5px solid #fca5a5;
  border-left: 4px solid #ef4444;
}

.box-info {
  background: #eff6ff;
  border: 1.5px solid #93c5fd;
  border-left: 4px solid #3b82f6;
}

.box-title {
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.box-tip .box-title { color: var(--accent-dark); }
.box-warning .box-title { color: #b45309; }
.box-danger .box-title { color: #dc2626; }
.box-info .box-title { color: #2563eb; }

.box p { margin: 0; font-size: 0.95rem; }

/* Key Takeaways */
.key-takeaways {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.key-takeaways h3 {
  color: var(--accent);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.key-takeaways ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.key-takeaways li {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  display: flex;
  gap: 0.6rem;
  line-height: 1.6;
}

.key-takeaways li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Table of Contents */
.toc {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.toc h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text);
}

.toc ol {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
}

.toc li {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--gray-600);
}

.toc a {
  color: var(--accent-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

/* --- Author Box --- */
.author-box {
  background: var(--gray-50);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.author-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.author-info h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.author-info .author-role {
  font-size: 0.85rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.author-info p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0;
}

/* --- Tag Cloud --- */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.5rem 0;
}

.tag {
  padding: 0.35rem 0.875rem;
  background: var(--gray-100);
  color: var(--gray-600);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
  border: 1.5px solid var(--gray-200);
}

.tag:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-color: var(--accent);
}

/* --- Related Posts --- */
.related-posts {
  padding: 3rem 0;
  border-top: 2px solid var(--gray-200);
}

.related-posts h2 {
  font-size: 1.5rem;
  margin-bottom: 1.75rem;
}

/* --- FAQ Accordion --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-icon {
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--gray-600);
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1;
}

.faq-item.open .faq-icon {
  background: var(--accent);
  color: var(--white);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  background: var(--gray-50);
}

.faq-answer.open {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* --- Pagination --- */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
}

.page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  cursor: pointer;
}

.page-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-light);
}

.page-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.page-btn.arrow {
  font-size: 1.1rem;
}

/* --- Stats Section --- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--gray-600);
  font-weight: 500;
}

/* --- Team Cards --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.team-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  font-family: 'Poppins', sans-serif;
}

.avatar-alex { background: linear-gradient(135deg, #10b981, #059669); }
.avatar-jordan { background: linear-gradient(135deg, #3b82f6, #2563eb); }
.avatar-sam { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.team-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.team-role {
  color: var(--accent-dark);
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.team-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* --- Values Cards --- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.value-card {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--accent-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.75rem;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* --- Contact Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2.5rem;
}

.contact-form h2 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  color: var(--text);
  background: var(--white);
}

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

.form-group textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.info-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}

.info-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.info-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent-dark);
}

.info-card-icon svg {
  width: 24px;
  height: 24px;
}

.info-card h4 {
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  color: var(--text);
}

.info-card p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin: 0;
  line-height: 1.6;
}

/* --- Step Cards (Start Here page) --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.step-card {
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: var(--transition);
}

.step-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.step-content p {
  font-size: 0.875rem;
  color: var(--gray-600);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

/* --- Back to Top --- */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 999;
  box-shadow: 0 4px 15px rgba(16,185,129,0.4);
}

#back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#back-to-top:hover {
  background: var(--accent-dark);
  transform: translateY(-3px);
}

#back-to-top svg {
  width: 20px;
  height: 20px;
}

/* --- Privacy Page --- */
.privacy-content h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
  color: var(--text);
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.privacy-content h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.privacy-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}

.privacy-content li {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

/* --- Utility Classes --- */
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

.bg-gray { background: var(--gray-50); }
.bg-white { background: var(--white); }

.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 2rem 0;
}

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

/* 1200px */
@media (max-width: 1200px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
    gap: 2rem;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }

  .article-layout {
    grid-template-columns: 1fr 280px;
    gap: 2rem;
  }
}

/* 992px */
@media (max-width: 992px) {
  .category-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    display: none;
  }

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

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }
}

/* 768px */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .hero { padding: 3rem 0 4rem; }
  .hero::after { height: 50px; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .newsletter-form {
    flex-direction: column;
  }

  .cta-stats {
    gap: 1.5rem;
  }

  .author-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
  }

  .footer-bottom-links {
    justify-content: center;
  }

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

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

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

  .post-meta {
    gap: 0.75rem;
  }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.5rem; }
}

/* 576px */
@media (max-width: 576px) {
  .container { padding: 0 1rem; }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
  }

  .category-card {
    padding: 1.25rem 1rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }

  .trust-item {
    padding: 0.5rem;
  }

  .trust-icon {
    width: 40px;
    height: 40px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero h1 { font-size: 1.75rem; }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form {
    padding: 1.5rem;
  }

  .faq-question {
    font-size: 0.95rem;
    padding: 1rem 1.25rem;
  }

  .page-btn {
    width: 36px;
    height: 36px;
    font-size: 0.8rem;
  }
}
