@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Montserrat:wght@600;700;800&display=swap');

:root {
  --white: #FFFFFF;
  --forest-green: #166534;
  --forest-green-light: #1e8449;
  --forest-green-dark: #0f4a25;
  --forest-green-hover: #14532d;
  --sky-blue: #38BDF8;
  --sky-blue-dark: #0ea5e9;
  --sky-blue-light: #bae6fd;
  --slate: #334155;
  --slate-light: #475569;
  --slate-lighter: #64748b;
  --sand: #EAD7B7;
  --sand-light: #f5ead5;
  --sand-dark: #d4b896;
  --light-gray: #F8FAFC;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-400: #94a3b8;
  --gray-500: #64748b;
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #94a3b8;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.10);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 24px 60px rgba(0,0,0,0.14);
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.22s ease;
  --transition-fast: 0.15s ease;
  --transition-slow: 0.35s ease;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Montserrat', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-primary);
  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 { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-sans); }
input, textarea, select { font-family: var(--font-sans); }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-primary);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.375rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 0.975rem; }
p { line-height: 1.7; color: var(--text-secondary); }

.section-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest-green);
  background: rgba(22,101,52,0.08);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 12px;
  line-height: 1.2;
}
.section-desc {
  font-size: 1.02rem;
  color: var(--text-secondary);
  max-width: 620px;
  line-height: 1.7;
}
.section-header { margin-bottom: 48px; }
.section-header.centered { text-align: center; }
.section-header.centered .section-desc { margin: 0 auto; }

/* ===== LAYOUT ===== */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-wide {
  max-width: 1420px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 100px 0; }
