/* TradeCalc — UK Trade Calculator Site
   Design: Professional, fast, trustworthy
   Palette: Deep navy + amber accent (construction/tools feel) */

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Surfaces */
  --bg: #f8f9fb;
  --surface: #ffffff;
  --surface-2: #f1f3f7;
  --surface-3: #e8ebf0;
  --border: #d5d9e0;
  --border-light: #e8ebf0;
  
  /* Text */
  --text: #1a1f2e;
  --text-muted: #5a6178;
  --text-faint: #9198ab;
  --text-inverse: #ffffff;
  
  /* Primary — Deep Navy */
  --primary: #1e2a4a;
  --primary-hover: #2a3a62;
  --primary-light: #e8ecf4;
  
  /* Accent — Amber/Gold */
  --accent: #e8a020;
  --accent-hover: #d49018;
  --accent-light: #fef6e6;
  
  /* Semantic */
  --success: #1a8754;
  --success-light: #e6f4ed;
  --info: #2563eb;
  --info-light: #eff6ff;
  --warning: #d97706;
  --warning-light: #fffbeb;
  --error: #dc2626;
  --error-light: #fef2f2;
  
  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.25rem;
  --sp-6: 1.5rem;
  --sp-8: 2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  
  /* Type */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.8125rem);
  --text-sm: clamp(0.8125rem, 0.78rem + 0.2vw, 0.875rem);
  --text-base: clamp(0.9375rem, 0.9rem + 0.2vw, 1rem);
  --text-lg: clamp(1.0625rem, 1rem + 0.4vw, 1.25rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.8vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
  
  /* Radius */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(26,31,46,0.05);
  --shadow: 0 2px 8px rgba(26,31,46,0.08);
  --shadow-md: 0 4px 16px rgba(26,31,46,0.1);
  --shadow-lg: 0 8px 32px rgba(26,31,46,0.12);
  
  /* Transitions */
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --duration: 180ms;
  
  /* Layout */
  --content-max: 1200px;
  --content-narrow: 800px;
}

/* Dark mode */
[data-theme="dark"] {
  --bg: #0f1219;
  --surface: #171c28;
  --surface-2: #1e2433;
  --surface-3: #262d3f;
  --border: #2e3650;
  --border-light: #262d3f;
  --text: #e1e4ea;
  --text-muted: #8b92a8;
  --text-faint: #5a6178;
  --text-inverse: #0f1219;
  --primary: #4a6fa5;
  --primary-hover: #5a82bf;
  --primary-light: #1e2a4a;
  --accent: #f0b040;
  --accent-hover: #e8a020;
  --accent-light: #2a2418;
  --success: #34d399;
  --success-light: #132a20;
  --info: #60a5fa;
  --info-light: #1a2238;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
  --shadow: 0 2px 8px rgba(0,0,0,0.25);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.35);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --bg: #0f1219;
    --surface: #171c28;
    --surface-2: #1e2433;
    --surface-3: #262d3f;
    --border: #2e3650;
    --border-light: #262d3f;
    --text: #e1e4ea;
    --text-muted: #8b92a8;
    --text-faint: #5a6178;
    --text-inverse: #0f1219;
    --primary: #4a6fa5;
    --primary-hover: #5a82bf;
    --primary-light: #1e2a4a;
    --accent: #f0b040;
    --accent-hover: #e8a020;
    --accent-light: #2a2418;
    --success: #34d399;
    --success-light: #132a20;
    --info: #60a5fa;
    --info-light: #1a2238;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
    --shadow: 0 2px 8px rgba(0,0,0,0.25);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.35);
  }
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: 5rem;
}

body {
  min-height: 100dvh;
  font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
}

a { color: var(--primary); text-decoration: none; transition: color var(--duration) var(--ease); }
a:hover { color: var(--primary-hover); }

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cabinet Grotesk', 'General Sans', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  text-wrap: balance;
  color: var(--text);
}

p, li { text-wrap: pretty; max-width: 72ch; }

::selection { background: rgba(232,160,32,0.25); color: var(--text); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: var(--radius-sm); }

/* ========================================
   LAYOUT
   ======================================== */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.container--narrow {
  max-width: var(--content-narrow);
}

