/* ============================================================
   Reychem — REACH Consulting
   Design System + All Component Styles
   Palette: Deep Navy + Premium Amber
   ============================================================ */

/* ── 1. DESIGN TOKENS ───────────────────────────────────── */
:root {
  /* Colors */
  --primary:        #0F3460;   /* Deep navy — trust, UK */
  --primary-600:    #0A2748;
  --primary-400:    #1A4A8A;
  --accent:         #D97706;   /* Amber — premium, authoritative */
  --accent-dark:    #B45309;
  --accent-light:   #FEF3C7;
  --whatsapp:       #25D366;
  --whatsapp-dark:  #1ebe57;
  --gold:           #F59E0B;
  --gold-light:     #FEF3C7;
  --danger:         #EF4444;

  /* Text */
  --text:           #1E293B;
  --text-muted:     #64748B;
  --text-light:     #94A3B8;
  --text-white:     #F8FAFC;

  /* Backgrounds */
  --bg:             #FAFAF9;
  --bg-alt:         #EFF4FB;
  --bg-dark:        #0F3460;
  --bg-darker:      #081E3F;
  --white:          #FFFFFF;
  --border:         #E2E8F0;
  --border-light:   #F1F5F9;

  /* Shadows */
  --shadow-xs:  0 1px 2px rgba(15,52,96,0.05);
  --shadow-sm:  0 1px 8px rgba(15,52,96,0.08);
  --shadow:     0 4px 20px rgba(15,52,96,0.10);
  --shadow-lg:  0 12px 48px rgba(15,52,96,0.14);
  --shadow-xl:  0 24px 64px rgba(15,52,96,0.18);
  --shadow-accent: 0 8px 32px rgba(217,119,6,0.22);

  /* Radii */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius:     12px;
  --radius-lg:  20px;
  --radius-xl:  32px;
  --radius-full: 9999px;

  /* Spacing */
  --space-1:  4px;  --space-2:  8px;  --space-3: 12px;
  --space-4: 16px;  --space-5: 20px;  --space-6: 24px;
  --space-8: 32px;  --space-10:40px;  --space-12:48px;
  --space-16:64px;  --space-20:80px;  --space-24:96px;
  --space-32:128px;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --text-xs:   0.75rem;   --text-sm:  0.875rem;
  --text-base: 1rem;      --text-lg:  1.125rem;
  --text-xl:   1.25rem;   --text-2xl: 1.5rem;
  --text-3xl:  1.875rem;  --text-4xl: 2.25rem;
  --text-5xl:  3rem;      --text-6xl: 3.75rem;
  --text-7xl:  4.5rem;

  /* Transitions */
  --ease:       cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --ease-spring:cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition: 0.2s var(--ease);
  --transition-md: 0.35s var(--ease-out);

  /* Layout */
  --max-width: 1280px;
  --nav-height: 72px;
}

/* ── 2. RESET ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; }
input, textarea, select { font-family: inherit; }
table { border-collapse: collapse; width: 100%; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, var(--text-6xl)); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, var(--text-5xl)); }
h3 { font-size: clamp(1.15rem, 2.5vw, var(--text-3xl)); }
h4 { font-size: var(--text-xl); }
p { line-height: 1.75; color: var(--text-muted); }

.text-white  { color: var(--white); }
.text-muted  { color: var(--text-muted); }
.text-accent { color: var(--accent); }
.text-center { text-align: center; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

/* ── 4. LAYOUT ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 768px) { .container { padding: 0 var(--space-5); } }

.section    { padding: var(--space-24) 0; }
.section-sm { padding: var(--space-16) 0; }
.section-xl { padding: 120px 0; }
.section-dark {
  background: var(--bg-dark);
  color: var(--text-white);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.72); }
.section-alt { background: var(--bg); }
.section-steps-light { background: #FEF9EC; }
.section-steps-light .step-number {
  background: var(--accent-light);
  border-color: var(--accent);
  color: var(--accent-dark);
}
.section-steps-light .step:hover .step-number {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.section-steps-light .step-title { color: var(--primary); }
.section-steps-light .step-text  { color: var(--text-muted); }
.section-steps-light .steps-grid::before { background: rgba(217,119,6,0.20); }

.grid   { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.flex   { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }

/* ── 5. BADGES ──────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-accent  { background: var(--accent-light); color: var(--accent-dark); }
.badge-primary { background: rgba(15,52,96,0.08); color: var(--primary); }
.badge-gold    { background: var(--gold-light); color: #92400E; }
.badge-white   { background: rgba(255,255,255,0.12); color: var(--white); border: 1px solid rgba(255,255,255,0.2); }

/* ── 6. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 600;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(217,119,6,0.28);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(217,119,6,0.34);
}
.btn-whatsapp {
  background: var(--whatsapp);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,0.28);
}
.btn-whatsapp:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.36);
}
.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--border);
  box-shadow: var(--shadow-xs);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}
.btn-dark { background: var(--primary); color: var(--white); }
.btn-dark:hover { background: var(--primary-600); transform: translateY(-1px); }
.btn-lg  { padding: 15px 32px; font-size: var(--text-base); border-radius: var(--radius); }
.btn-sm  { padding: 8px 18px; font-size: var(--text-xs); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* WhatsApp icon inline */
.whatsapp-icon {
  width: 20px; height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}

