/* ============ ALCHEMY RECYCLING — SHARED STYLES (v3) ============ */
:root {
  /* Brand */
  --brand-dark:  #2D4A2B;       /* deep leaf */
  --brand-mid:   #4F7C45;       /* mid green */
  --brand-light: #8FBE76;       /* sage highlight */
  --brand-tint:  #EFF4EA;       /* very pale wash */

  /* Neutrals */
  --white: #FFFFFF;
  --paper: #FAFAFA;
  --pale:  #F4F4F4;
  --line:  #E5E5E5;
  --line-strong: #D4D4D4;
  --grey-3: #A3A3A3;
  --grey-2: #525252;
  --grey-1: #262626;
  --black:  #0A0A0A;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Geist', -apple-system, sans-serif;
  background: var(--white); color: var(--black);
  font-weight: 400; line-height: 1.5;
  overflow-x: hidden;
  font-feature-settings: "ss01", "ss02", "cv11";
}
.mono { font-family: 'Geist Mono', ui-monospace, monospace; }

/* ============ NAV ============ */
nav.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--black); }
.logo img { height: 38px; width: auto; display: block; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text strong { font-weight: 600; font-size: 16px; letter-spacing: -0.005em; }
.logo-text span {
  font-family: 'Geist Mono', monospace;
  font-size: 9px; letter-spacing: 0.12em;
  color: var(--grey-2); margin-top: 4px; text-transform: uppercase;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--grey-1); text-decoration: none;
  font-size: 13px; font-weight: 400;
  transition: color 0.2s;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--brand-dark); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -22px;
  height: 2px; background: var(--brand-dark);
}
.nav-cta {
  background: var(--brand-dark); color: var(--white);
  padding: 10px 18px; border-radius: 999px;
  text-decoration: none; font-size: 13px; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: inherit;
}
.nav-cta:hover { background: #1F3A1E; transform: translateY(-1px); }
.nav-cta svg { transition: transform 0.2s; }
.nav-cta:hover svg { transform: translateX(2px); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 6px; color: var(--black); }
.mobile-menu {
  display: none; position: fixed; inset: 64px 0 0 0;
  background: var(--white); z-index: 99;
  flex-direction: column; padding: 40px 32px; gap: 20px;
  border-top: 1px solid var(--line);
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: var(--black); text-decoration: none; font-size: 26px; font-weight: 500; letter-spacing: -0.02em; }
.mobile-menu a.cta { color: var(--brand-dark); }

/* ============ COMMON ============ */
.eyebrow {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--brand-mid);
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px; letter-spacing: 0.02em;
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--brand-mid); }

.section-label {
  font-family: 'Geist Mono', monospace;
  font-size: 12px; color: var(--grey-2);
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 32px; letter-spacing: 0.02em;
}
.section-label .num { color: var(--brand-mid); font-weight: 500; }

h1.headline, h2.headline {
  font-weight: 400; letter-spacing: -0.04em;
  color: var(--black); line-height: 1.0;
}
h1.headline { font-size: clamp(44px, 7.5vw, 112px); }
h2.headline { font-size: clamp(34px, 4.4vw, 60px); line-height: 1.05; max-width: 900px; }
.headline span { color: var(--grey-3); }
.headline em { font-style: normal; color: var(--brand-dark); }

section { padding: 120px 32px; }
.container { max-width: 1320px; margin: 0 auto; }

/* Buttons */
.btn-primary {
  background: var(--brand-dark); color: var(--white);
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: inherit;
}
.btn-primary:hover { background: #1F3A1E; transform: translateY(-1px); }
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(3px); }
.btn-secondary {
  background: var(--white); color: var(--black);
  padding: 14px 22px; border-radius: 999px;
  text-decoration: none; font-size: 14px; font-weight: 500;
  border: 1px solid var(--line-strong);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
  display: inline-flex; align-items: center; gap: 10px;
  cursor: pointer; font-family: inherit;
}
.btn-secondary:hover { border-color: var(--brand-dark); color: var(--brand-dark); background: var(--brand-tint); }

