/* ═══════════════════════════════════════════════════
   EXTERIOR WINDOW CLEANERS NEAR ME — DESIGN SYSTEM
   Palette:  Concrete #2C2C2C | Orange #F97316 | White #F8F8F6
             Steel #5A6475    | Glass #C8E6F5  | Lime #84CC16
   Type:     Oswald (display) / Source Sans 3 (body)
   Feel:     Industrial job-site — utilitarian, precise, confident
═══════════════════════════════════════════════════ */

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

:root {
  --concrete:     #2C2C2C;
  --concrete-mid: #3D3D3D;
  --concrete-lt:  #4E4E4E;
  --orange:       #F97316;
  --orange-dark:  #EA6005;
  --white:        #F8F8F6;
  --off-white:    #EFEFEC;
  --steel:        #5A6475;
  --steel-lt:     #8A96A5;
  --glass-blue:   #C8E6F5;
  --lime:         #84CC16;
  --red-warn:     #EF4444;

  --font-display: 'Oswald', sans-serif;
  --font-body:    'Source Sans 3', sans-serif;

  --container:    1200px;
  --radius:       8px;
  --radius-sm:    4px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.12);
  --shadow-md:  0 6px 24px rgba(0,0,0,0.18);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.25);

  --transition: 0.22s cubic-bezier(0.4,0,0.2,1);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--concrete);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul  { list-style: none; }

a {
  color: var(--orange);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--orange-dark); }
a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--orange); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius-sm);
  font-weight: 600; z-index: 9999;
}
.skip-link:focus { top: 1rem; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── SECTION HELPERS ── */
.section-band-dark {
  background: var(--concrete);
  padding: 5rem 0;
}
.eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.6rem;
  display: block;
}
.eyebrow-light { color: var(--orange); }

.heading-light {
  color: var(--white);
}
.section-intro-light {
  color: rgba(248,248,246,0.72);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}
.section-intro-light a { color: var(--glass-blue); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-family: var(--font-body); font-weight: 600; font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff; border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark); border-color: var(--orange-dark); color: #fff;
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(249,115,22,0.35);
}
.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(248,248,246,0.4);
}
.btn-outline:hover {
  background: rgba(248,248,246,0.1); border-color: var(--white); color: var(--white);
}
.btn-outline-light {
  background: transparent; color: var(--white); border-color: rgba(248,248,246,0.35);
}
.btn-outline-light:hover {
  background: rgba(248,248,246,0.08); border-color: var(--white); color: var(--white);
}
.btn-lg  { padding: 0.9rem 2.25rem; font-size: 1.05rem; }
.btn-xl  { padding: 1.1rem 2.75rem; font-size: 1.15rem; }