/* ── 7. NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: all var(--transition-md);
}
.nav.nav-transparent { background: transparent; }
.nav.nav-solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--primary);
  text-decoration: none;
}
.nav-logo span {
  font-family: 'Montserrat', 'Avenir Next', 'Futura', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--primary);
}
.nav-logo .logo-mark {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--accent), var(--primary-400));
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-size: var(--text-sm);
  font-weight: 900;
  letter-spacing: -0.04em;
  flex-shrink: 0;
}
.nav.nav-transparent .nav-logo { color: var(--white); }
.nav.nav-transparent .nav-logo .logo-mark {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-link {
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-link:hover { color: var(--accent); background: var(--accent-light); }
.nav-link.active { color: var(--accent); background: var(--accent-light); }
.nav.nav-transparent .nav-link { color: rgba(255,255,255,0.85); }
.nav.nav-transparent .nav-link:hover { color: var(--white); background: rgba(255,255,255,0.10); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: var(--space-2);
  min-width: 220px;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 100;
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text);
  font-weight: 500;
  transition: all var(--transition);
}
.nav-dropdown-item:hover { background: var(--accent-light); color: var(--accent-dark); }
.nav-dropdown-item .icon {
  width: 30px; height: 30px;
  border-radius: var(--radius-xs);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}

.nav-actions { display: flex; align-items: center; gap: var(--space-3); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.nav-transparent .nav-toggle span { background: var(--white); }
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: var(--space-6);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform var(--transition-md);
  z-index: 999;
}
.nav-mobile.open { transform: translateX(0); }
.nav-mobile-links { display: flex; flex-direction: column; gap: var(--space-1); margin-bottom: var(--space-8); }
.nav-mobile-link {
  display: block;
  padding: var(--space-4);
  border-radius: var(--radius-sm);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.nav-mobile-link:hover { color: var(--accent); }

/* ── 8. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFFBF0 0%, #FAFAF9 55%, #F5F8FF 100%);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: none; /* gradient provides all the warmth */
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(15,52,96,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15,52,96,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero-content { position: relative; z-index: 1; max-width: 780px; }
.hero h1 {
  color: var(--primary);
  margin-bottom: var(--space-6);
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.hero h1 .accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(1rem, 2vw, var(--text-xl));
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 640px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6);
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--text-muted);
  font-size: var(--text-sm);
  font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* Hero floating cards */
.hero-visual {
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 42%;
  max-width: 560px;
  padding: var(--space-8);
}
.hero-cards { display: flex; flex-direction: column; gap: var(--space-4); }
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  gap: var(--space-4);
  animation: float 6s ease-in-out infinite;
}
.hero-card:nth-child(2) { animation-delay: 2s; margin-left: var(--space-8); }
.hero-card:nth-child(3) { animation-delay: 4s; }
.hero-card-icon {
  width: 46px; height: 46px;
  border-radius: var(--radius-sm);
  background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.hero-card h4 { color: var(--white); font-size: var(--text-base); font-weight: 600; margin-bottom: 2px; }
.hero-card p { color: rgba(255,255,255,0.55); font-size: var(--text-sm); margin: 0; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

/* ── 9. STATS BAR ───────────────────────────────────────── */
.stats-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: var(--space-8) 0; }
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.stat-item { background: var(--white); padding: var(--space-6) var(--space-8); text-align: center; }
.stat-number {
  font-size: clamp(1.75rem, 3vw, var(--text-4xl));
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: var(--space-1);
}
.stat-number .accent { color: var(--accent); }
.stat-label { font-size: var(--text-sm); color: var(--text-muted); font-weight: 500; }

/* ── 10. SECTION HEADERS ────────────────────────────────── */
.section-header { margin-bottom: var(--space-12); }
.section-header.center { text-align: center; }
.section-header .badge { margin-bottom: var(--space-4); }
.section-header h2 { margin-bottom: var(--space-5); }
.section-header p { font-size: var(--text-lg); max-width: 600px; }
.section-header.center p { margin: 0 auto; }

/* ── 11. SERVICE CARDS ──────────────────────────────────── */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-md);
  display: flex; flex-direction: column;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-400));
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: var(--accent); box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-card:hover::before { opacity: 1; }
.service-card-icon {
  width: 54px; height: 54px;
  border-radius: var(--radius);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin-bottom: var(--space-5);
  transition: all var(--transition);
  flex-shrink: 0;
}
.service-card:hover .service-card-icon { background: var(--accent); transform: scale(1.05); }
.service-card h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); color: var(--primary); }
.service-card p { font-size: var(--text-sm); flex: 1; margin-bottom: var(--space-5); }
.service-card-link {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 600; color: var(--accent);
  transition: gap var(--transition);
}
.service-card-link svg { width: 16px; height: 16px; transition: transform var(--transition); }
.service-card:hover .service-card-link svg { transform: translateX(3px); }

/* ── 12. FEATURE ROWS ───────────────────────────────────── */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-content .badge { margin-bottom: var(--space-4); }
.feature-content h2 { margin-bottom: var(--space-5); }
.feature-content p { font-size: var(--text-lg); margin-bottom: var(--space-8); }
.feature-list { display: flex; flex-direction: column; gap: var(--space-4); margin-bottom: var(--space-8); }
.feature-list-item { display: flex; gap: var(--space-4); }
.feature-list-item .check {
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--accent-light);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.feature-list-item .check svg { width: 14px; height: 14px; color: var(--accent); }
.feature-list-item h4 { font-size: var(--text-base); margin-bottom: 4px; }
.feature-list-item p { font-size: var(--text-sm); margin: 0; }