.bg-light { background: var(--light-gray); }
.bg-sand { background: var(--sand-light); }
.bg-green { background: var(--forest-green); }
.bg-slate { background: var(--slate); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--forest-green);
  color: var(--white);
  border: 2px solid var(--forest-green);
}
.btn-primary:hover {
  background: var(--forest-green-hover);
  border-color: var(--forest-green-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(22,101,52,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--forest-green);
  border: 2px solid var(--forest-green);
}
.btn-secondary:hover {
  background: var(--forest-green);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-sky {
  background: var(--sky-blue);
  color: var(--slate);
  border: 2px solid var(--sky-blue);
}
.btn-sky:hover {
  background: var(--sky-blue-dark);
  border-color: var(--sky-blue-dark);
  color: var(--white);
  transform: translateY(-1px);
}
.btn-white {
  background: var(--white);
  color: var(--forest-green);
  border: 2px solid var(--white);
}
.btn-white:hover {
  background: transparent;
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--text-primary);
}
.btn-sm { padding: 8px 16px; font-size: 0.82rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-xl { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon { padding: 10px; width: 42px; height: 42px; border-radius: var(--radius-sm); justify-content: center; }

/* ===== HEADER / NAVIGATION ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }

.header-top {
  background: var(--forest-green);
  padding: 7px 0;
}
.header-top .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.header-top-info {
  display: flex;
  align-items: center;
  gap: 24px;
}
.header-top-info a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  transition: color var(--transition-fast);
}
.header-top-info a:hover { color: var(--white); }
.header-top-info svg { width: 14px; height: 14px; }
.header-top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-top-right a {
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  transition: color var(--transition-fast);
}
.header-top-right a:hover { color: var(--white); }

.header-main {
  padding: 14px 0;
}
.header-main .container {
  display: flex;
  align-items: center;
  gap: 32px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: var(--forest-green);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 24px; height: 24px; color: var(--white); }
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--forest-green);
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin-top: 3px;
}

.header-search {
  flex: 1;
  max-width: 460px;
}
.search-form {
  display: flex;
  align-items: center;
  background: var(--light-gray);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.search-form:focus-within {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
  background: var(--white);
}
.search-form input {
  flex: 1;
  padding: 10px 16px;
  background: none;
  border: none;
  outline: none;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.search-form input::placeholder { color: var(--text-muted); }
.search-btn {
  padding: 10px 16px;
  background: var(--forest-green);
  color: var(--white);
  border: none;
  cursor: pointer;
  transition: background var(--transition-fast);
  display: flex;
  align-items: center;
}
.search-btn:hover { background: var(--forest-green-hover); }
.search-btn svg { width: 18px; height: 18px; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1.5px solid var(--border);
  background: transparent;
  transition: all var(--transition-fast);
  text-decoration: none;
  position: relative;
}
.header-action-btn:hover {
  background: var(--light-gray);
  color: var(--forest-green);
  border-color: var(--forest-green);
}
.header-action-btn svg { width: 18px; height: 18px; }
.action-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--forest-green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--white);
}
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--transition-fast);
}
.mobile-menu-toggle:hover { background: var(--light-gray); }
.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--slate);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* NAV */
.site-nav {
  border-top: 1px solid var(--border-light);
  background: var(--white);
}
.site-nav .container {
  display: flex;
  align-items: center;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 14px 18px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  white-space: nowrap;
  text-decoration: none;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--forest-green);
  transform: scaleX(0);
  transition: transform var(--transition-fast);
  border-radius: 2px;
}
.nav-link:hover { color: var(--forest-green); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--forest-green); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition-fast); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 700px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0 var(--radius-lg) var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}
.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  transition: background var(--transition-fast);
  text-decoration: none;
}
.mega-menu-item:hover { background: var(--light-gray); }
.mega-menu-icon {
  width: 38px;
  height: 38px;
  background: rgba(22,101,52,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mega-menu-icon svg { width: 20px; height: 20px; color: var(--forest-green); }
.mega-menu-text .name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}
.mega-menu-text .desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 220px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 999;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-link {
  display: block;
  padding: 9px 14px;
  font-size: 0.86rem;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.dropdown-link:hover {
  background: var(--light-gray);
  color: var(--forest-green);
}

/* ===== BREADCRUMB ===== */
.breadcrumb-section {
  padding: 14px 0;
  background: var(--light-gray);
  border-bottom: 1px solid var(--border);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.breadcrumb-item a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.breadcrumb-item a:hover { color: var(--forest-green); }
.breadcrumb-item.active { color: var(--forest-green); font-weight: 500; }
.breadcrumb-sep { color: var(--gray-300); font-size: 0.7rem; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15,74,37,0.88) 0%, rgba(51,65,85,0.72) 60%, rgba(0,0,0,0.40) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 80px 0;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sky-blue);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-title span { color: var(--sky-blue); }
.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.82);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-stats {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0;
  border-left: 1px solid rgba(255,255,255,0.15);
  padding-left: 48px;
  margin-left: 48px;
  flex-shrink: 0;
}
.hero-row {
  display: flex;
  align-items: center;
}
.hero-stat {
  padding: 0 28px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  display: block;
}
.hero-stat-label {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===== CATEGORY CARDS ===== */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.cat-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  transition: all var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  cursor: pointer;
}
.cat-card:hover {
  border-color: var(--forest-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.cat-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(22,101,52,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
}
.cat-card:hover .cat-card-icon { background: var(--forest-green); }
.cat-card-icon svg { width: 30px; height: 30px; color: var(--forest-green); transition: color var(--transition-fast); }
.cat-card:hover .cat-card-icon svg { color: var(--white); }
.cat-card-img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: var(--radius);
}
.cat-card-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.cat-card-count {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===== PRODUCT CARDS ===== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.product-grid-3 { grid-template-columns: repeat(3, 1fr); }
.product-grid-4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  border-color: rgba(22,101,52,0.3);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 200px;
  background: var(--light-gray);
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-card:hover .product-card-img img { transform: scale(1.04); }
.product-card-actions {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(8px);
  transition: all var(--transition);
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}
.product-card-action-btn {
  width: 34px;
  height: 34px;
  background: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid var(--border);
}
.product-card-action-btn:hover { background: var(--forest-green); border-color: var(--forest-green); }
.product-card-action-btn:hover svg { color: var(--white); }
.product-card-action-btn svg { width: 16px; height: 16px; color: var(--slate); }

.product-card-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-cat-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--forest-green);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.product-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  flex: 1;
}
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.product-spec-tag {
  font-size: 0.72rem;
  padding: 3px 8px;
  background: var(--light-gray);
  border-radius: 100px;
  color: var(--text-muted);
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--forest-green);
}
.product-price-old {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}
.product-card-footer {
  padding: 0 20px 20px;
  display: flex;
  gap: 8px;
}
.product-card-footer .btn { flex: 1; }
.product-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.product-stars { color: #f59e0b; font-size: 0.8rem; }

/* ===== COMPARISON TABLE ===== */
.comparison-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.comparison-table th {
  background: var(--forest-green);
  color: var(--white);
  padding: 14px 20px;
  text-align: left;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}
.comparison-table th:first-child { border-radius: var(--radius) 0 0 0; }
.comparison-table th:last-child { border-radius: 0 var(--radius) 0 0; }
.comparison-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-secondary);
  vertical-align: middle;
}
.comparison-table tbody tr:last-child td { border-bottom: none; }
.comparison-table tbody tr:hover { background: rgba(22,101,52,0.03); }
.comparison-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  background: var(--light-gray);
  white-space: nowrap;
}
.comparison-table .check { color: #16a34a; font-size: 1rem; }
.comparison-table .cross { color: #ef4444; font-size: 1rem; }
.comparison-highlight td { background: rgba(22,101,52,0.04) !important; }

/* ===== FILTER SIDEBAR ===== */
.category-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}
.filter-sidebar {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 120px;
}
.filter-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.filter-header h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
}
.filter-clear {
  font-size: 0.78rem;
  color: var(--forest-green);
  cursor: pointer;
  font-weight: 500;
  transition: color var(--transition-fast);
}
.filter-clear:hover { color: var(--forest-green-dark); }