/* ════════════════════════════
   TOP BAR
════════════════════════════ */
.top-bar {
  background: var(--orange);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.top-bar-cta {
  background: #fff;
  color: var(--orange);
  padding: 0.28rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.82rem;
  white-space: nowrap;
  transition: all var(--transition);
}
.top-bar-cta:hover { background: var(--concrete); color: #fff; }

/* ════════════════════════════
   HEADER
════════════════════════════ */
.site-header {
  position: sticky; top: 0; z-index: 900;
  background: var(--concrete);
  border-bottom: 3px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: 68px; gap: 1.5rem;
}
.logo {
  display: flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: var(--white); flex-shrink: 0;
}
.logo-icon {
  font-size: 1.7rem; color: var(--orange); line-height: 1;
}
.logo-text { line-height: 1.2; }
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600;
  letter-spacing: 0.04em; display: block; color: var(--white);
}
.logo-text span {
  font-size: 0.68rem; color: var(--steel-lt);
  text-transform: uppercase; letter-spacing: 0.08em;
}

.main-nav ul { display: flex; align-items: center; gap: 0.15rem; }
.main-nav a {
  font-size: 0.85rem; font-weight: 500; color: var(--steel-lt);
  padding: 0.45rem 0.8rem; border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.main-nav a:hover { color: var(--white); background: rgba(249,115,22,0.15); }
.nav-cta {
  background: var(--orange) !important; color: #fff !important;
  font-weight: 600 !important; padding: 0.45rem 1.1rem !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 0.5rem;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all var(--transition);
}

/* ════════════════════════════
   HERO
════════════════════════════ */
.hero {
  background: var(--concrete);
  min-height: 88vh;
  display: flex; align-items: center;
  padding: 5rem 0 6rem;
  position: relative; overflow: hidden;
}

/* Grid texture — the "job site" signature element */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Scrape lines — the unique signature motion */
.hero-scrape {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.scrape-line {
  position: absolute; left: -20%; width: 140%;
  height: 2px; background: linear-gradient(90deg, transparent, rgba(249,115,22,0.15), transparent);
  animation: scrape-across 6s ease-in-out infinite;
}
.scrape-1 { top: 25%; animation-delay: 0s; }
.scrape-2 { top: 55%; animation-delay: 2s; }
.scrape-3 { top: 78%; animation-delay: 4s; }

@keyframes scrape-across {
  0%   { transform: translateX(-100%); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translateX(100%); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 10;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  background: var(--orange);
  color: #fff; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.3rem 0.9rem; border-radius: var(--radius-sm);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}
.hero-headline em {
  font-style: normal; color: var(--orange);
  display: block; font-size: 0.88em;
}
.hero-headline-sub {
  font-size: 0.72em;
  color: var(--lime);
  display: block;
}
.hero-subhead {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(248,248,246,0.72);
  max-width: 620px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  background: rgba(248,248,246,0.07);
  border: 1px solid rgba(248,248,246,0.12);
  color: rgba(248,248,246,0.65);
  font-size: 0.75rem; font-weight: 500;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
}

/* ════════════════════════════
   STAT BAR
════════════════════════════ */
.stat-bar { background: var(--orange); }
.stat-bar-inner {
  display: flex; align-items: center; justify-content: center;
  padding: 1.4rem 1.5rem; flex-wrap: wrap; gap: 0;
}
.stat { display: flex; align-items: center; gap: 0.6rem; padding: 0.5rem 2rem; }
.stat-val {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; color: #fff; line-height: 1;
}
.stat-desc { font-size: 0.7rem; color: rgba(255,255,255,0.8); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.3; }
.stat-div { width: 1px; height: 32px; background: rgba(255,255,255,0.25); }

/* ════════════════════════════
   INTRO SECTION
════════════════════════════ */
.intro-section { padding: 5rem 0; background: var(--white); }
.intro-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: start;
}
.intro-text .eyebrow { display: block; }
.intro-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--concrete);
  line-height: 1.15; margin-bottom: 1.25rem;
}
.intro-text p {
  color: var(--steel); margin-bottom: 1rem; font-size: 1rem;
}
.intro-text p:last-of-type { margin-bottom: 2rem; }

.intro-damage-list h3 {
  font-family: var(--font-display);
  font-size: 1.1rem; font-weight: 600; color: var(--concrete);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--orange);
}
.damage-list { display: flex; flex-direction: column; gap: 1rem; }
.damage-item {
  display: flex; align-items: flex-start; gap: 0.85rem;
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--off-white);
  transition: all var(--transition);
}
.damage-item:hover {
  border-color: var(--orange);
  background: rgba(249,115,22,0.03);
  transform: translateX(4px);
}
.damage-icon { font-size: 1.3rem; flex-shrink: 0; }
.damage-item strong { font-size: 0.9rem; color: var(--concrete); display: block; margin-bottom: 0.2rem; }
.damage-item p { font-size: 0.8rem; color: var(--steel); line-height: 1.45; margin: 0; }

/* ════════════════════════════
   CHEMICALS SECTION
════════════════════════════ */
.chemicals-section .container {
  text-align: center;
}
.chemicals-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600; color: var(--white); margin-bottom: 1rem;
}
.chem-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; text-align: left; margin-top: 1rem;
}
.chem-card {
  background: rgba(248,248,246,0.04);
  border: 1px solid rgba(248,248,246,0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: all var(--transition);
}
.chem-card:hover {
  background: rgba(248,248,246,0.07);
  border-color: var(--orange);
}
.chem-card-warning {
  border-color: rgba(239,68,68,0.3);
  background: rgba(239,68,68,0.04);
}
.chem-card-warning:hover { border-color: var(--red-warn); }

.chem-number {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700;
  color: rgba(249,115,22,0.15);
  line-height: 1;
  position: absolute; top: 1rem; right: 1.25rem;
  user-select: none;
}
.chem-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 600; color: var(--white); margin-bottom: 0.3rem;
}
.chem-type {
  font-size: 0.75rem; color: var(--orange);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-bottom: 0.85rem; font-weight: 600;
}
.chem-card > p {
  font-size: 0.9rem; color: rgba(248,248,246,0.68); line-height: 1.65; margin-bottom: 1.25rem;
}
.chem-process {
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.4rem;
  border-top: 1px solid rgba(248,248,246,0.07); padding-top: 1rem;
}
.process-step-pill {
  background: rgba(249,115,22,0.15); color: var(--orange);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.25rem 0.6rem; border-radius: 50px;
}
.arrow { color: rgba(248,248,246,0.25); font-size: 0.9rem; }