.read-more {
  color: var(--brand-dark); text-decoration: none;
  font-size: 14px; font-weight: 500;
  border-bottom: 1px solid var(--brand-dark);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.read-more:hover { color: var(--brand-mid); border-color: var(--brand-mid); }
.read-more::after { content: ' →'; }

/* ============ HERO (home) ============ */
.hero { padding: 100px 32px 80px; max-width: 1320px; margin: 0 auto; }
.hero h1 { max-width: 1200px; }
.hero-grid {
  display: grid; grid-template-columns: 1.5fr 1fr;
  gap: 80px; margin-top: 72px; padding-top: 64px;
  border-top: 1px solid var(--line); align-items: start;
}
.hero-lede { font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--grey-1); max-width: 580px; }
.hero-meta { display: flex; flex-direction: column; gap: 22px; }
.hero-meta-row { display: flex; flex-direction: column; gap: 4px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.hero-meta-row:last-child { border-bottom: none; }
.hero-meta-row .lbl { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.08em; color: var(--grey-2); text-transform: uppercase; }
.hero-meta-row .val { font-size: 15px; color: var(--black); font-weight: 500; }
.hero-actions { margin-top: 56px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

/* ============ TRUST STRIP ============ */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--brand-tint); padding: 22px 32px; }
.trust-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; }
.trust-item {
  font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--grey-2);
  letter-spacing: 0.04em; display: flex; align-items: center; gap: 10px;
}
.trust-item strong { color: var(--brand-dark); font-weight: 500; }
.trust-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--brand-mid); }

/* ============ INTRO ============ */
.intro-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.intro-grid p { font-size: 17px; line-height: 1.6; color: var(--grey-1); margin-bottom: 18px; max-width: 560px; }

/* ============ BENEFITS ============ */
.benefits { background: var(--paper); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.benefits-head { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; margin-bottom: 64px; align-items: end; }
.benefits-head p { color: var(--grey-1); font-size: 16px; max-width: 460px; line-height: 1.6; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--line); border: 1px solid var(--line); }
.benefit-card { background: var(--white); padding: 40px 32px; display: flex; flex-direction: column; gap: 18px; min-height: 360px; transition: background 0.25s; }
.benefit-card:hover { background: var(--brand-tint); }
.benefit-tag { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--brand-mid); letter-spacing: 0.04em; }
.benefit-card h3 { font-size: 22px; line-height: 1.2; font-weight: 500; letter-spacing: -0.015em; color: var(--black); }
.benefit-stat { font-size: 56px; line-height: 1; font-weight: 400; letter-spacing: -0.035em; color: var(--brand-dark); }
.benefit-stat-sub { font-size: 12px; color: var(--grey-2); margin-top: -10px; font-family: 'Geist Mono', monospace; }
.benefit-card p { font-size: 14px; color: var(--grey-1); line-height: 1.55; margin-top: auto; }

/* ============ IMPACT ============ */
.impact-head { display: flex; justify-content: space-between; align-items: end; flex-wrap: wrap; gap: 32px; margin-bottom: 64px; }
.impact-since { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--grey-2); text-align: right; text-transform: uppercase; letter-spacing: 0.06em; }
.impact-since strong { display: block; color: var(--brand-dark); font-size: 13px; margin-top: 4px; font-weight: 500; }
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); }
.metric { padding: 56px 24px 40px 0; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); }
.metric:nth-child(4n) { border-right: none; }
.metric-num { font-size: clamp(56px, 6.5vw, 96px); line-height: 0.95; font-weight: 400; letter-spacing: -0.05em; color: var(--black); margin-bottom: 16px; }
.metric-num span { color: var(--brand-light); font-weight: 400; }
.metric-label { font-family: 'Geist Mono', monospace; font-size: 12px; color: var(--grey-2); letter-spacing: 0.04em; line-height: 1.45; text-transform: uppercase; }

/* ============ PROCESS ============ */
.process-section { background: var(--brand-dark); color: var(--white); position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; top: -40%; right: -25%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(143, 190, 118, 0.10) 0%, transparent 60%); pointer-events: none; }
.process-section .container { position: relative; }
.process-section .section-label { color: var(--brand-light); }
.process-section .section-label .num { color: var(--brand-light); }
.process-section h2.headline { color: var(--white); }
.process-section h2.headline span { color: rgba(255, 255, 255, 0.45); }
.process-section h2.headline em { color: var(--brand-light); }

