/* =============================================
   AUTO RECYCLING MARKETERS — MAIN STYLESHEET
   Light Theme
   ============================================= */

:root {
  --green: #22c55e;
  --green-dark: #16a34a;
  --green-light: #ecfdf5;
  --green-border: #bbf7d0;

  /* Light theme backgrounds */
  --body-bg: #ffffff;
  --section-alt: #f8fafb;

  /* Dark footer (kept dark intentionally) */
  --footer-bg: #1a1d2e;
  --footer-border: rgba(255,255,255,.07);

  /* Legacy dark vars — kept for footer/mobile-menu only */
  --dark: #0f172a;
  --dark-2: #1e293b;
  --dark-3: #334155;

  /* Text */
  --heading: #111827;
  --body-text: #374151;
  --muted: #9ca3af;
  --mid: #9ca3af;
  --light: #6b7280;
  --lighter: #374151;

  /* Borders & cards */
  --border: #e5e7eb;
  --card-bg: #ffffff;
  --card-shadow: 0 1px 3px rgba(0,0,0,.06), 0 4px 12px rgba(0,0,0,.06);
  --card-shadow-hover: 0 8px 32px rgba(0,0,0,.12);

  --white: #ffffff;
  --orange: #f97316;
  --orange-light: #fff7ed;
  --blue: #3b82f6;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --transition: .22s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; }

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

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.1; color: var(--heading); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--heading); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; color: var(--heading); }
h4 { font-size: 1.1rem; font-weight: 600; color: var(--heading); }
p  { color: var(--body-text); line-height: 1.75; }
li { color: var(--body-text); }
strong, b { color: var(--heading); }
a { color: var(--green); text-decoration: none; }

.text-green   { color: var(--green); }
.text-orange  { color: var(--orange); }
.text-light   { color: var(--light); }
.text-white   { color: var(--white); }
.text-center  { text-align: center; }

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 128px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.flex       { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col   { flex-direction: column; }
.gap-4  { gap: 4px; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }
.gap-48 { gap: 48px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #0f172a;
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(34,197,94,.3); }

.btn-secondary {
  background: transparent;
  color: var(--lighter);
  border: 2px solid var(--border);
}
.btn-secondary:hover { border-color: var(--green); color: var(--green); }

.btn-orange {
  background: var(--orange);
  color: var(--white);
}
.btn-orange:hover { background: #ea6c0a; transform: translateY(-2px); }

.btn-ghost {
  background: var(--section-alt);
  color: var(--lighter);
  border: 1px solid var(--border);
}
.btn-ghost:hover { background: var(--border); color: var(--heading); }

.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: .875rem; }

/* ── CARDS ── */
.card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
  transition: var(--transition);
}
.card:hover { border-color: var(--green-border); transform: translateY(-4px); box-shadow: var(--card-shadow-hover); }