.never-list { margin-top: 0.75rem; display: flex; flex-direction: column; gap: 0.3rem; }
.never-list li { font-size: 0.85rem; color: rgba(239,68,68,0.85); font-weight: 500; }

/* ════════════════════════════
   RAZOR SECTION
════════════════════════════ */
.razor-section { padding: 5rem 0; background: var(--off-white); }
.razor-section > .container > .eyebrow { display: block; }
.razor-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--concrete);
  margin-bottom: 2.5rem; max-width: 700px;
}
.razor-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start; margin-bottom: 4rem;
}
.razor-explainer p { color: var(--steel); margin-bottom: 1rem; font-size: 1rem; }
.razor-explainer p:last-child { margin-bottom: 0; }
.razor-explainer strong { color: var(--concrete); }

.razor-compare { display: flex; flex-direction: column; gap: 1rem; }
.compare-card {
  border-radius: var(--radius); padding: 1.5rem;
  border: 2px solid transparent;
}
.compare-bad {
  background: rgba(239,68,68,0.05);
  border-color: rgba(239,68,68,0.2);
}
.compare-good {
  background: rgba(132,204,22,0.05);
  border-color: rgba(132,204,22,0.3);
}
.compare-icon {
  font-size: 1.4rem; font-weight: 700; margin-bottom: 0.5rem; display: block;
}
.compare-bad .compare-icon { color: var(--red-warn); }
.compare-good .compare-icon { color: var(--lime); }
.compare-card h3 {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600; margin-bottom: 0.75rem;
}
.compare-bad h3 { color: var(--red-warn); }
.compare-good h3 { color: var(--lime); }
.compare-card ul { display: flex; flex-direction: column; gap: 0.35rem; }
.compare-card li { font-size: 0.85rem; color: var(--steel); padding-left: 0; }

/* Process flow */
.process-block {
  background: var(--concrete);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.process-block h3 {
  font-family: var(--font-display);
  font-size: 1.3rem; font-weight: 600; color: var(--white);
  margin-bottom: 2rem; text-align: center;
}
.process-flow {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 0.75rem; flex-wrap: wrap;
}
.pf-step { flex: 1; min-width: 160px; text-align: center; }
.pf-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--orange); color: #fff;
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.85rem;
}
.pf-step h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.4rem;
}
.pf-step p { font-size: 0.8rem; color: rgba(248,248,246,0.6); line-height: 1.5; }
.pf-arrow { color: var(--orange); font-size: 1.3rem; padding-top: 0.8rem; flex-shrink: 0; align-self: flex-start; margin-top: 1rem; }

/* ════════════════════════════
   PROTECTION SECTION
════════════════════════════ */
.protection-section .container { text-align: center; }
.protection-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600; color: var(--white); margin-bottom: 1rem;
}
.prot-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; text-align: left; margin: 1rem 0 2.5rem;
}
.prot-card {
  background: rgba(248,248,246,0.04);
  border: 1px solid rgba(248,248,246,0.08);
  border-radius: var(--radius); padding: 1.75rem;
  transition: all var(--transition);
}
.prot-card:hover {
  background: rgba(248,248,246,0.08);
  border-color: var(--orange); transform: translateY(-4px);
}
.prot-icon { font-size: 2rem; display: block; margin-bottom: 0.75rem; }
.prot-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.75rem;
}
.prot-card p { font-size: 0.88rem; color: rgba(248,248,246,0.65); line-height: 1.65; margin-bottom: 0.85rem; }
.prot-specs {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  border-top: 1px solid rgba(248,248,246,0.07); padding-top: 0.85rem;
}
.prot-specs span {
  font-size: 0.72rem; color: var(--lime); font-weight: 600;
  background: rgba(132,204,22,0.1); padding: 0.2rem 0.55rem; border-radius: 50px;
}

.prot-cost-note {
  margin: 0 0 2.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(249,115,22,0.3);
  background: rgba(249,115,22,0.08);
}
.cost-note-inner {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem 1.5rem; text-align: left;
}
.cost-note-icon { font-size: 1.5rem; flex-shrink: 0; }
.cost-note-inner div { font-size: 0.92rem; color: rgba(248,248,246,0.8); line-height: 1.6; }
.cost-note-inner strong { color: var(--orange); }

.prot-cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ════════════════════════════
   WHO WE SERVE