.feature-visual { position: relative; }
.feature-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-light));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-xl);
}
.feature-image-placeholder { font-size: 80px; opacity: 0.3; }
.feature-float-card {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-5);
  box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-sm); font-weight: 600; color: var(--text);
  white-space: nowrap;
}
.feature-float-card.top-left  { top: -20px; left: -20px; }
.feature-float-card.bottom-right { bottom: -20px; right: -20px; }
.feature-float-card .icon { font-size: 20px; }

/* ── 13. PROCESS STEPS ──────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 32px);
  right: calc(12.5% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary-400));
  opacity: 0.3;
}
.process-step { text-align: center; }
.process-step-number {
  width: 64px; height: 64px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--primary);
  margin: 0 auto var(--space-5);
  position: relative; z-index: 1;
  transition: all var(--transition-md);
}
.process-step:hover .process-step-number {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-accent);
}
.process-step h4 { font-size: var(--text-base); margin-bottom: var(--space-2); }
.process-step p  { font-size: var(--text-sm); }

/* ── 14. WHY CARDS ──────────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-8); }
.why-item {
  text-align: center;
  padding: var(--space-8);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition-md);
}
.why-item:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon {
  width: 70px; height: 70px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--accent-light), var(--bg-alt));
  display: flex; align-items: center; justify-content: center;
  font-size: 30px;
  margin: 0 auto var(--space-5);
  transition: all var(--transition-md);
}
.why-item:hover .why-icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  transform: scale(1.05);
}
.why-item h3 { font-size: var(--text-xl); margin-bottom: var(--space-3); }

/* ── 15. PAIN POINTS ────────────────────────────────────── */
.pain-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-5); }
.pain-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  display: flex; gap: var(--space-4);
  box-shadow: var(--shadow-sm);
}
.pain-icon {
  font-size: 28px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pain-card h4 { color: var(--primary); font-size: var(--text-base); margin-bottom: var(--space-2); }
.pain-card p  { color: var(--text-muted); font-size: var(--text-sm); margin: 0; }

/* ── 16. CTA SECTION ────────────────────────────────────── */
.cta-section {
  background: linear-gradient(135deg, #FFFBF0 0%, #FAFAF9 55%, #F5F8FF 100%);
  padding: var(--space-24) 0;
  position: relative; overflow: hidden;
  border-top: 1px solid var(--border);
}
.cta-section::before { content: none; }
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: var(--primary); margin-bottom: var(--space-5); }
.cta-inner p {
  color: var(--text-muted);
  font-size: var(--text-lg);
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }

/* ── 17. CONTACT / FORM ─────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-16);
  align-items: start;
}
.contact-info h3 { margin-bottom: var(--space-4); }
.contact-info > p { margin-bottom: var(--space-8); }
.office-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: var(--space-6);
  margin-bottom: var(--space-4);
}
.office-card h4 { font-size: var(--text-base); margin-bottom: var(--space-4); }
.contact-detail {
  display: flex; gap: var(--space-3);
  margin-bottom: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.contact-detail svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.contact-detail a { color: var(--accent); }

.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-4); }
.form-group { margin-bottom: var(--space-5); }
.form-label {
  display: block;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text);
  margin-bottom: var(--space-2);
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: var(--text-sm);
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(217,119,6,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-light); }
.form-textarea { resize: vertical; min-height: 130px; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-check { display: flex; align-items: flex-start; gap: var(--space-3); margin-bottom: var(--space-3); }
.form-check input[type="checkbox"] {
  width: 18px; height: 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-xs);
  margin-top: 2px;
  cursor: pointer;
  flex-shrink: 0;
  accent-color: var(--accent);
}
.form-check-label { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.5; }
.form-check-label a { color: var(--accent); }
.form-success { display: none; text-align: center; padding: var(--space-12); }
.form-success svg { width: 64px; height: 64px; color: var(--accent); margin: 0 auto var(--space-4); }

/* ── 18. FAQ ─────────────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-6) 0;
  cursor: pointer;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--text);
  transition: color var(--transition);
  background: none; border: none;
  width: 100%; text-align: left;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border-radius: var(--radius-full);
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { background: var(--accent); color: white; transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s var(--ease-out), padding var(--transition);
}
.faq-item.open .faq-answer { max-height: 600px; padding-bottom: var(--space-6); }
.faq-answer p { font-size: var(--text-base); }

/* ── 19. HS CODES TABLE ─────────────────────────────────── */
.hs-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: var(--space-8) 0;
}
.hs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--text-sm);
}
.hs-table thead {
  background: var(--primary);
  color: var(--white);
}
.hs-table thead th {
  padding: var(--space-4) var(--space-5);
  text-align: left;
  font-weight: 600;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.hs-table tbody tr { transition: background var(--transition); }
.hs-table tbody tr:nth-child(even) { background: var(--bg); }
.hs-table tbody tr:hover { background: var(--accent-light); }
.hs-table td {
  padding: var(--space-4) var(--space-5);
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.5;
  color: var(--text);
}
.hs-table td:first-child { font-weight: 600; color: var(--primary); min-width: 180px; }
.hs-table td:nth-child(2) { font-family: 'Courier New', monospace; font-size: var(--text-xs); color: var(--text-muted); min-width: 200px; }
.hs-table td:last-child { min-width: 260px; color: var(--text-muted); }
.hs-table .tag {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  margin-right: 4px;
  margin-bottom: 4px;
}
.hs-table .tag-or { background: var(--gold-light); color: #92400E; }
.hs-table .tag-svhc { background: rgba(239,68,68,0.1); color: #DC2626; }
.disclaimer-box {
  background: var(--gold-light);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-sm);
  color: #78350F;
  display: flex; gap: var(--space-3); align-items: flex-start;
}
.disclaimer-box svg { width: 20px; height: 20px; flex-shrink: 0; margin-top: 1px; color: var(--gold); }

/* ── 20. PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #FFFBF0 0%, #FAFAF9 55%, #F5F8FF 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { color: var(--primary); margin-bottom: var(--space-5); }
.page-hero p { color: var(--text); font-size: var(--text-lg); max-width: 600px; }

/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--text-muted);
  margin-bottom: var(--space-6);
}
.breadcrumb a { color: var(--text-muted); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--text-light); }
.breadcrumb .current { color: var(--accent); }

/* ── 21. WHO WE HELP ────────────────────────────────────── */
.sector-chips { display: flex; flex-wrap: wrap; gap: var(--space-3); margin-top: var(--space-6); }
.sector-chip {
  display: inline-flex; align-items: center; gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.sector-chip:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-light); }

/* ── 22. PARTNERSHIP BANNER ─────────────────────────────── */
.partnership-banner {
  background: var(--accent-light);
  border-left: 5px solid var(--accent);
  border-radius: 0;
  padding: var(--space-10) var(--space-12);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--space-8);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.partnership-banner::before { content: none; }
.partnership-banner > * { position: relative; z-index: 1; }
.partnership-banner h3 { color: var(--primary); margin-bottom: var(--space-3); font-size: var(--text-2xl); }
.partnership-banner p  { color: var(--text); margin: 0; }

/* ── 23. ANIMATIONS ─────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.6s var(--ease-out); }
.fade-in.visible { opacity: 1; }
.stagger-1 { transition-delay: 0.1s; } .stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; } .stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; } .stagger-6 { transition-delay: 0.6s; }

/* ── 24. FOOTER ─────────────────────────────────────────── */
.footer { background: var(--bg-darker); color: rgba(255,255,255,0.6); padding: var(--space-20) 0 var(--space-8); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
  padding-bottom: var(--space-12);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo {
  display: flex; align-items: center; gap: var(--space-3);
  font-size: var(--text-xl); font-weight: 800; color: var(--white);
  letter-spacing: -0.03em;
  margin-bottom: var(--space-4);
}
.footer-brand .logo-mark {
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: var(--text-sm); font-weight: 900;
  letter-spacing: -0.04em;
}
.footer-brand p { font-size: var(--text-sm); color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: var(--space-6); }
.footer-social { display: flex; gap: var(--space-3); }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 15px;
  transition: all var(--transition);
  text-decoration: none;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }
.footer-col h5 {
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-link { font-size: var(--text-sm); color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-link:hover { color: var(--accent); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4);
  font-size: var(--text-sm); color: rgba(255,255,255,0.35);
}
.cert-badge {
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-full);
  font-size: var(--text-xs); color: rgba(255,255,255,0.5); font-weight: 500;
}
.footer-certifications { display: flex; gap: var(--space-3); flex-wrap: wrap; }

/* ── 25. 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; }
.mt-4  { margin-top: var(--space-4);  } .mt-6  { margin-top: var(--space-6);  }
.mt-8  { margin-top: var(--space-8);  } .mb-4  { margin-bottom: var(--space-4); }
.mb-6  { margin-bottom: var(--space-6); } .mb-8  { margin-bottom: var(--space-8); }
.hidden { display: none; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: var(--space-6); left: var(--space-6); right: var(--space-6);
  max-width: 520px;
  background: var(--primary); color: white;
  border-radius: var(--radius);
  padding: var(--space-5) var(--space-6);
  box-shadow: var(--shadow-xl);
  z-index: 9000;
  display: flex; gap: var(--space-5); align-items: center;
  animation: slideUp 0.4s var(--ease-out);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { font-size: var(--text-sm); color: rgba(255,255,255,0.8); margin: 0; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-body { flex: 1; display: flex; flex-direction: column; gap: var(--space-2); }
.cookie-detail { font-size: var(--text-xs); color: rgba(255,255,255,0.65); line-height: 1.5; border-top: 1px solid rgba(255,255,255,0.15); padding-top: var(--space-2); margin-top: var(--space-1); }
.cookie-actions { display: flex; gap: var(--space-2); flex-shrink: 0; }
@keyframes slideUp { from{transform:translateY(100%);opacity:0} to{transform:translateY(0);opacity:1} }

/* Back to top */
.back-to-top {
  position: fixed; bottom: var(--space-6); right: var(--space-6);
  width: 48px; height: 48px;
  background: var(--accent); color: white;
  border-radius: var(--radius-full); border: none;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-accent);
  opacity: 0; pointer-events: none;
  transition: all var(--transition); z-index: 900;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { transform: translateY(-2px); background: var(--accent-dark); }
.back-to-top svg { width: 20px; height: 20px; }

/* ── 26. RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-visual { display: none; }
  .feature-row { grid-template-columns: 1fr; gap: var(--space-10); }
  .feature-row.reverse { direction: ltr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .partnership-banner { grid-template-columns: 1fr; }
  .pain-cards { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .section { padding: var(--space-16) 0; }
  .section-xl { padding: var(--space-20) 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }  h2 { font-size: 1.6rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-8); }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-bar-inner { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius); }
}
@media (max-width: 480px) {
  .hero-trust { flex-direction: column; align-items: flex-start; gap: var(--space-3); }
  .cookie-banner { flex-direction: column; }
  .partnership-banner { padding: var(--space-8); }
}

/* ============================================================
   REACH CONSULTING — EXTENDED COMPONENT STYLES
   All new components for 2025 REACH site redesign
   ============================================================ */

/* ── NAV WRAP & HAMBURGER ───────────────────────────────── */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: all var(--transition-md);
}
.nav-wrap.nav-solid {
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-wrap.nav-transparent {
  background: rgba(255,255,255,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.nav-wrap .nav {
  /* Override the old .nav { position: fixed } rule — the wrapper handles positioning.
     Without this, height:100% resolves against the viewport (not the 72px wrapper),
     pushing flex-centred links to the vertical middle of the screen. */
  position: static !important;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/* Transparent nav on light hero — use dark text (not white) */
.nav-wrap.nav-transparent .nav-logo { color: var(--primary); }
.nav-wrap.nav-transparent .nav-link { color: rgba(15,52,96,0.80); }
.nav-wrap.nav-transparent .nav-link:hover { color: var(--primary); background: rgba(15,52,96,0.06); }
.nav-wrap.nav-transparent .nav-link.active {
  color: var(--primary);
  background: rgba(15,52,96,0.08);
  border-radius: var(--radius-sm);
}

/* "See our services" — outline button on light hero */
.btn-outline-white {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(15,52,96,0.35);
  border-radius: var(--radius-sm);
}
.btn-outline-white:hover {
  background: rgba(15,52,96,0.06);
  border-color: rgba(15,52,96,0.65);
  color: var(--primary);
  transform: translateY(-1px);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-wrap.nav-transparent .nav-hamburger span { background: var(--primary); }
.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav open state
   Safari fix: backdrop-filter on .nav-wrap makes it a containing block for
   position:fixed children, collapsing the panel to 0px height. Fix: expand
   .nav-wrap to full screen and use position:absolute on .nav-links instead. */
.nav-wrap.nav-open {
  height: 100dvh;
  height: 100vh; /* fallback for older Safari */
  overflow: hidden;
  background: var(--white) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.nav-wrap.nav-open .nav-links {
  display: flex;
  flex-direction: column;
  align-items: stretch;   /* override base align-items:center so li fills full width */
  position: absolute;
  top: var(--nav-height); left: 0; right: 0; bottom: 0;
  background: var(--white);
  padding: 0;             /* no padding — links handle their own spacing */
  gap: 0;
  overflow-y: auto;
  z-index: 998;
  border-top: 1px solid var(--border);
}
.nav-wrap.nav-open .nav-links li {
  width: 100%;
}
.nav-wrap.nav-open .nav-links .nav-link {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 20px var(--space-6);
  border-bottom: 1px solid var(--border-light);
  border-left: 3px solid transparent;   /* placeholder — filled for active */
  border-radius: 0;
  background: transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.nav-wrap.nav-open .nav-links li:last-child .nav-link {
  border-bottom: none;
}
.nav-wrap.nav-open .nav-links .nav-link:hover {
  background: var(--bg);
  color: var(--primary);
  border-left-color: var(--border);
}
.nav-wrap.nav-open .nav-links .nav-link.active {
  color: var(--accent-dark);
  font-weight: 700;
  background: var(--accent-light);
  border-left-color: var(--accent);    /* amber left accent bar */
}

/* ── BADGE DOT ──────────────────────────────────────────── */
.badge-dot {
  width: 7px; height: 7px;
  border-radius: var(--radius-full);
  background: var(--accent);
  display: inline-block;
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* ── ANIMATE-UP (new animation class) ───────────────────── */
.animate-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.animate-up.visible { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }

/* ── HERO (updated structure) ───────────────────────────── */
.hero-bg-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}
.hero-title {
  color: var(--primary);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-6);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, var(--text-xl));
  color: var(--text);
  line-height: 1.7;
  margin-bottom: var(--space-8);
  max-width: 580px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-5);
}
.hero-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin: 0;
}
.btn-outline-white {
  background: transparent;
  color: var(--primary);
  border: 2px solid rgba(15,52,96,0.35);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.65);
  transform: translateY(-1px);
}
.btn-xl { padding: 18px 40px; font-size: var(--text-lg); border-radius: var(--radius-lg); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.65);
}

/* ── SECTION HEADER ENHANCEMENTS ────────────────────────── */
.section-header { margin-bottom: var(--space-12); }
.section-header .badge { margin-bottom: var(--space-4); display: inline-flex; }
.section-title {
  font-size: clamp(1.6rem, 3vw, var(--text-5xl));
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--primary);
  margin-bottom: var(--space-5);
  line-height: 1.12;
}
.section-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 600px;
  margin: 0;
}
.section-cta {
  text-align: center;
  margin-top: var(--space-12);
}
.text-white-70 { color: rgba(255,255,255,0.7); }
.section-dark .section-title { color: var(--white); }