.filter-group {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-light);
}
.filter-group:last-child { border-bottom: none; }
.filter-group-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.filter-group-title svg { width: 14px; height: 14px; color: var(--text-muted); transition: transform var(--transition-fast); }
.filter-group.open .filter-group-title svg { transform: rotate(180deg); }
.filter-options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}
.filter-option:hover { color: var(--forest-green); }
.filter-option input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--forest-green);
  cursor: pointer;
}
.filter-count {
  margin-left: auto;
  font-size: 0.72rem;
  color: var(--text-muted);
  background: var(--light-gray);
  padding: 2px 7px;
  border-radius: 100px;
}
.filter-range {
  display: flex;
  align-items: center;
  gap: 10px;
}
.filter-range input[type="range"] {
  flex: 1;
  accent-color: var(--forest-green);
}
.filter-range-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  white-space: nowrap;
}

.products-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 12px;
}
.products-count {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.products-count span { font-weight: 600; color: var(--text-primary); }
.sort-select {
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.84rem;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
}
.sort-select:focus { border-color: var(--forest-green); }
.view-toggle {
  display: flex;
  gap: 4px;
}
.view-btn {
  padding: 8px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  background: var(--white);
}
.view-btn.active, .view-btn:hover {
  background: var(--forest-green);
  color: var(--white);
  border-color: var(--forest-green);
}
.view-btn svg { width: 16px; height: 16px; display: block; }

/* ===== SPEC TABLE ===== */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.spec-table tr { border-bottom: 1px solid var(--border-light); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 12px 16px;
  vertical-align: top;
}
.spec-table td:first-child {
  font-weight: 600;
  color: var(--text-primary);
  width: 40%;
  background: var(--light-gray);
  border-right: 1px solid var(--border-light);
}
.spec-table td:last-child { color: var(--text-secondary); }

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 28px;
}
.blog-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(22,101,52,0.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
  background: var(--light-gray);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.blog-cat { font-size: 0.72rem; font-weight: 700; color: var(--forest-green); text-transform: uppercase; letter-spacing: 0.08em; }
.blog-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
  flex: 1;
  transition: color var(--transition-fast);
  text-decoration: none;
  display: block;
  font-family: var(--font-heading);
}
.blog-card:hover .blog-title { color: var(--forest-green); }
.blog-excerpt {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--text-muted);
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.blog-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-meta-item svg { width: 13px; height: 13px; }
.blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.blog-featured-img { height: 400px; background: var(--light-gray); overflow: hidden; }
.blog-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-featured-body {
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  background: var(--white);
}
.blog-featured-title {
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.3;
}