════════════════════════════ */
.serve-section { padding: 5rem 0; background: var(--white); }
.serve-section > .container > .eyebrow { display: block; }
.serve-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--concrete);
  margin-bottom: 2.5rem;
}
.serve-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem;
}
.serve-card {
  border: 1.5px solid var(--off-white);
  border-radius: var(--radius); padding: 1.5rem;
  transition: all var(--transition);
}
.serve-card:hover {
  border-color: var(--orange); box-shadow: var(--shadow-md); transform: translateY(-3px);
}
.serve-icon { font-size: 1.8rem; display: block; margin-bottom: 0.6rem; }
.serve-card h3 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 600;
  color: var(--concrete); margin-bottom: 0.5rem;
}
.serve-card p { font-size: 0.85rem; color: var(--steel); line-height: 1.6; }

/* ════════════════════════════
   AREAS SECTION
════════════════════════════ */
.areas-section .container { text-align: center; }
.areas-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 600; color: var(--white); margin-bottom: 1rem;
}
.light-link { color: var(--glass-blue); font-weight: 600; }
.light-link:hover { color: var(--orange); }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: 0.75rem;
  justify-content: center; margin-top: 2rem;
}
.area-pill {
  background: rgba(248,248,246,0.07);
  border: 1px solid rgba(248,248,246,0.12);
  color: rgba(248,248,246,0.8);
  font-size: 0.88rem; font-weight: 500;
  padding: 0.45rem 1.1rem; border-radius: 50px;
  transition: all var(--transition);
}
.area-pill:hover {
  background: var(--orange); color: #fff; border-color: var(--orange);
}

/* ════════════════════════════
   FAQ
════════════════════════════ */
.faq-section { padding: 5rem 0; background: var(--white); }
.faq-section > .container > .eyebrow { display: block; }
.faq-section h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 600; color: var(--concrete); margin-bottom: 0.75rem;
}
.faq-intro {
  color: var(--steel-lt); font-size: 0.9rem; margin-bottom: 2.5rem;
}
.faq-list { max-width: 820px; display: flex; flex-direction: column; gap: 0.6rem; }
.faq-item {
  border: 1.5px solid var(--off-white); border-radius: var(--radius); overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item[open] { border-color: var(--orange); }
.faq-q {
  font-family: var(--font-body); font-size: 0.97rem; font-weight: 600;
  color: var(--concrete); padding: 1.15rem 1.5rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  transition: color var(--transition); user-select: none;
  background: var(--white);
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after { content: '+'; font-size: 1.3rem; color: var(--orange); flex-shrink: 0; margin-left: 1rem; transition: transform var(--transition); }
details[open] .faq-q::after { transform: rotate(45deg); }
.faq-q:hover { color: var(--orange); }
.faq-a {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.92rem; color: var(--steel); line-height: 1.7;
  background: var(--white);
}
.faq-a a { color: var(--orange); font-weight: 500; }

/* ════════════════════════════
   AFFILIATE
════════════════════════════ */
.affiliate-section { padding: 4rem 0; background: var(--off-white); }
.affiliate-card {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3rem;
  border: 2px solid var(--orange);
  box-shadow: var(--shadow-md);
}
.affiliate-text .eyebrow { display: block; }
.affiliate-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 600; color: var(--concrete); margin-bottom: 1rem;
}
.affiliate-text p { color: var(--steel); font-size: 1rem; line-height: 1.7; margin-bottom: 1.5rem; }
.affiliate-link { color: var(--orange); font-weight: 600; }
.affiliate-link:hover { color: var(--orange-dark); }

.affiliate-badge {
  text-align: center; flex-shrink: 0;
  background: var(--concrete); border-radius: var(--radius);
  padding: 2rem; min-width: 200px;
}
.badge-icon { font-size: 3rem; display: block; margin-bottom: 0.5rem; }
.badge-text {
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 600;
  color: var(--white); display: block; line-height: 1.2; margin-bottom: 0.5rem;
}
.badge-sub { font-size: 0.72rem; color: var(--orange); display: block; }

/* ════════════════════════════
   CONTACT
════════════════════════════ */
.contact-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
}
.contact-text .eyebrow { display: block; }
.contact-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600; color: var(--white);
  margin-bottom: 1rem; line-height: 1.15;
}
.contact-subhead { color: rgba(248,248,246,0.68); font-size: 1rem; margin-bottom: 2rem; }
.contact-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.contact-details p { font-size: 0.9rem; color: rgba(248,248,246,0.6); margin-bottom: 0.4rem; }