/* ── WHO WE HELP ────────────────────────────────────────── */
.who-note {
  margin-top: var(--space-8);
  padding: var(--space-4) var(--space-5);
  background: var(--accent-light);
  border-radius: var(--radius);
  font-size: var(--text-sm);
  color: var(--text);
}
.who-note p { margin: 0; color: var(--text-muted); }
.link-accent { color: var(--accent); font-weight: 600; text-decoration: underline; }
.link-accent:hover { color: var(--accent-dark); }
.link-white-underline { color: var(--accent); text-decoration: underline; font-weight: 500; }
.link-white-underline:hover { color: var(--accent-dark); }

/* ── CARD GRID (services overview) ──────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  display: flex; flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: all var(--transition-md);
}
.card-hover:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
  flex-shrink: 0;
  transition: all var(--transition);
}
.card-hover:hover .card-icon { background: var(--accent); }
.card-hover:hover .card-icon svg { stroke: white; }
.bg-accent-light { background: var(--accent-light); }
.bg-primary-light { background: rgba(15,52,96,0.08); }
.card-title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-3);
  line-height: 1.3;
}
.card-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: var(--space-4);
}
.card-link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--accent);
  transition: gap var(--transition);
  display: inline-block;
}
.card-hover:hover .card-link { letter-spacing: 0.01em; }

/* ── STEPS GRID (how it works) ───────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 28px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: rgba(255,255,255,0.15);
}
.step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-number {
  width: 56px; height: 56px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl); font-weight: 800;
  color: var(--white);
  margin-bottom: var(--space-5);
  position: relative; z-index: 1;
  flex-shrink: 0;
  transition: all var(--transition-md);
}
.step:hover .step-number {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
}
.step-content { flex: 1; }
.step-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--space-3);
}
.step-text {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.62);
  line-height: 1.7;
  margin: 0;
}

/* ── WHY GRID (updated) ──────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.why-item {
  display: flex;
  gap: var(--space-5);
  padding: var(--space-6);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  align-items: flex-start;
  transition: all var(--transition-md);
}
.why-item:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.why-icon {
  font-size: 26px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 2px;
}
.why-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-2);
}
.why-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ── SPLIT PROMO ─────────────────────────────────────────── */
.split-promo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}
.split-promo-content .badge { margin-bottom: var(--space-4); display: inline-flex; }
.split-title {
  font-size: clamp(1.5rem, 2.5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}
.split-text {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-8);
}

