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

:root {
  --orange: #E07B20;
  --charcoal: #1a1a1a;
  --dark: #111111;
  --darker: #0a0a0a;
  --mid: #2c2c2c;
  --gray: #555;
  --light-gray: #f2f2f2;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--charcoal);
  line-height: 1.6;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 70px;
  background: rgba(17,17,17,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--orange);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
}

.nav-logo-img {
  height: 58px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--orange);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  text-decoration: none;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: background 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s !important;
  border: 2px solid var(--orange);
  white-space: nowrap;
}

.nav-cta:hover {
  background: #27ae60 !important;
  border-color: #27ae60 !important;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.3) !important;
}

/* ── HOMEPAGE HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--dark);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(224, 123, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 123, 32, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* ── HERO CURSOR SPOTLIGHT ── */
.hero-spotlight-text {
  position: absolute;
  top: 0; right: 0;
  width: 58%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 40px;
  pointer-events: none;
  z-index: 3;
  clip-path: circle(0px at 50% 50%);
  transition: clip-path 0.05s linear;
  user-select: none;
}

.hero-spotlight-text .spt-truett {
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 900;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.04em;
  line-height: 0.88;
  white-space: nowrap;
}

.hero-spotlight-text .spt-roofing {
  font-size: clamp(1.2rem, 3vw, 3.2rem);
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.55em;
  text-transform: uppercase;
  margin-top: 12px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 120px 60px 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #aaa;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 0;
  border-radius: 3px;
  margin-bottom: 20px;
  border-bottom: 1px solid #333;
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

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

.hero-sub {
  font-size: 1.15rem;
  color: #ccc;
  margin-bottom: 14px;
  max-width: 520px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #aaa;
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.hero-trust strong { color: var(--white); }

.hero-trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #555;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  position: absolute;
  right: 60px;
  bottom: 80px;
  display: flex;
  gap: 40px;
  z-index: 2;
}

.hero-stat { text-align: center; color: var(--white); }

.hero-stat-num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.hero-stat-num span { color: #aaa; }

.hero-stat-label {
  font-size: 0.75rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: var(--dark);
  padding: 130px 60px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--orange);
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(224, 123, 32, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(224, 123, 32, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}

.page-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.page-hero .section-label { margin-bottom: 14px; }

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.page-hero h1 .highlight { color: var(--orange); }

.page-hero p {
  font-size: 1.1rem;
  color: #aaa;
  max-width: 620px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.page-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--orange); }

.breadcrumb span { color: #444; }

/* ── SECTION COMMONS ── */
section { scroll-margin-top: 70px; }

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 1rem;
  color: var(--gray);
  max-width: 620px;
  margin-top: 14px;
  line-height: 1.7;
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--charcoal);
  padding: 18px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ccc;
  font-size: 0.88rem;
  font-weight: 500;
}

.trust-icon { color: var(--orange); font-size: 1.1rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.05rem;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  border: 2px solid var(--orange);
  cursor: pointer;
}

.btn-primary:hover {
  background: #27ae60;
  border-color: #27ae60;
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.25s, background 0.25s, color 0.25s, transform 0.2s;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-section {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn-section:hover {
  background: #27ae60;
  color: var(--white);
  border-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.2);
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 30px;
  border-radius: 50px;
  font-size: 0.97rem;
  font-weight: 800;
  text-decoration: none;
  border: 2px solid var(--orange);
  transition: background 0.25s, color 0.25s, transform 0.2s, box-shadow 0.25s, border-color 0.25s;
}

.btn-white:hover {
  background: #27ae60;
  border-color: #27ae60;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

/* ── SERVICE SECTIONS ── */
.service-section { padding: 90px 60px; }

.service-section:nth-child(odd) { background: var(--white); }
.service-section:nth-child(even) { background: var(--light-gray); }

.service-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.service-inner.reverse { direction: rtl; }
.service-inner.reverse > * { direction: ltr; }

.service-perks {
  list-style: none;
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray);
}

.perk-check {
  color: var(--orange);
  font-weight: 900;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--charcoal);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 44px 60px;
  text-align: center;
}

.cta-band h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}

.cta-band p {
  color: #888;
  font-size: 0.97rem;
  margin-bottom: 24px;
}