.contact-card {
  background: rgba(248,248,246,0.06);
  border: 1px solid rgba(248,248,246,0.1);
  border-radius: var(--radius); padding: 2.5rem 2rem;
  text-align: center; min-width: 260px; flex-shrink: 0;
}
.contact-card h3 {
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.25rem;
}
.contact-card > p { font-size: 0.78rem; color: rgba(248,248,246,0.5); margin-bottom: 1.25rem; }
.contact-phone {
  display: block; font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--orange); margin-bottom: 0.25rem; transition: color var(--transition);
}
.contact-phone:hover { color: var(--lime); }
.contact-call-text { font-size: 0.72rem; color: rgba(248,248,246,0.4); margin-bottom: 1.25rem !important; }
.contact-divider { height: 1px; background: rgba(248,248,246,0.08); margin: 1rem 0; }
.contact-affiliate-note { font-size: 0.75rem; color: rgba(248,248,246,0.45); }
.contact-affiliate-note a { color: var(--orange); font-weight: 600; }

/* ════════════════════════════
   FOOTER
════════════════════════════ */
.site-footer { background: #1A1A1A; padding-top: 4rem; }
.footer-inner {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(248,248,246,0.06);
}
.footer-logo-icon { font-size: 1.5rem; color: var(--orange); display: block; margin-bottom: 0.5rem; }
.footer-brand-name { font-family: var(--font-display); font-size: 1rem; font-weight: 600; color: var(--white); display: block; margin-bottom: 0.3rem; }
.footer-brand p { font-size: 0.78rem; color: rgba(248,248,246,0.45); margin-bottom: 0.75rem; }
.footer-phone { font-family: var(--font-display); font-size: 1.2rem; font-weight: 600; color: var(--orange); display: block; }
.footer-phone:hover { color: var(--lime); }
.footer-col h4 { font-family: var(--font-display); font-size: 0.72rem; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(248,248,246,0.35); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.45rem; }
.footer-col a { font-size: 0.85rem; color: rgba(248,248,246,0.55); transition: color var(--transition); }
.footer-col a:hover { color: var(--orange); }
.footer-bottom { padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { font-size: 0.75rem; color: rgba(248,248,246,0.3); }
.footer-bottom a { color: rgba(248,248,246,0.45); }
.footer-bottom a:hover { color: var(--orange); }

/* ════════════════════════════
   REDUCED MOTION
════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
}

/* ════════════════════════════
   RESPONSIVE — TABLET
════════════════════════════ */
@media (max-width: 1024px) {
  .intro-grid       { grid-template-columns: 1fr; gap: 3rem; }
  .chem-grid        { grid-template-columns: 1fr; }
  .razor-grid       { grid-template-columns: 1fr; gap: 2.5rem; }
  .prot-grid        { grid-template-columns: 1fr 1fr; }
  .serve-grid       { grid-template-columns: repeat(2, 1fr); }
  .affiliate-card   { grid-template-columns: 1fr; gap: 2rem; }
  .affiliate-badge  { margin: 0 auto; }
  .contact-inner    { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-card     { min-width: unset; max-width: 340px; }
  .footer-inner     { grid-template-columns: repeat(2, 1fr); }
  .process-flow     { flex-wrap: wrap; justify-content: center; }
  .pf-arrow         { display: none; }
}

/* ════════════════════════════
   RESPONSIVE — MOBILE
════════════════════════════ */
@media (max-width: 768px) {
  .top-bar  { flex-direction: column; gap: 0.4rem; text-align: center; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: fixed; top: 0; right: -100%; width: 80%; max-width: 300px;
    height: 100vh; background: var(--concrete);
    box-shadow: var(--shadow-lg); padding: 5rem 2rem 2rem;
    transition: right var(--transition); z-index: 800;
  }
  .main-nav.open { right: 0; }
  .main-nav ul { flex-direction: column; gap: 0.25rem; }
  .main-nav a { padding: 0.75rem 1rem; font-size: 1rem; display: block; }

  .hero { min-height: 80vh; padding: 4rem 0 5rem; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }

  .stat-bar-inner { justify-content: flex-start; }
  .stat { padding: 0.5rem 1rem; }
  .stat-div { display: none; }

  .prot-grid  { grid-template-columns: 1fr; }
  .serve-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }

  .process-flow { flex-direction: column; align-items: center; }
  .pf-arrow { transform: rotate(90deg); display: block; margin: 0; padding: 0; }
  .pf-step { max-width: 300px; width: 100%; }

  .contact-ctas { flex-direction: column; }
  .prot-cta { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .cost-note-inner { flex-direction: column; }
}