/* Preview table (split promo visual) */
.promo-table-preview {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.promo-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: var(--space-3);
  align-items: center;
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--text-sm);
  color: var(--text);
}
.promo-row:last-child { border-bottom: none; }
.promo-row-head {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── STATUS TAGS ─────────────────────────────────────────── */
.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.tag-red    { background: rgba(239,68,68,0.1); color: #DC2626; }
.tag-orange { background: rgba(234,88,12,0.1); color: #C2410C; }
.tag-amber  { background: var(--gold-light); color: #92400E; }
.tag-green  { background: var(--accent-light); color: var(--accent-dark); }
.tag-blue   { background: rgba(59,130,246,0.1); color: #1D4ED8; }

/* ── CTA BOX ─────────────────────────────────────────────── */
.cta-box {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(1.5rem, 3vw, var(--text-4xl));
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-5);
}
.cta-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-10);
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--space-4); justify-content: center; }

/* ── FOOTER (new structure) ──────────────────────────────── */
.footer-logo {
  display: flex; align-items: center; gap: var(--space-3);
  text-decoration: none;
  margin-bottom: var(--space-4);
  color: var(--white);
}
.footer-logo span {
  font-family: 'Montserrat', 'Avenir Next', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
}
.footer-tagline { font-size: var(--text-sm); color: rgba(255,255,255,0.5); line-height: 1.75; margin-bottom: var(--space-5); }
.footer-wa { margin-top: var(--space-2); }
.footer-links-col h4,
.footer-heading {
  color: var(--white);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-5);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-links-col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
  text-decoration: none;
}
.footer-links-col a:hover { color: var(--accent); }
.footer-reg { font-size: var(--text-xs); color: rgba(255,255,255,0.3); margin-top: var(--space-5); }
.footer-disclaimer { font-size: var(--text-xs); color: rgba(255,255,255,0.3); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-4);
  font-size: var(--text-sm); color: rgba(255,255,255,0.35);
}
.footer-bottom p { margin: 0; color: rgba(255,255,255,0.35); }