/* ── SOLAR DARK SECTION ── */
.service-section.dark-section { background: var(--charcoal); }
.service-section.dark-section .section-title { color: var(--white); }
.service-section.dark-section .section-body { color: #aaa; }
.service-section.dark-section .service-perks li { color: #bbb; }
.service-section.dark-section .section-label { color: var(--orange); }

/* ── TUNE-UP / STARLINK CARDS ── */
.cards-section { padding: 90px 60px; background: var(--light-gray); }

.cards-header { max-width: 1100px; margin: 0 auto 48px; }

.cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
}

.card-img-wrap {
  width: 100%;
  height: 220px;
  background: #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.card-body { padding: 28px 30px 32px; }
.card-body .section-label { margin-bottom: 8px; }

.card-body h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.card-body p {
  font-size: 0.93rem;
  color: var(--gray);
  margin-bottom: 22px;
  line-height: 1.65;
}

/* ── FINAL CTA ── */
.final-cta {
  background: var(--dark);
  padding: 100px 60px;
  text-align: center;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.final-cta h2 span { color: var(--white); }

.final-cta p {
  color: #aaa;
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── FOOTER ── */
footer {
  background: #0a0a0a;
  padding: 48px 60px 30px;
  border-top: 1px solid #222;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #222;
}

.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 12px;
}

.footer-brand span { color: var(--white); }

.footer-desc {
  font-size: 0.88rem;
  color: #777;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-phone {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  text-decoration: none;
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  margin-bottom: 16px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-col ul a {
  color: #888;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

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

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #555;
}

/* ── IMAGES ── */
.img-roofing { background: url('/hero-roofing.jpg') center/cover; }
.img-siding { background: url('https://images.unsplash.com/photo-1600585154340-be6161a56a0c?w=800&q=80') center/cover; }
.img-gutters { background: url('https://images.unsplash.com/photo-1601824357963-a4079b4cdc04?w=800&q=80') center/cover; }
.img-windows { background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=800&q=80') center/cover; }
.img-doors { background: url('https://images.unsplash.com/photo-1558618047-3c8c76ca7d13?w=800&q=80') center/cover; }
.img-solar { background: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=800&q=80') center/cover; }

.img-box { width: 100%; height: 380px; border-radius: 6px; }

/* ── OUR STORY ── */
.story-section { background: var(--charcoal); padding: 90px 60px; }

.story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}

.founder-card {
  background: #111;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  position: sticky;
  top: 90px;
}

.founder-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  display: block;
  margin-bottom: 18px;
}

.founder-name { font-size: 1.2rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }

.founder-title {
  font-size: 0.8rem;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #2a2a2a;
}

.founder-stats { display: flex; flex-direction: column; gap: 18px; }

.founder-stat-num {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.founder-stat-label {
  font-size: 0.72rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 3px;
}

.story-text-col { padding-top: 4px; }

.story-paragraphs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.story-paragraphs p { font-size: 1rem; color: #aaa; line-height: 1.8; }
.story-paragraphs p strong { color: var(--white); font-weight: 600; }

.story-quote {
  border-left: 3px solid var(--orange);
  padding: 14px 24px;
  margin: 8px 0;
  font-size: 1.05rem;
  font-style: italic;
  color: #ccc;
  line-height: 1.7;
  background: rgba(255,255,255,0.03);
  border-radius: 0 4px 4px 0;
}

/* ── LOCATIONS ── */
.locations-section { background: var(--white); padding: 90px 60px; }

.locations-header { max-width: 1100px; margin: 0 auto 52px; }

.locations-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.location-region {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 30px 28px 28px;
  border: 1px solid #e8e8e8;
}

.region-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ddd;
}

.region-flag { font-size: 1.8rem; }
.region-name { font-size: 1.05rem; font-weight: 800; color: var(--charcoal); margin-bottom: 3px; }
.region-tag { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); }

.region-cities { list-style: none; display: flex; flex-direction: column; gap: 7px; }

.region-cities li a {
  color: #555;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.region-cities li a:hover { color: var(--charcoal); }

.region-cities li.more-link { margin-top: 8px; padding-top: 10px; border-top: 1px solid #ddd; }

.region-cities li.more-link a { font-size: 0.82rem; font-weight: 600; color: var(--charcoal); }

.locations-cta {
  max-width: 1100px;
  margin: 32px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: #888;
}

.locations-cta a { color: var(--charcoal); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }

/* ── PROCESS STEPS ── */
.process-section { padding: 90px 60px; background: var(--white); }

.process-inner { max-width: 1100px; margin: 0 auto; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 52px;
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  top: 28px;
  right: -18px;
  color: var(--orange);
  font-size: 1.4rem;
  font-weight: 900;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.process-step h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.process-step p {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.65;
}

/* ── MATERIALS GRID ── */
.materials-section { padding: 90px 60px; background: var(--light-gray); }

.materials-inner { max-width: 1100px; margin: 0 auto; }

.materials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.material-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px 28px;
  border: 1px solid #e8e8e8;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.material-icon { font-size: 2.2rem; margin-bottom: 16px; }

.material-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.material-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  margin-bottom: 14px;
}

.material-badge {
  display: inline-block;
  background: var(--light-gray);
  color: var(--charcoal);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 30px;
  border: 1px solid #ddd;
}

/* ── VALUES SECTION ── */
.values-section { padding: 90px 60px; background: var(--charcoal); }

.values-inner { max-width: 1100px; margin: 0 auto; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 32px 28px;
}

.value-icon { font-size: 2rem; margin-bottom: 16px; }

.value-card h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.value-card p {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.7;
}

/* ── FAQ ── */
.faq-section { padding: 90px 60px; background: var(--white); }

.faq-inner { max-width: 820px; margin: 0 auto; }

.faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 0; }

.faq-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 24px 0;
}

.faq-item:first-child { border-top: 1px solid #e8e8e8; }

.faq-q {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.faq-q::before {
  content: 'Q';
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 900;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
  margin-top: 2px;
}

.faq-a {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.75;
  padding-left: 28px;
}

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--dark);
  padding: 56px 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
}

.stats-strip-item {
  text-align: center;
  padding: 0 20px;
  border-right: 1px solid #222;
}

.stats-strip-item:last-child { border-right: none; }

.stats-strip-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 8px;
}

.stats-strip-label {
  font-size: 0.8rem;
  color: #aaa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── ASSESSMENT FORM ── */
.assessment-section {
  background: var(--dark);
  padding: 90px 60px;
}

.assessment-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

/* ── RESPONSIVE ── */
@media (max-width: 1280px) {
  nav { padding: 0 24px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 0.78rem; }
  .nav-cta { padding: 7px 16px; }
  .nav-logo-img { height: 46px; }
}

@media (max-width: 1050px) {
  nav { padding: 0 16px; }
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 0.72rem; letter-spacing: 0.02em; }
  .nav-cta { padding: 6px 13px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .stats-strip-item { border-right: none; border-bottom: 1px solid #222; }
  .stats-strip-item:last-child { border-bottom: none; }
}

@media (max-width: 900px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .hero-spotlight-text { display: none; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-stats { display: none; }
  .service-section { padding: 60px 24px; }
  .service-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-inner.reverse { direction: ltr; }
  .cta-band { padding: 36px 24px; }
  .cards-section { padding: 60px 24px; }
  .cards-grid { grid-template-columns: 1fr; }
  .final-cta { padding: 70px 24px; }
  footer { padding: 40px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar { padding: 18px 24px; gap: 24px; }
  .story-section { padding: 60px 24px; }
  .story-inner { grid-template-columns: 1fr; gap: 40px; }
  .founder-card { position: static; }
  .locations-section { padding: 60px 24px; }
  .locations-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 110px 24px 60px; }
  .process-section { padding: 60px 24px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step:not(:last-child)::after { display: none; }
  .materials-section { padding: 60px 24px; }
  .materials-grid { grid-template-columns: 1fr; }
  .values-section { padding: 60px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 60px 24px; }
  .stats-strip { padding: 48px 24px; grid-template-columns: 1fr 1fr; }
  .assessment-section { padding: 60px 24px; }
}


/* ── CLICKABLE MATERIAL CARDS ── */
a.material-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

a.material-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.12);
  border-color: var(--orange);
}

a.material-card .learn-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.03em;
}

a.material-card:hover .learn-more {
  text-decoration: underline;
}