/* ========================================
   HEADER / NAV
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border-light);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 3.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: 'Cabinet Grotesk', sans-serif;
  font-weight: 800;
  font-size: var(--text-lg);
  color: var(--text);
  text-decoration: none;
}

.logo svg { flex-shrink: 0; }

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

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
}

.nav-links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: var(--accent);
  color: var(--primary) !important;
  font-weight: 600;
  font-size: var(--text-sm);
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.nav-cta:hover { background: var(--accent-hover); transform: translateY(-1px); }

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  color: var(--text-muted);
  transition: color var(--duration) var(--ease);
  display: flex;
  align-items: center;
}

.theme-toggle:hover { color: var(--text); }

/* Mobile nav */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  color: var(--text);
}

@media (max-width: 768px) {
  .mobile-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 3.5rem;
    left: 0;
    right: 0;
    background: var(--surface);
    border-bottom: 1px solid var(--border-light);
    flex-direction: column;
    padding: var(--sp-4) var(--sp-6);
    gap: var(--sp-3);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  padding: clamp(var(--sp-12), 8vw, var(--sp-24)) 0 clamp(var(--sp-8), 6vw, var(--sp-16));
  text-align: center;
}

.hero h1 {
  font-size: var(--text-3xl);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-4);
}

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

.hero .subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto var(--sp-8);
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

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

.hero-stat .number {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--accent);
}

.hero-stat .label {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-top: var(--sp-1);
}

/* ========================================
   SEARCH BAR
   ======================================== */
.search-section {
  padding-bottom: var(--sp-8);
}

.search-container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.search-input {
  width: 100%;
  padding: var(--sp-4) var(--sp-6);
  padding-left: 3rem;
  font-size: var(--text-base);
  border: 2px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}

.search-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(232,160,32,0.15);
}

.search-input::placeholder { color: var(--text-faint); }

.search-icon {
  position: absolute;
  left: var(--sp-4);
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-faint);
  pointer-events: none;
}

.search-results {
  position: absolute;
  top: calc(100% + var(--sp-2));
  left: 0;
  right: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  overflow-y: auto;
  z-index: 50;
  display: none;
}

.search-results.active { display: block; }

.search-result-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  transition: background var(--duration) var(--ease);
  text-decoration: none;
  color: var(--text);
}

.search-result-item:hover { background: var(--surface-2); }

.search-result-item .category-badge {
  font-size: var(--text-xs);
  padding: var(--sp-1) var(--sp-2);
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
}

/* ========================================
   CATEGORY GRID
   ======================================== */
.categories-section {
  padding: var(--sp-8) 0 var(--sp-16);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-6);
}

.section-title {
  font-size: var(--text-xl);
}

.section-count {
  font-size: var(--text-sm);
  color: var(--text-muted);
  background: var(--surface-2);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--sp-4);
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease), transform var(--duration) var(--ease);
  text-decoration: none;
  color: var(--text);
  display: flex;
  flex-direction: column;
}

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

.category-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-4);
  font-size: 1.5rem;
}

.category-card h3 {
  font-size: var(--text-lg);
  margin-bottom: var(--sp-2);
}

.category-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  flex-grow: 1;
}

.category-count {
  font-size: var(--text-xs);
  color: var(--text-faint);
  margin-top: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid var(--border-light);
}

/* ========================================
   CALCULATOR LIST (category page)
   ======================================== */
.calc-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--sp-4);
}

.calc-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  text-decoration: none;
  color: var(--text);
  display: block;
}

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

.calc-card h3 {
  font-size: var(--text-base);
  font-weight: 600;
  margin-bottom: var(--sp-1);
}

.calc-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* ========================================
   CALCULATOR PAGE
   ======================================== */
.calc-page {
  padding: var(--sp-8) 0;
}

.calc-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;
}

.calc-breadcrumb a { color: var(--text-muted); }
.calc-breadcrumb a:hover { color: var(--accent); }
.calc-breadcrumb span { color: var(--text-faint); }

.calc-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: var(--sp-8);
  align-items: start;
}

@media (max-width: 900px) {
  .calc-layout { grid-template-columns: 1fr; }
}

.calc-main {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
}

.calc-title {
  font-size: var(--text-xl);
  margin-bottom: var(--sp-2);
}

.calc-desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--sp-6);
}

.calc-standard {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-xs);
  color: var(--success);
  background: var(--success-light);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--radius);
  margin-bottom: var(--sp-6);
  font-weight: 600;
}

/* Form elements */
.form-group {
  margin-bottom: var(--sp-5);
}

.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
  color: var(--text);
}

.form-hint {
  font-size: var(--text-xs);
  color: var(--text-faint);
  font-weight: 400;
  margin-left: var(--sp-2);
}

.form-input, .form-select {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--text-base);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--text);
  transition: border-color var(--duration) var(--ease);
}