.card-featured {
  background: linear-gradient(135deg, #ffffff, #f0fdf4);
  border-color: var(--green);
  position: relative;
  box-shadow: 0 4px 24px rgba(34,197,94,.12);
}
.card-featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: #0f172a;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── BADGES ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: .8rem;
  font-weight: 600;
}
.badge-green  { background: var(--green-light); color: var(--green-dark); border: 1px solid var(--green-border); }
.badge-orange { background: rgba(249,115,22,.1); color: #c2410c; border: 1px solid rgba(249,115,22,.25); }
.badge-blue   { background: rgba(59,130,246,.08); color: #1d4ed8; border: 1px solid rgba(59,130,246,.2); }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header .badge { margin-bottom: 16px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p  { max-width: 600px; margin: 0 auto; font-size: 1.1rem; color: var(--light); }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--heading);
}
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--green);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  color: var(--light);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--heading); background: var(--section-alt); }

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block !important;
  padding: 10px 14px !important;
  border-radius: 8px;
  font-size: .875rem !important;
  color: var(--body-text) !important;
}
.nav-dropdown a:hover { background: var(--green-light) !important; color: var(--green-dark) !important; }
.nav-dropdown .dropdown-label {
  font-size: .7rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px 2px;
  margin-top: 4px;
}
.chevron { font-size: .65rem; transition: transform .2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

.nav-cta { display: flex; align-items: center; gap: 10px; }

/* Mobile menu — kept dark for overlay effect */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--heading);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 24px 24px;
  z-index: 999;
  overflow-y: auto;
  max-height: calc(100vh - 68px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-size: .95rem;
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .mobile-section-title {
  font-size: .7rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 16px 0 4px;
}

/* ── HERO ── */
.hero {
  padding: 140px 0 96px;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 55%);
  position: relative;
  overflow: hidden;
}
.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='%2322c55e' fill-opacity='0.04'%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");
  pointer-events: none;
}
.hero-content { position: relative; z-index: 1; }
.hero-eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; flex-wrap: wrap; }
.hero h1 span { color: var(--green); }
.hero .subtitle { font-size: 1.2rem; color: var(--body-text); max-width: 600px; margin: 20px 0 36px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.hero-stat .number { font-size: 2rem; font-weight: 800; color: var(--heading); }
.hero-stat .label  { font-size: .85rem; color: var(--light); }

/* Widget demo */
.hero-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.widget-header {
  background: var(--green);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.widget-header .icon { font-size: 1.2rem; }
.widget-header .title { font-weight: 700; color: var(--dark); font-size: .95rem; }
.widget-header .sub   { font-size: .75rem; color: rgba(15,23,42,.7); }
.widget-body { padding: 20px; }
.widget-form .form-group { margin-bottom: 14px; }
.widget-form label { font-size: .8rem; color: var(--body-text); margin-bottom: 6px; display: block; font-weight: 500; }
.widget-form select,
.widget-form input {
  width: 100%;
  background: var(--section-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--heading);
  font-size: .9rem;
  outline: none;
  transition: var(--transition);
}
.widget-form select:focus,
.widget-form input:focus { border-color: var(--green); }
.widget-btn {
  width: 100%;
  background: var(--green);
  color: var(--dark);
  border: none;
  padding: 13px;
  border-radius: 8px;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--transition);
}
.widget-btn:hover { background: var(--green-dark); }
.widget-result {
  margin-top: 16px;
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-radius: 10px;
  padding: 16px;
  text-align: center;
  display: none;
}
.widget-result .quote-amount { font-size: 2rem; font-weight: 800; color: var(--green-dark); }
.widget-result .quote-label  { font-size: .8rem; color: var(--light); }
.widget-result .quote-cta    { margin-top: 10px; }

/* Quote widget custom element */
quote-widget {
  display: block;
  position: relative;
  z-index: 10;
}

/* ── TRUST BAR / LOGOS ── */
.trust-bar {
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--section-alt);
}
.trust-label { font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); white-space: nowrap; }
.logo-row {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.logo-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 700;
  font-size: .85rem;
  color: var(--body-text);
  white-space: nowrap;
  box-shadow: var(--card-shadow);
}