/* ── PAGE HERO (updated selectors) ──────────────────────── */
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .badge { margin-bottom: var(--space-4); display: inline-flex; }
.page-hero-title {
  color: var(--primary);
  font-size: clamp(1.75rem, 4vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: var(--space-5);
}
.page-hero-sub {
  color: var(--text);
  font-size: var(--text-lg);
  line-height: 1.7;
  max-width: 680px;
  margin: 0;
}
.page-hero-sm { padding: 120px 0 60px; }

/* ── PARTNERSHIP BANNER (updated) ────────────────────────── */
.partnership-banner { margin: 0 0 var(--space-8); }
.partnership-inner {
  display: flex; gap: var(--space-6);
  align-items: flex-start;
  background: var(--accent-light);
  border-left: 5px solid var(--accent);
  border-radius: 0;
  padding: var(--space-8) var(--space-10);
  position: relative; overflow: hidden;
}
.partnership-inner::before { content: none; }
.partnership-inner > * { position: relative; z-index: 1; }
.partnership-icon { font-size: 36px; flex-shrink: 0; margin-top: 2px; }
.partnership-title { color: var(--primary); font-size: var(--text-2xl); margin-bottom: var(--space-3); }
.partnership-text { color: var(--text); margin: 0; font-size: var(--text-base); }

/* ── SERVICE SECTIONS ────────────────────────────────────── */
.service-section { scroll-margin-top: var(--nav-height); }
.service-block {
  display: flex; gap: var(--space-8);
  align-items: flex-start;
  max-width: 900px;
}
.service-icon-wrap {
  width: 72px; height: 72px;
  border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}
.service-body { flex: 1; }
.service-body .badge { margin-bottom: var(--space-3); display: inline-flex; }
.service-heading {
  font-size: clamp(1.4rem, 2.5vw, var(--text-4xl));
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-4);
}
.service-lead {
  font-size: var(--text-lg);
  color: var(--text);
  font-weight: 500;
  line-height: 1.65;
  margin-bottom: var(--space-5);
}
.service-body p { margin-bottom: var(--space-4); }
.service-body p:last-of-type { margin-bottom: 0; }
.service-subheading {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--primary);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}
.service-list {
  list-style: none;
  margin: var(--space-4) 0;
  display: flex; flex-direction: column; gap: var(--space-3);
}
.service-list li {
  display: flex; gap: var(--space-3);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
}
.service-list li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
  width: 18px;
}
.service-list-ol { list-style: decimal; padding-left: var(--space-6); }
.service-list-ol li { display: list-item; }
.service-list-ol li::before { display: none; }
.service-note {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: var(--space-3) var(--space-5);
  font-size: var(--text-sm);
  color: var(--text);
  margin: var(--space-5) 0;
}
.service-ctas { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-8); }