.form-input:focus, .form-select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.12);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (max-width: 500px) {
  .form-row { grid-template-columns: 1fr; }
}

/* Results */
.results-panel {
  margin-top: var(--sp-6);
  padding: var(--sp-5);
  background: var(--primary-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.results-title {
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--sp-3) 0;
  border-bottom: 1px solid var(--border-light);
}

.result-row:last-child { border-bottom: none; }

.result-label {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

.result-value {
  font-family: 'Cabinet Grotesk', sans-serif;
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--text);
}

.result-value.highlight {
  color: var(--accent);
}

/* ========================================
   SIDEBAR
   ======================================== */
.calc-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

/* Ad placeholder */
.ad-slot {
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  text-align: center;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* Affiliate box */
.affiliate-box {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: var(--sp-5);
}

.affiliate-box h4 {
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.affiliate-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-radius: var(--radius);
  transition: background var(--duration) var(--ease);
  text-decoration: none;
  color: var(--text);
  margin-bottom: var(--sp-2);
}

.affiliate-link:hover { background: var(--surface-2); }

.affiliate-link img {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.affiliate-link .name { font-size: var(--text-sm); font-weight: 500; }
.affiliate-link .deal { font-size: var(--text-xs); color: var(--accent); }

/* PlanScan AI CTA */
.planscan-cta {
  background: linear-gradient(135deg, var(--primary), #2a3a62);
  border-radius: var(--radius-lg);
  padding: var(--sp-6);
  color: var(--text-inverse);
}

.planscan-cta h4 {
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: var(--sp-2);
  color: var(--text-inverse);
}

.planscan-cta p {
  font-size: var(--text-sm);
  opacity: 0.85;
  margin-bottom: var(--sp-4);
}

.planscan-cta .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-5);
  background: var(--accent);
  color: var(--primary);
  font-weight: 700;
  font-size: var(--text-sm);
  border-radius: var(--radius);
  text-decoration: none;
  transition: background var(--duration) var(--ease), transform var(--duration) var(--ease);
}

.planscan-cta .cta-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* ========================================
   HOW IT WORKS / ACCORDION
   ======================================== */
.info-section {
  margin-top: var(--sp-6);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.info-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: var(--surface);
  border: none;
  cursor: pointer;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  transition: background var(--duration) var(--ease);
}

.info-toggle:hover { background: var(--surface-2); }

.info-toggle svg {
  transition: transform var(--duration) var(--ease);
}

.info-toggle.open svg { transform: rotate(180deg); }

.info-content {
  display: none;
  padding: var(--sp-5);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  background: var(--surface);
  border-top: 1px solid var(--border-light);
}

.info-content.open { display: block; }

.info-content p { margin-bottom: var(--sp-3); }
.info-content ul { margin: var(--sp-3) 0; padding-left: var(--sp-6); }
.info-content li { margin-bottom: var(--sp-2); }

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.7);
  padding: var(--sp-12) 0 var(--sp-8);
  margin-top: var(--sp-16);
}

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

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

.footer-brand {
  max-width: 300px;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: var(--sp-3);
}

.footer-brand p {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.footer-col h5 {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col ul { list-style: none; }

.footer-col li { margin-bottom: var(--sp-2); }

.footer-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.6);
  transition: color var(--duration) var(--ease);
}

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

.footer-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-4);
  font-size: var(--text-xs);
}

.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--accent); }

/* ========================================
   BANNER AD
   ======================================== */
.ad-banner {
  background: var(--surface-2);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--sp-3) 0;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
}

.ad-banner-slot {
  max-width: 728px;
  min-height: 90px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ========================================
   RESPONSIVE AD SLOTS
   ======================================== */
.ad-slot-inline {
  margin: var(--sp-6) 0;
  background: var(--surface-2);
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  padding: var(--sp-4);
  text-align: center;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-xs);
  color: var(--text-faint);
}

/* ========================================
   TRUST BAR
   ======================================== */
.trust-bar {
  padding: var(--sp-6) 0;
  border-top: 1px solid var(--border-light);
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: var(--sp-8);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--text-sm);
  color: var(--text-muted);
}

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

/* ========================================
   UTILITIES
   ======================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.text-center { text-align: center; }
.mt-4 { margin-top: var(--sp-4); }
.mt-6 { margin-top: var(--sp-6); }
.mt-8 { margin-top: var(--sp-8); }
.mb-4 { margin-bottom: var(--sp-4); }
.mb-6 { margin-bottom: var(--sp-6); }
