/* ============================================================
   COMPLETE ROOFING SYSTEMS — styles.css
============================================================ */

:root {
  --red: #c0392b;
  --red-dark: #782b0c;
  --red-light: #fdf2f1;
  --dark: #1a1a1a;
  --dark-mid: #2c2c2c;
  --gray: #6b7280;
  --gray-light: #f4f4f5;
  --border: #e5e7eb;
  --white: #ffffff;
  --font: 'Inter', sans-serif;
  --radius: 8px;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --container: 1200px;
  --nav-h: 80px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

.section { padding: 6rem 0; }

.hidden { display: none !important; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: all .2s;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  text-transform: uppercase;
  letter-spacing: .01em;
}
.btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,.3);
}

/* Footer overrides — white rollover */
.footer-contact .btn-primary:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--dark);
}

.footer-contact .footer-emergency-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .9rem;
  font-weight: 700;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}
.footer-contact .footer-emergency-link:hover {
  color: var(--red);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border-color: var(--red);
  text-transform: uppercase;
  letter-spacing: .01em;
  justify-content: center;
}
.btn-outline-red:hover {
  background: var(--dark);
  color: var(--white);
  border-color: var(--dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,.15);
  border-color: var(--white);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
}

.btn-phone {
  background: transparent;
  color: var(--dark);
  border-color: var(--border);
  font-weight: 600;
}
.btn-phone:hover {
  border-color: var(--red);
  color: var(--red);
}

.btn-emergency {
  background: transparent;
  color: var(--red);
  border-color: transparent;
  font-weight: 700;
  padding-left: 0;
  padding-right: 0;
}
.btn-emergency:hover {
  color: var(--dark);
  background: transparent;
  border-color: transparent;
  transform: none;
  box-shadow: none;
}

.btn-lg { padding: 1rem 2rem; font-size: 1rem; }
.btn-sm { padding: .4rem .85rem; font-size: .78rem; }
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SECTION HEADERS
============================================================ */
.section-tag {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: .75rem;
}

.section-tag--light { color: rgba(255,255,255,.7); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-header--light h2,
.section-header--light p { color: var(--white) !important; }

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--dark);
}

.section-header p {
  color: var(--gray);
  font-size: 1.05rem;
}

.accent { color: var(--red); }

/* ============================================================
   REVEAL ANIMATION
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAV
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  height: var(--nav-h);
  transition: box-shadow .3s;
}

.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
}

.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo-img { height: 72px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-left: 1rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--red); }

/* ── NAV DROPDOWN ── */
.nav-dropdown { position: relative; }
.nav-dropdown > a { display: flex; align-items: center; gap: 4px; }
.nav-chevron { width: 10px; height: 10px; flex-shrink: 0; transition: transform .2s; }
/* chevron rotation handled in combined rule below */
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 252px;
  padding: .4rem 0;
  margin-top: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .18s, transform .18s;
  z-index: 500;
}
/* invisible bridge fills gap between nav link and menu */
.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown-menu li a {
  display: block;
  padding: .6rem 1.25rem;
  font-size: .83rem;
  font-weight: 600;
  color: var(--dark);
  text-transform: none;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background .15s, color .15s;
}
.nav-dropdown-menu li a:hover {
  background: var(--red-light);
  color: var(--red);
}
.nav-dropdown-menu li + li { border-top: 1px solid var(--border); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .5rem;
  margin-left: auto;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/IMG_homeroof.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,.72) 0%,
    rgba(0,0,0,.55) 50%,
    rgba(0,0,0,.3) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1.75rem;
}

.hero-badges span {
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 4px;
}

.hero-headline {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}

.hero-tagline {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: var(--red);
  margin-bottom: 1.25rem;
}

.hero-sub {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2.25rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  z-index: 1;
  color: rgba(255,255,255,.5);
  font-size: .7rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ============================================================
   TRUST STRIP
============================================================ */
.trust-strip {
  background: var(--dark);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 500;
}

.trust-item svg { width: 18px; height: 18px; color: var(--red); flex-shrink: 0; }

.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,.2);
}

/* ============================================================
   WHY US
============================================================ */
.why { background: var(--gray-light); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}

.why-card:hover {
  border-top-color: var(--red);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon img { width: 100%; height: 100%; object-fit: contain; }

.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .75rem;
}

.why-card p { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ============================================================
   SERVICES
============================================================ */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.service-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s;
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.service-card--featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 2px solid var(--red);
}

.service-label {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: 4px;
}

.service-card--featured { position: relative; }

.service-img {
  background-size: cover;
  background-position: center;
  min-height: 320px;
}

.service-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.service-icon-sm {
  width: 48px;
  height: 48px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: .25rem;
}

.service-icon-sm svg { width: 24px; height: 24px; }

.service-body h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
}

.service-body p { font-size: .95rem; color: var(--gray); line-height: 1.65; }

.service-body ul {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin: .25rem 0;
}

.service-body ul li {
  font-size: .875rem;
  color: var(--dark);
  padding-left: 1.25rem;
  position: relative;
}

.service-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
}

/* ============================================================
   ABOUT
============================================================ */
.about { background: var(--gray-light); }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-content { display: flex; flex-direction: column; gap: 1.25rem; }

.about-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}

.about-content p { color: var(--gray); line-height: 1.75; }

.about-stats {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.about-stat { display: flex; flex-direction: column; }

.about-stat .stat-num {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}

.about-stat .stat-suf, .stat-suf {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--red);
  display: inline;
}