/* ── EXPLAINER CARDS (products page) ────────────────────── */
.explainer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}
.explainer-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  position: relative;
  transition: all var(--transition-md);
}
.explainer-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.explainer-num {
  width: 40px; height: 40px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--white);
  font-size: var(--text-lg); font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--space-5);
}
.explainer-card h3 { font-size: var(--text-lg); font-weight: 700; color: var(--primary); margin-bottom: var(--space-3); }
.explainer-card p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; line-height: 1.7; }

/* ── TAG LEGEND ──────────────────────────────────────────── */
.tag-legend {
  display: flex; flex-wrap: wrap; gap: var(--space-3); align-items: center;
  margin-bottom: var(--space-6);
  font-size: var(--text-sm); color: var(--text-muted); font-weight: 600;
}
.tag-legend .tag { font-size: 12px; }

/* ── HS TABLE ENHANCEMENTS ───────────────────────────────── */
.hs-product { min-width: 200px; }
.hs-product strong { display: block; color: var(--primary); font-weight: 700; }
.hs-examples { display: block; font-size: var(--text-xs); color: var(--text-muted); font-weight: 400; margin-top: 3px; }
.hs-code { font-family: 'Courier New', monospace; font-size: var(--text-xs); color: var(--text-muted); }

/* ── TONNAGE CARDS ───────────────────────────────────────── */
.tonnage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
  margin-bottom: var(--space-8);
}
.tonnage-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex; flex-direction: column;
  transition: all var(--transition-md);
}
.tonnage-card:hover { border-color: var(--accent); box-shadow: var(--shadow); transform: translateY(-2px); }
.tonnage-card-highlight {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}
.tonnage-card-highlight::before {
  content: 'Most common';
  position: absolute; top: -10px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: white;
  font-size: 11px; font-weight: 700; padding: 2px 10px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.tonnage-band {
  font-size: var(--text-xl); font-weight: 800; color: var(--accent);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.tonnage-card h3 { font-size: var(--text-base); font-weight: 700; color: var(--primary); margin-bottom: var(--space-3); }
.tonnage-card p  { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: var(--space-4); }
.tonnage-action {
  font-size: var(--text-xs); font-weight: 700;
  color: var(--accent); background: var(--accent-light);
  padding: 4px 10px; border-radius: var(--radius-full);
  display: inline-block; margin-top: auto;
}
.tonnage-note { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; margin: 0; }
.tonnage-note em { color: var(--primary); font-style: italic; }

/* ── FAQ CTA ─────────────────────────────────────────────── */
.faq-cta {
  text-align: center;
  padding: var(--space-8) 0 0;
  font-size: var(--text-base);
  color: var(--text-muted);
}

/* Fix FAQ answer with hidden attribute */
.faq-answer { overflow: hidden; max-height: 0; transition: max-height 0.4s var(--ease-out), padding var(--transition); }
.faq-item.open .faq-answer { max-height: 800px; padding-bottom: var(--space-6); }
.faq-answer[hidden] { display: block; max-height: 0; padding-bottom: 0; }
.faq-item.open .faq-answer[hidden] { max-height: 800px; }
.faq-answer p { margin-bottom: var(--space-4); }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul { list-style: disc; padding-left: var(--space-6); }
.faq-answer ul li { margin-bottom: var(--space-2); font-size: var(--text-sm); color: var(--text-muted); }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: var(--space-12);
  align-items: start;
}
.contact-form-title { font-size: var(--text-3xl); font-weight: 800; color: var(--primary); margin-bottom: var(--space-3); }
.contact-form-sub { font-size: var(--text-base); color: var(--text-muted); margin-bottom: var(--space-8); }
.contact-form-sub a { color: var(--accent); }
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow);
}
.required { color: var(--danger); }
.form-hint { font-size: var(--text-xs); color: var(--text-muted); margin-top: var(--space-2); }
.form-checkbox-group { margin-bottom: var(--space-6); }
.form-checkbox {
  display: flex; align-items: flex-start; gap: var(--space-3);
  cursor: pointer; font-size: var(--text-sm); color: var(--text-muted); line-height: 1.6;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  accent-color: var(--accent); cursor: pointer;
}
.form-submit { width: 100%; justify-content: center; }
.form-privacy { font-size: var(--text-xs); color: var(--text-muted); text-align: center; margin-top: var(--space-4); margin-bottom: 0; }
.form-success { text-align: center; padding: var(--space-12); }
.form-success-icon { font-size: 48px; margin-bottom: var(--space-4); }
.form-success h3 { font-size: var(--text-2xl); color: var(--primary); margin-bottom: var(--space-3); }
.form-success p { color: var(--text-muted); }
.form-success a { color: var(--accent); }