/* ── FEATURES / HOW IT WORKS ── */
.step-number {
  width: 48px; height: 48px;
  background: var(--green-light);
  border: 2px solid var(--green-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.step-icon {
  width: 56px; height: 56px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.step-connector {
  position: relative;
}
.step-connector::after {
  content: '';
  position: absolute;
  top: 24px;
  left: calc(50% + 24px);
  right: calc(-50% + 24px);
  height: 2px;
  background: linear-gradient(90deg, rgba(34,197,94,.4), rgba(34,197,94,.1));
}

/* ── PRICING ── */
.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
}
.toggle-label { font-size: .9rem; color: var(--body-text); }
.toggle-switch {
  position: relative;
  width: 52px; height: 28px;
  background: var(--border);
  border-radius: 14px;
  cursor: pointer;
  transition: var(--transition);
}
.toggle-switch.active { background: var(--green); }
.toggle-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 22px; height: 22px;
  background: var(--white);
  border-radius: 50%;
  transition: var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-switch.active .toggle-knob { transform: translateX(24px); }
.save-badge {
  background: rgba(249,115,22,.1);
  color: var(--orange);
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.price-amount { font-size: 3rem; font-weight: 800; color: var(--heading); }
.price-period { font-size: .95rem; color: var(--light); }
.price-desc   { font-size: .85rem; color: var(--muted); margin-top: 4px; }
.price-features { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.price-features li { display: flex; align-items: center; gap: 10px; font-size: .9rem; color: var(--body-text); }
.price-features li .check { color: var(--green); font-size: 1rem; }
.price-features li .cross { color: var(--muted); font-size: .9rem; }

/* Add-on cards */
.addon-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  box-shadow: var(--card-shadow);
}
.addon-icon { font-size: 1.8rem; flex-shrink: 0; }
.addon-price { font-size: 1.3rem; font-weight: 800; color: var(--green-dark); }

/* ── TESTIMONIALS ── */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--card-shadow);
}
.testimonial-stars { color: #f59e0b; font-size: 1rem; margin-bottom: 14px; }
.testimonial-text { font-size: .95rem; color: var(--body-text); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--green-light);
  border: 2px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .9rem;
  color: var(--green-dark);
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: .9rem; color: var(--heading); }
.author-title { font-size: .8rem; color: var(--light); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, #f0fdf4 0%, #ecfdf5 100%);
  border: 1px solid var(--green-border);
  border-radius: var(--radius-lg);
  padding: 64px;
  text-align: center;
}
.cta-banner h2 { margin-bottom: 16px; }
.cta-banner p  { max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; color: var(--body-text); }
.cta-buttons   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--heading);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 24px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color .2s;
}
.faq-question:hover { color: var(--green); }
.faq-icon { flex-shrink: 0; font-size: 1.2rem; transition: transform .3s; color: var(--green); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-answer p { padding-bottom: 20px; color: var(--body-text); }
.faq-item.open .faq-icon { transform: rotate(45deg); }

/* ── FOOTER — stays dark ── */
.footer {
  background: var(--footer-bg);
  border-top: 1px solid rgba(255,255,255,.07);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand p { font-size: .9rem; margin: 16px 0 24px; max-width: 280px; color: #94a3b8; }
.footer .nav-logo { color: #ffffff; }
.footer-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #94a3b8;
  text-decoration: none;
  font-size: .875rem;
  padding: 4px 0;
  transition: color .2s;
}
.footer-contact a:hover { color: var(--green); }
.footer-nav h4 { margin-bottom: 20px; font-size: .85rem; text-transform: uppercase; letter-spacing: .08em; color: #6b7280; }
.footer-nav a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: .875rem;
  padding: 5px 0;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--green); }
.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .825rem; color: #6b7280; }
.footer-bottom a { color: #6b7280; text-decoration: none; }
.footer-bottom a:hover { color: var(--green); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 120px 0 72px;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 70%);
  text-align: center;
}
.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p  { max-width: 580px; margin: 0 auto; font-size: 1.1rem; color: var(--body-text); }

/* ── SECTION BACKGROUND UTILITY ── */
.bg-dark-2 { background: var(--section-alt); }
.bg-light   { background: var(--section-alt); }

/* Override text colors inside section-alt (was dark, now light bg) */
.bg-dark-2 .card { background: var(--white); }
.bg-dark-2 .section-header p { color: var(--light); }

/* ── TABLE ── */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th,
.compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: .9rem; }
.compare-table th { font-size: .8rem; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:hover td { background: var(--section-alt); }
.compare-table .highlight td { background: var(--green-light); }
.compare-table td { color: var(--body-text); }
.check-icon { color: var(--green); }
.cross-icon { color: var(--muted); opacity: .6; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .hamburger { display: flex; }
  .hero { padding: 110px 0 64px; }
  .hero-stats { gap: 24px; }
  .cta-banner { padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 1.9rem; }
  .btn-lg { padding: 14px 24px; }
}

/* ── UTILITY ── */
.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; }
.mb-64 { margin-bottom: 64px; }

.bg-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40' fill='none' stroke='%2322c55e' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E");
}

.divider { height: 1px; background: var(--border); margin: 64px 0; }

.tag {
  display: inline-flex;
  align-items: center;
  background: var(--section-alt);
  color: var(--body-text);
  font-size: .78rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 500;
  border: 1px solid var(--border);
}

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; }

/* Highlight box */
.info-box {
  background: var(--green-light);
  border: 1px solid var(--green-border);
  border-left: 4px solid var(--green);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--heading);
}
.info-box.orange {
  background: var(--orange-light);
  border-color: rgba(249,115,22,.2);
  border-left-color: var(--orange);
}

/* Number list */
.number-list { list-style: none; counter-reset: step; display: flex; flex-direction: column; gap: 16px; }
.number-list li {
  counter-increment: step;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.number-list li::before {
  content: counter(step);
  min-width: 28px; height: 28px;
  background: var(--green);
  color: var(--dark);
  font-weight: 800;
  font-size: .8rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Animated gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--green), #16a34a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