/* ===== GUIDE CARDS ===== */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.guide-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.guide-card:hover {
  border-color: var(--forest-green);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.guide-icon {
  width: 52px;
  height: 52px;
  background: rgba(22,101,52,0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.guide-icon svg { width: 26px; height: 26px; color: var(--forest-green); }
.guide-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.guide-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.guide-link {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--forest-green);
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  transition: gap var(--transition-fast);
}
.guide-card:hover .guide-link { gap: 8px; }

/* ===== FEATURE CARDS ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: rgba(22,101,52,0.2);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(22,101,52,0.08);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon svg { width: 28px; height: 28px; color: var(--forest-green); }
.feature-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}
.feature-desc { font-size: 0.84rem; color: var(--text-muted); line-height: 1.6; }

/* ===== INFO CARDS ===== */
.info-block {
  background: rgba(22,101,52,0.05);
  border: 1px solid rgba(22,101,52,0.15);
  border-left: 4px solid var(--forest-green);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.info-block p { font-size: 0.9rem; color: var(--text-secondary); margin: 0; }
.info-block strong { color: var(--forest-green); }
.tip-block {
  background: rgba(56,189,248,0.07);
  border: 1px solid rgba(56,189,248,0.2);
  border-left: 4px solid var(--sky-blue-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}
.warning-block {
  background: rgba(245,158,11,0.07);
  border: 1px solid rgba(245,158,11,0.2);
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 24px 0;
}

/* ===== TABS ===== */
.tabs {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 28px;
  overflow-x: auto;
}
.tab-btn {
  padding: 12px 22px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-bottom: -2px;
  white-space: nowrap;
}
.tab-btn.active, .tab-btn:hover {
  color: var(--forest-green);
  border-bottom-color: var(--forest-green);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ===== FORMS ===== */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full { grid-column: 1 / -1; }
.form-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text-primary);
}
.form-label .req { color: #ef4444; margin-left: 3px; }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-primary);
  background: var(--white);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--forest-green);
  box-shadow: 0 0 0 3px rgba(22,101,52,0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-muted); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-hint { font-size: 0.76rem; color: var(--text-muted); }
.form-error { font-size: 0.76rem; color: #ef4444; }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--forest-green);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-check-label { font-size: 0.84rem; color: var(--text-secondary); line-height: 1.5; }
.form-check-label a { color: var(--forest-green); text-decoration: underline; }
.form-success {
  display: none;
  background: rgba(22,101,52,0.06);
  border: 1.5px solid rgba(22,101,52,0.25);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
}
.form-success.show { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--forest-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-success-icon svg { width: 28px; height: 28px; color: var(--white); }
.form-success h4 { font-size: 1.05rem; color: var(--forest-green); }
.form-success p { font-size: 0.88rem; color: var(--text-secondary); margin: 0; }

/* ===== NEWSLETTER ===== */
.newsletter-section {
  background: var(--forest-green);
  padding: 64px 0;
}
.newsletter-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}
.newsletter-text { flex: 1; }
.newsletter-text h2 { color: var(--white); margin-bottom: 10px; }
.newsletter-text p { color: rgba(255,255,255,0.78); }
.newsletter-form {
  flex: 1;
  max-width: 460px;
}
.newsletter-form-row {
  display: flex;
  gap: 8px;
}
.newsletter-input {
  flex: 1;
  padding: 13px 18px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition-fast);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-input:focus { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.18); }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.page-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-secondary);
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: var(--white);
}
.page-btn.disabled { opacity: 0.4; pointer-events: none; }

/* ===== STATS SECTION ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.stat-item {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--forest-green);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label { font-size: 0.86rem; color: var(--text-muted); }

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}
.badge-green { background: rgba(22,101,52,0.1); color: var(--forest-green); }
.badge-blue { background: rgba(56,189,248,0.15); color: var(--sky-blue-dark); }
.badge-sand { background: var(--sand-light); color: #92400e; }
.badge-slate { background: var(--gray-100); color: var(--slate); }

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 520px;
  background: var(--slate);
  color: var(--white);
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  z-index: 9999;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner h4 { font-size: 0.92rem; font-weight: 600; margin-bottom: 8px; color: var(--white); }
.cookie-banner p { font-size: 0.8rem; color: rgba(255,255,255,0.75); line-height: 1.5; margin-bottom: 14px; }
.cookie-banner p a { color: var(--sky-blue); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--forest-green);
  color: var(--white);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 900;
  border: none;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--forest-green-hover); transform: translateY(-2px); }
.back-to-top svg { width: 20px; height: 20px; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--slate);
  color: rgba(255,255,255,0.75);
  padding-top: 64px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-name { color: var(--white); }
.footer-brand .logo-tagline { color: rgba(255,255,255,0.5); }
.footer-brand-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin: 16px 0 20px;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact a {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition-fast);
  text-decoration: none;
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 2px; color: var(--sky-blue); }
.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--white); }
.footer-links a svg { width: 12px; height: 12px; opacity: 0.5; }
.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color var(--transition-fast);
}
.footer-legal a:hover { color: rgba(255,255,255,0.8); }

/* ===== MISC ===== */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.tag:hover {
  background: var(--forest-green);
  border-color: var(--forest-green);
  color: var(--white);
}
.highlight-text { color: var(--forest-green); font-weight: 600; }
.prose h2 { font-size: 1.4rem; margin: 36px 0 16px; }
.prose h3 { font-size: 1.15rem; margin: 28px 0 12px; }
.prose p { margin-bottom: 18px; font-size: 0.95rem; }
.prose ul, .prose ol { margin: 16px 0 18px 20px; display: flex; flex-direction: column; gap: 8px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { font-size: 0.93rem; color: var(--text-secondary); line-height: 1.7; }
.prose strong { color: var(--text-primary); font-weight: 600; }
.prose a { color: var(--forest-green); text-decoration: underline; }
.prose a:hover { color: var(--forest-green-dark); }

/* ===== ALERT ===== */
.alert {
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 0.88rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 20px 0;
}
.alert-info { background: rgba(56,189,248,0.08); border: 1px solid rgba(56,189,248,0.25); color: #0369a1; }
.alert-success { background: rgba(22,101,52,0.07); border: 1px solid rgba(22,101,52,0.2); color: var(--forest-green); }
.alert-warning { background: rgba(245,158,11,0.07); border: 1px solid rgba(245,158,11,0.25); color: #b45309; }
.alert svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; }

/* ===== STICKY COMPARE BAR ===== */
.compare-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 2px solid var(--forest-green);
  padding: 14px 0;
  z-index: 800;
  box-shadow: 0 -8px 24px rgba(0,0,0,0.1);
  display: none;
}
.compare-bar.show { display: block; }
.compare-bar .container { display: flex; align-items: center; gap: 20px; }
.compare-items { display: flex; gap: 12px; flex: 1; }
.compare-item-slot {
  flex: 1;
  max-width: 180px;
  height: 50px;
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.compare-item-slot.filled { border-style: solid; border-color: var(--forest-green); }

/* ===== SKELETON LOADER ===== */
.skeleton {
  background: linear-gradient(90deg, var(--gray-100) 25%, var(--gray-200) 50%, var(--gray-100) 75%);
  background-size: 200% 100%;
  animation: skeleton-loading 1.5s infinite;
  border-radius: var(--radius-sm);
}
@keyframes skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ===== ACCORDION ===== */
.accordion { border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-item:last-child { border-bottom: none; }
.accordion-header {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: background var(--transition-fast);
  user-select: none;
}
.accordion-header:hover { background: var(--light-gray); }
.accordion-header svg { width: 18px; height: 18px; color: var(--text-muted); transition: transform var(--transition-fast); flex-shrink: 0; }
.accordion-item.open .accordion-header svg { transform: rotate(180deg); }
.accordion-body { display: none; padding: 0 22px 20px; }
.accordion-item.open .accordion-body { display: block; }
.accordion-body p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }

/* ===== STEPS ===== */
.steps-list { display: flex; flex-direction: column; gap: 28px; }
.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.step-num {
  width: 42px;
  height: 42px;
  background: var(--forest-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.step-content h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

/* ===== POLICY ===== */
.policy-wrap { max-width: 860px; margin: 0 auto; }
.policy-section { margin-bottom: 44px; }
.policy-section h2 { font-size: 1.3rem; margin-bottom: 14px; color: var(--forest-green); padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.policy-section h3 { font-size: 1.05rem; margin: 20px 0 10px; }
.policy-section p { font-size: 0.9rem; line-height: 1.75; color: var(--text-secondary); margin-bottom: 14px; }
.policy-section ul, .policy-section ol { margin: 12px 0 16px 20px; }
.policy-section ul { list-style: disc; }
.policy-section ol { list-style: decimal; }
.policy-section li { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 6px; }
.policy-section strong { color: var(--text-primary); }
.policy-section a { color: var(--forest-green); }
.policy-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 20px;
  background: var(--light-gray);
  border-radius: var(--radius);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.policy-meta-item { font-size: 0.82rem; color: var(--text-muted); }
.policy-meta-item strong { color: var(--text-primary); }
.policy-toc {
  background: var(--light-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 40px;
}
.policy-toc h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 14px; color: var(--text-primary); }
.policy-toc ol { margin: 0 0 0 18px; display: flex; flex-direction: column; gap: 7px; list-style: decimal; }
.policy-toc li a { font-size: 0.84rem; color: var(--forest-green); text-decoration: none; transition: color var(--transition-fast); }
.policy-toc li a:hover { color: var(--forest-green-dark); text-decoration: underline; }

/* ===== MOBILE DRAWER ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
}
.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-nav-drawer {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  background: var(--white);
  transform: translateX(-100%);
  transition: transform var(--transition);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.mobile-nav.open { pointer-events: auto; }
.mobile-nav.open .mobile-nav-overlay { opacity: 1; }
.mobile-nav.open .mobile-nav-drawer { transform: translateX(0); }
.mobile-nav-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-nav-close { padding: 6px; cursor: pointer; }
.mobile-nav-close svg { width: 20px; height: 20px; color: var(--text-secondary); }
.mobile-nav-body { padding: 12px 8px; flex: 1; }
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  text-decoration: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--light-gray);
  color: var(--forest-green);
}
.mobile-nav-link svg { width: 18px; height: 18px; }
.mobile-nav-section-title {
  padding: 8px 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 8px;
}
.mobile-submenu { padding-left: 14px; }

/* ===== PAGE HEADER ===== */
.page-hero {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--forest-green-dark) 100%);
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; position: relative; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.02rem; max-width: 620px; position: relative; }
.page-hero-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  object-fit: cover;
  opacity: 0.18;
}

/* ===== SIDEBAR LAYOUT ===== */
.sidebar-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 36px;
  align-items: start;
}
.sidebar-widget {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 24px;
}
.sidebar-widget-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text-primary);
  font-family: var(--font-heading);
}
.sidebar-widget-body { padding: 18px 20px; }

/* ===== TWO-COL CONTENT ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.two-col.reverse .two-col-img { order: 2; }
.two-col-img { border-radius: var(--radius-xl); overflow: hidden; }
.two-col-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ===== MISC UTILS ===== */
.text-center { text-align: center; }
.text-right { text-align: right; }
.font-heading { font-family: var(--font-heading); }
.fw-800 { font-weight: 800; }
.text-green { color: var(--forest-green); }
.text-muted { color: var(--text-muted); }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.gap-16 { gap: 16px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.flex-wrap { flex-wrap: wrap; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.w-full { width: 100%; }
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }
.overflow-hidden { overflow: hidden; }
.img-cover { width: 100%; height: 100%; object-fit: cover; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border-width: 0; }