.about-stat .stat-label {
  font-size: .8rem;
  color: var(--gray);
  margin-top: .25rem;
  font-weight: 500;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials {
  background: var(--dark-mid);
  color: var(--white);
}

.testimonial-slider {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-track { overflow: hidden; }

.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn .4s ease; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.stars {
  color: #f59e0b;
  font-size: 1.4rem;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
}

.testimonial-slide blockquote {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255,255,255,.9);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-slide cite {
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  font-style: normal;
  font-weight: 600;
  letter-spacing: .05em;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.t-prev, .t-next {
  background: none;
  border: 1px solid rgba(255,255,255,.3);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.t-prev:hover, .t-next:hover {
  background: var(--red);
  border-color: var(--red);
}

.t-dots { display: flex; gap: .5rem; }

.t-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: background .2s;
  border: none;
}

.t-dot.active { background: var(--red); }

/* ============================================================
   SERVICE AREAS
============================================================ */
.areas { background: var(--white); }

.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 260px));
  gap: 1.25rem;
  justify-content: center;
}

.area-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.25rem;
  text-align: center;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.area-card:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.area-card svg {
  width: 28px;
  height: 28px;
  color: var(--red);
  margin: 0 auto .75rem;
}

.area-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}

.area-card p { font-size: .85rem; color: var(--gray); }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: var(--red);
  padding: 4rem 0;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .25rem;
}

.cta-band-text p {
  color: rgba(255,255,255,.8);
  font-size: 1.05rem;
}

.cta-band-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-band .btn-primary {
  background: var(--white);
  color: var(--red);
  border-color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--white);
}

/* ============================================================
   ESTIMATE FORM
============================================================ */
.estimate { background: var(--gray-light); }

.estimate-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.estimate-left { display: flex; flex-direction: column; gap: 1.25rem; }

.estimate-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}

.estimate-left > p { color: var(--gray); line-height: 1.75; }

.estimate-promises {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.promise {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
}

.promise svg {
  width: 18px;
  height: 18px;
  color: var(--red);
  flex-shrink: 0;
}

.estimate-phone {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.estimate-phone p {
  font-size: .85rem;
  color: var(--gray);
  margin-bottom: .4rem;
}

.phone-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--red);
  transition: color .2s;
}

.phone-link:hover { color: var(--red-dark); }
.phone-link svg { width: 20px; height: 20px; }

.estimate-right {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}

/* ============================================================
   FORM ELEMENTS
============================================================ */
.estimate-form { display: flex; flex-direction: column; gap: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group { display: flex; flex-direction: column; gap: .4rem; }

.form-group label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.1);
}

.form-group input.error,
.form-group select.error { border-color: var(--red); }

.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem;
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: var(--radius);
  color: #166534;
  font-weight: 600;
  font-size: .95rem;
}

.form-success svg { width: 20px; height: 20px; flex-shrink: 0; color: #16a34a; }

.form-error {
  padding: 1rem;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius);
  color: #991b1b;
  font-size: .9rem;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 4rem 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .footer-logo {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: .9rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}

.footer-license {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  margin-top: .75rem;
  letter-spacing: .03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-links h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .5rem;
}

.footer-links a {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  transition: color .2s;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.footer-contact h4 {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: .25rem;
}

.footer-contact a:not(.btn) {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}

.footer-contact p { font-size: .9rem; color: rgba(255,255,255,.55); }

.footer-bottom {
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .5rem;
}

.footer-bottom p {
  font-size: .82rem;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: span 2; }
}

@media (max-width: 768px) {
  .section { padding: 4rem 0; }

  .nav-links,
  .nav-actions { display: none; }

  .nav-toggle { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1.25rem;
    box-shadow: var(--shadow-lg);
  }

  .services-grid { grid-template-columns: 1fr; }
  .service-card--featured { grid-column: span 1; grid-template-columns: 1fr; }
  .service-img { min-height: 220px; }

  .about-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-img img { height: 300px; }
  .about-stats { gap: 1.25rem; }

  .estimate-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .estimate-right { padding: 1.75rem; }
  .form-row { grid-template-columns: 1fr; }

  .cta-band-inner { flex-direction: column; text-align: center; }
  .cta-band-actions { justify-content: center; }

  .why-grid { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }

  .trust-strip-inner { gap: 1rem; flex-direction: column; }
  .trust-divider { width: 40px; height: 1px; }

  .hero-headline { font-size: 2.8rem; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .why-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ── PROCESS STEPS CARDS ──────────────────────────────────── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem 1.75rem;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: .75rem;
  transition: transform .2s, box-shadow .2s;
}
.process-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.step-node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: .03em;
  flex-shrink: 0;
  margin-bottom: .25rem;
}
.step-connector { display: none; }
.process-step h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.3;
  margin: 0;
}
.process-step p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ── PARTNER LOGO SCROLL (shared) ────────────────────────── */
.partner-logos-section {
  background: var(--gray-light);
  padding: 2.5rem 0;
  text-align: center;
  overflow: hidden;
}
.partner-logos-label {
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray);
  margin-bottom: 1.5rem;
}
.partner-logos-track-wrap {
  overflow: hidden;
  width: 100%;
}
.partner-logos-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: logo-scroll 60s linear infinite;
}
.partner-logos-track img {
  height: 56px;
  width: auto;
  object-fit: contain;
  margin: 0 2.5rem;
  filter: grayscale(100%);
  opacity: .55;
  transition: opacity .2s, filter .2s;
}
.partner-logos-track img:hover {
  opacity: .9;
  filter: grayscale(0%);
}
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
/* Pause the scroll while hovering the strip, so colorize-on-hover is usable */
.partner-logos-track-wrap:hover .partner-logos-track {
  animation-play-state: paused;
}
/* Respect users who prefer reduced motion: hold the strip static */
@media (prefers-reduced-motion: reduce) {
  .partner-logos-track { animation: none; }
}