.steps { margin-top: 72px; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.step { display: grid; grid-template-columns: 60px 1fr 2fr; gap: 40px; padding: 36px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.18); align-items: start; transition: padding 0.3s; }
.step:hover { padding-left: 12px; }
.step-num { font-family: 'Geist Mono', monospace; font-size: 13px; color: var(--brand-light); padding-top: 6px; letter-spacing: 0.04em; }
.step-title { font-size: 22px; line-height: 1.2; font-weight: 500; letter-spacing: -0.015em; color: var(--white); }
.step-body { color: rgba(255, 255, 255, 0.7); font-size: 15px; line-height: 1.6; }
.step-body ol { margin-top: 10px; padding-left: 18px; }
.step-body ol li { margin-bottom: 5px; }
.step-body a { color: var(--brand-light); text-decoration: none; border-bottom: 1px solid rgba(143, 190, 118, 0.4); }
.step-body a:hover { border-color: var(--brand-light); }

.process-actions { margin-top: 56px; display: flex; gap: 16px; flex-wrap: wrap; }
.process-actions .btn-primary { background: var(--brand-light); color: var(--brand-dark); }
.process-actions .btn-primary:hover { background: var(--white); }
.process-actions .btn-secondary { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.3); }
.process-actions .btn-secondary:hover { border-color: var(--brand-light); color: var(--brand-light); background: rgba(143, 190, 118, 0.06); }

/* ============ WHEN ============ */
.when h2.headline { margin-bottom: 64px; }
.when-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.when-card { background: var(--white); border: 1px solid var(--line); border-radius: 8px; padding: 36px 28px; display: flex; flex-direction: column; gap: 18px; min-height: 260px; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.when-card:hover { border-color: var(--brand-mid); transform: translateY(-2px); box-shadow: 0 12px 30px -16px rgba(45, 74, 43, 0.18); }
.when-icon { width: 44px; height: 44px; background: var(--brand-tint); border: 1px solid rgba(45, 74, 43, 0.15); border-radius: 8px; display: grid; place-items: center; color: var(--brand-dark); }
.when-card h3 { font-size: 19px; line-height: 1.25; font-weight: 500; letter-spacing: -0.015em; color: var(--black); }
.when-card p { font-size: 14px; color: var(--grey-2); line-height: 1.55; }

/* ============ MISSION ============ */
.mission { background: var(--brand-tint); border-top: 1px solid rgba(45, 74, 43, 0.15); border-bottom: 1px solid rgba(45, 74, 43, 0.15); }
.mission-inner { max-width: 980px; margin: 0 auto; text-align: center; }
.mission .section-label { justify-content: center; }
.mission blockquote { font-size: clamp(26px, 3.4vw, 44px); line-height: 1.25; letter-spacing: -0.02em; font-weight: 400; color: var(--brand-dark); margin-bottom: 36px; }
.mission blockquote span { color: var(--brand-mid); opacity: 0.7; }
.mission-cite { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--brand-mid); letter-spacing: 0.06em; text-transform: uppercase; }

/* ============ CTA ============ */
.cta { background: var(--brand-dark); color: var(--white); position: relative; overflow: hidden; }
.cta::before { content: ''; position: absolute; bottom: -50%; left: -10%; width: 600px; height: 600px; background: radial-gradient(circle, rgba(143, 190, 118, 0.12) 0%, transparent 60%); pointer-events: none; }
.cta .container { position: relative; }
.cta-inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: end; }
.cta .section-label { color: var(--brand-light); }
.cta .section-label .num { color: var(--brand-light); }
.cta h2.headline { color: var(--white); }
.cta h2.headline span { color: rgba(255, 255, 255, 0.45); }
.cta h2.headline em { color: var(--brand-light); }
.cta-actions { display: flex; flex-direction: column; gap: 10px; }
.cta-btn {
  background: var(--brand-light); color: var(--brand-dark);
  padding: 18px 22px; border-radius: 8px;
  text-decoration: none;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; font-weight: 500;
  transition: background 0.2s, transform 0.2s;
  border: none; cursor: pointer; font-family: inherit;
}
.cta-btn:hover { background: var(--white); transform: translateX(-3px); }
.cta-btn.alt { background: transparent; color: var(--white); border: 1px solid rgba(255, 255, 255, 0.25); }
.cta-btn.alt:hover { background: rgba(143, 190, 118, 0.08); border-color: var(--brand-light); color: var(--brand-light); }
.cta-btn span:last-child { font-family: 'Geist Mono', monospace; }