/* Contact Sidebar */
.contact-sidebar { display: flex; flex-direction: column; gap: var(--space-5); }
.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}
.contact-card-whatsapp {
  background: #F0FDF4;
  border-color: rgba(37,211,102,0.3);
}
.contact-card-icon { margin-bottom: var(--space-4); }
.contact-card-title { font-size: var(--text-lg); font-weight: 700; color: var(--primary); margin-bottom: var(--space-3); }
.contact-card-text { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.7; margin-bottom: var(--space-4); }
.contact-card-text a { color: var(--accent); }
.contact-card-info .contact-card-text { margin-bottom: var(--space-4); }
.contact-info-list {
  list-style: none;
  display: flex; flex-direction: column; gap: var(--space-2);
  margin-bottom: var(--space-4);
}
.contact-info-list li {
  display: flex; align-items: flex-start; gap: var(--space-2);
  font-size: var(--text-sm); color: var(--text-muted);
}
.contact-info-list li::before { content: '•'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.contact-card-small { font-size: var(--text-xs); color: var(--text-muted); margin: 0; line-height: 1.6; }
.contact-card-nda {
  display: flex; gap: var(--space-3); align-items: flex-start;
  background: var(--bg); border-color: var(--border-light);
  font-size: var(--text-sm);
}
.nda-icon { font-size: 22px; flex-shrink: 0; }
.contact-card-nda p { font-size: var(--text-sm); color: var(--text-muted); margin: 0; }
.contact-card-nda strong { color: var(--text); }

/* ── DISCLAIMER BOX (updated) ────────────────────────────── */
.disclaimer-box {
  background: var(--gold-light);
  border: 1px solid #FCD34D;
  border-radius: var(--radius);
  padding: var(--space-4) var(--space-6);
  font-size: var(--text-sm);
  color: #78350F;
  line-height: 1.6;
  margin-top: var(--space-6);
}
.disclaimer-box strong { color: #92400E; }
.disclaimer-box a { color: #92400E; font-weight: 600; text-decoration: underline; }

/* ── RESPONSIVE — extended ───────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; padding-top: var(--space-12); padding-bottom: var(--space-12); }
  .pain-cards { grid-template-columns: repeat(2, 1fr); }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .split-promo { grid-template-columns: 1fr; }
  .split-promo-visual { display: none; }
  .explainer-grid { grid-template-columns: 1fr 1fr; }
  .tonnage-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; }
  .service-block { flex-direction: column; }
  .service-icon-wrap { width: 60px; height: 60px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-actions .btn-whatsapp { display: none; }
  .nav-hamburger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .pain-cards { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .explainer-grid { grid-template-columns: 1fr; }
  .tonnage-grid { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  /* min-width:0 lets grid items shrink below their content size.
     Without this, a nowrap button forces the 1fr track wider than the viewport. */
  .hero-inner > * { min-width: 0; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .service-ctas { flex-direction: column; }
  .partnership-inner { flex-direction: column; }
  .section-sub { font-size: var(--text-base); }
}
@media (max-width: 480px) {
  .tonnage-grid { grid-template-columns: 1fr; }
  .contact-form { padding: var(--space-5); }
  .btn-xl { padding: 15px 28px; font-size: var(--text-base); }
}

/* ── ABOUT PAGE ──────────────────────────────────────────── */
.two-col-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}
.two-col-text .badge { margin-bottom: var(--space-4); display: inline-flex; }
.two-col-text p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: var(--space-4);
}
.two-col-facts {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.fact-card {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--space-5) var(--space-6);
  transition: border-color var(--transition-md), box-shadow var(--transition-md);
}
.fact-card:hover { border-color: var(--accent); box-shadow: var(--shadow); }
.fact-icon { font-size: 1.75rem; flex-shrink: 0; line-height: 1; }
.fact-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: var(--space-1);
}
.fact-text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 1024px) {
  .two-col-block { grid-template-columns: 1fr; gap: var(--space-10); }
}
@media (max-width: 768px) {
  .two-col-block { gap: var(--space-8); }
}