/* ============ FOOTER ============ */
footer.site-footer { background: var(--white); border-top: 1px solid var(--line); padding: 80px 32px 32px; }
.footer-inner { max-width: 1320px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.footer-brand img { height: 44px; width: auto; margin-bottom: 16px; }
.footer-brand p { color: var(--grey-2); font-size: 14px; line-height: 1.55; max-width: 320px; }
.footer-col h4 { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--brand-mid); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; font-weight: 500; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: var(--grey-1); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col a:hover { color: var(--brand-dark); }
.footer-col address { font-style: normal; color: var(--grey-1); font-size: 14px; line-height: 1.6; }
.certs { padding: 28px 0; border-bottom: 1px solid var(--line); display: flex; gap: 32px; flex-wrap: wrap; }
.cert { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--grey-2); letter-spacing: 0.04em; display: flex; align-items: center; gap: 8px; }
.cert::before { content: '✓'; color: var(--brand-mid); }
.footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--grey-2); letter-spacing: 0.04em; }

/* ============ POPUP / MODAL ============ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  display: none; align-items: center; justify-content: center;
  padding: 24px; opacity: 0;
  transition: opacity 0.25s;
}
.modal-overlay.open { display: flex; opacity: 1; }
.modal {
  background: var(--white); border-radius: 16px;
  width: 100%; max-width: 720px; max-height: calc(100vh - 48px);
  overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 30px 80px -20px rgba(0, 0, 0, 0.45);
  transform: translateY(16px); transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.modal-overlay.open .modal { transform: translateY(0); }
.modal-head {
  padding: 24px 28px; border-bottom: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.modal-title { display: flex; flex-direction: column; gap: 4px; }
.modal-title strong { font-size: 18px; font-weight: 500; letter-spacing: -0.01em; color: var(--black); }
.modal-title span { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--brand-mid); letter-spacing: 0.04em; text-transform: uppercase; }
.modal-close {
  background: var(--paper); border: 1px solid var(--line); border-radius: 50%;
  width: 36px; height: 36px; cursor: pointer; display: grid; place-items: center;
  color: var(--grey-1); transition: background 0.2s, color 0.2s;
}
.modal-close:hover { background: var(--brand-tint); color: var(--brand-dark); }
.modal-body { flex: 1; overflow-y: auto; min-height: 480px; }
.modal-body iframe { width: 100%; height: 100%; min-height: 600px; border: 0; display: block; }
.modal-placeholder {
  padding: 48px 28px; text-align: center; color: var(--grey-2);
  display: flex; flex-direction: column; gap: 16px; align-items: center;
}
.modal-placeholder .badge {
  font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.08em;
  color: var(--brand-mid); background: var(--brand-tint); padding: 6px 10px; border-radius: 4px;
  text-transform: uppercase;
}
.modal-placeholder p { max-width: 420px; font-size: 14px; line-height: 1.55; }
.modal-placeholder code { background: var(--paper); padding: 2px 6px; border-radius: 3px; font-family: 'Geist Mono', monospace; font-size: 12px; }

/* ============ PAGE HEAD (sub-pages) ============ */
.page-head { padding: 80px 32px 60px; max-width: 1320px; margin: 0 auto; }
.page-head h1 { font-size: clamp(40px, 6vw, 88px); font-weight: 400; letter-spacing: -0.04em; line-height: 1.0; max-width: 1100px; }
.page-head h1 span { color: var(--grey-3); }
.page-head h1 em { font-style: normal; color: var(--brand-dark); }
.page-head .lede { margin-top: 32px; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; color: var(--grey-1); max-width: 720px; }
.breadcrumb { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--grey-2); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 32px; display: flex; gap: 10px; align-items: center; }
.breadcrumb a { color: var(--grey-2); text-decoration: none; }
.breadcrumb a:hover { color: var(--brand-dark); }
.breadcrumb .sep { color: var(--grey-3); }
.breadcrumb .current { color: var(--brand-dark); }

/* ============ CONTACT GRID ============ */
.contact-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.contact-block { display: flex; flex-direction: column; gap: 28px; }
.contact-card { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 10px; }
.contact-card h3 { font-family: 'Geist Mono', monospace; font-size: 11px; color: var(--brand-mid); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 14px; font-weight: 500; }
.contact-card .big { font-size: 22px; line-height: 1.3; font-weight: 500; letter-spacing: -0.015em; color: var(--black); margin-bottom: 6px; }
.contact-card a { color: var(--brand-dark); text-decoration: none; border-bottom: 1px solid rgba(45, 74, 43, 0.25); }
.contact-card a:hover { border-color: var(--brand-dark); }
.contact-card address { font-style: normal; color: var(--grey-1); font-size: 15px; line-height: 1.6; }

.map-card {
  background: var(--brand-tint); border: 1px solid rgba(45, 74, 43, 0.15);
  border-radius: 10px; padding: 32px; min-height: 320px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 24px;
}
.map-card-pin {
  width: 56px; height: 56px; background: var(--brand-dark); border-radius: 50%;
  display: grid; place-items: center; color: var(--white);
}
.map-card h3 { font-size: 22px; line-height: 1.2; font-weight: 500; color: var(--brand-dark); letter-spacing: -0.01em; }
.map-card p { font-size: 14px; color: var(--grey-1); line-height: 1.55; }

/* Inline quote form (on contact page) */
.quote-card { background: var(--white); border: 1px solid var(--line); border-radius: 12px; padding: 32px; }
.quote-card h2 { font-size: 26px; line-height: 1.15; font-weight: 500; letter-spacing: -0.02em; margin-bottom: 8px; }
.quote-card p { color: var(--grey-2); font-size: 14px; line-height: 1.5; margin-bottom: 24px; }
.quote-card .iframe-wrap { width: 100%; min-height: 720px; background: var(--paper); border-radius: 8px; overflow: hidden; }
.quote-card iframe { width: 100%; height: 720px; border: 0; display: block; }
.quote-placeholder-inline {
  padding: 56px 28px; text-align: center; color: var(--grey-2);
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  background: var(--paper); border-radius: 8px;
}
.quote-placeholder-inline .badge { font-family: 'Geist Mono', monospace; font-size: 10px; letter-spacing: 0.08em; color: var(--brand-mid); background: var(--brand-tint); padding: 6px 10px; border-radius: 4px; text-transform: uppercase; }
.quote-placeholder-inline p { font-size: 14px; line-height: 1.55; max-width: 380px; margin: 0; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .menu-btn { display: block; }
  .nav-cta { display: none; }
  .hero { padding: 56px 24px 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 48px; padding-top: 40px; }
  section { padding: 80px 24px; }
  .page-head { padding: 56px 24px 48px; }
  .intro-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefits-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .benefit-grid { grid-template-columns: 1fr 1fr; }
  .benefit-card { min-height: auto; padding: 32px 24px; }
  .metrics { grid-template-columns: 1fr 1fr; }
  .metric { padding: 40px 16px 32px 0; }
  .metric:nth-child(4n) { border-right: 1px solid var(--line); }
  .metric:nth-child(2n) { border-right: none; }
  .step { grid-template-columns: 50px 1fr; gap: 20px; }
  .step-body { grid-column: 1 / -1; padding-left: 70px; }
  .when-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 540px) {
  .nav-inner { padding: 12px 20px; }
  .logo img { height: 32px; }
  .logo-text strong { font-size: 14px; }
  .logo-text span { font-size: 8px; }
  .hero { padding: 40px 20px 48px; }
  section { padding: 64px 20px; }
  .page-head { padding: 40px 20px 40px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr; }
  .metric { border-right: none !important; padding: 36px 0; }
  .step-body { padding-left: 0; }
  .step { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer.site-footer { padding: 56px 20px 24px; }
  .modal { border-radius: 14px; max-height: 90vh; }
  .modal-head { padding: 18px 20px; }
  .quote-card { padding: 24px 20px; }
}

::selection { background: var(--brand-dark); color: var(--white); }
