/* ============================================================
   ACACIA ROOFING — MAIN STYLESHEET
   Aesthetic: Bold & grounded. Texas confidence. Natural authority.
   Fonts: Barlow Condensed (headings) + Source Serif 4 (body)
   Colors: Deep forest green + warm off-white + amber accent
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@400;600;700;800&family=Barlow:wght@400;500;600&family=Source+Serif+4:ital,wght@0,400;0,600;1,400&display=swap');

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:       #4D6C58;
  --green-mid:   #5E8068;
  --green-light: #7AB594;
  --green-dark:  #3A5244;
  --amber:       #4D6C58;
  --amber-light: #5E8068;
  --cream:       #242424;
  --warm-white:  #2A2A2A;
  --text-dark:   #E8E8E8;
  --text-mid:    #AAAAAA;
  --text-light:  #666666;
  --border:      rgba(255,255,255,0.07);
  --shadow:      0 4px 24px rgba(0,0,0,0.3);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.4);
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: #E8E8E8;
  background: #1E1E1E;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  color: #E8E8E8;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.2rem; }

p { color: #AAAAAA; max-width: 68ch; }
a { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--amber); }
img { max-width: 100%; display: block; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- UTILITY ---- */
.text-center { text-align: center; }
.text-white { color: white !important; }
.text-amber { color: var(--amber); }
.text-green { color: var(--green); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--amber);
  color: white;
  border-color: var(--amber);
}
.btn-primary:hover {
  background: var(--amber-light);
  border-color: var(--amber-light);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,107,181,0.35);
}

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

.btn-green {
  background: var(--green-dark);
  color: white;
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: white;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 1.2rem;
}

.section { padding: 88px 0; }
.section-sm { padding: 56px 0; }

.section-label {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 12px;
}

.divider {
  width: 56px;
  height: 4px;
  background: var(--amber);
  border-radius: 2px;
  margin: 20px 0;
}
.divider-center { margin: 20px auto; }

/* ---- NAV ---- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(35,35,35,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all var(--transition);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.nav-logo img {
  height: 36px;
  width: auto;
  background: white;
  padding: 5px 12px;
  border-radius: 5px;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: var(--amber);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: white;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 8px;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-phone {
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-phone:hover { color: var(--amber-light); }

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

.mobile-menu {
  display: none;
  background: var(--green);
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(255,255,255,0.85);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a:hover { color: white; background: rgba(255,255,255,0.08); }

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(135deg, rgba(45,74,45,0.95) 0%, rgba(45,74,45,0.7) 50%, rgba(45,74,45,0.85) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      45deg,
      rgba(255,255,255,0.015) 0px,
      rgba(255,255,255,0.015) 1px,
      transparent 1px,
      transparent 40px
    );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(27,107,181,0.2);
  border: 1px solid rgba(27,107,181,0.4);
  padding: 6px 14px;
  border-radius: 100px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}
.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--amber-light);
}

.hero-title {
  font-size: clamp(3.2rem, 6vw, 5.5rem);
  color: white;
  margin-bottom: 8px;
  line-height: 1.0;
}
.hero-title .accent { color: var(--amber-light); }

.hero-subtitle {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: rgba(255,255,255,0.8);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 400;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero-desc {
  font-family: 'Source Serif 4', serif;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  max-width: 52ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--amber-light); flex-shrink: 0; }

/* Hero Form */
.hero-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--amber));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.hero-form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
  color: #E8E8E8;
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.85rem;
  color: #E8E8E8;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Barlow', sans-serif;
  font-size: 0.95rem;
  color: #E8E8E8;
  background: #1E1E1E;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 80px; }

.form-submit {
  width: 100%;
  margin-top: 6px;
  justify-content: center;
  font-size: 1.1rem;
  padding: 16px;
}

.form-privacy {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.4;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: #1A1A1A;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 16px 24px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 2.8rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-number span { color: #7AB594; }

.stat-label {
  font-size: 0.88rem;
  font-weight: 600;
  color: #AAAAAA;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* ---- SERVICES ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.service-card {
  background: #2E2E2E;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--green);
  transition: height 0.3s ease;
  z-index: 0;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card:hover::before { height: 4px; }

.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(77,108,88,0.15);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(77,108,88,0.22); }

.service-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-card .btn { font-size: 0.9rem; padding: 10px 20px; }

/* ---- PROCESS ---- */
.process-section { background: #1E1E1E; }
.process-section h2, .process-section .section-label { color: white; }
.process-section .divider { background: var(--amber); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 56px;
  position: relative;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.2);
  z-index: 0;
}

.process-step {
  text-align: center;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--amber);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 3px solid var(--green);
  box-shadow: 0 0 0 3px var(--amber);
}

.process-step h4 {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.process-step p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  max-width: 22ch;
  margin: 0 auto;
}

/* ---- WHY ACACIA ---- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  margin-top: 0;
}

.why-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
}

.why-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #2E2E2E;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
  gap: 12px;
  padding: 24px;
}

.why-badge {
  position: absolute;
  bottom: -1px;
  right: -1px;
  background: var(--amber);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-lg) 0 var(--radius-lg) 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  line-height: 1.2;
  text-align: center;
}
.why-badge span { display: block; font-size: 0.75rem; font-weight: 500; opacity: 0.85; }

.why-features {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.why-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background: rgba(77,108,88,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature h4 { font-size: 1.05rem; margin-bottom: 4px; }
.why-feature p { font-size: 0.92rem; max-width: none; }

/* ---- REVIEWS ---- */
.reviews-section { background: #242424; }

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

.review-card {
  background: #2E2E2E;
  border-radius: var(--radius-lg);
  padding: 28px;
  border: 1px solid var(--border);
  position: relative;
}

.review-stars {
  color: var(--amber);
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.review-text {
  font-family: 'Source Serif 4', serif;
  font-style: italic;
  font-size: 0.97rem;
  color: #AAAAAA;
  line-height: 1.65;
  margin-bottom: 20px;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: #E8E8E8;
}
.review-author-location {
  font-size: 0.82rem;
  color: var(--text-light);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px 6px 10px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #AAAAAA;
  margin-top: 32px;
}

/* ---- SERVICE AREAS ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.area-chip {
  background: #2E2E2E;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 0.92rem;
  color: #E8E8E8;
  transition: all var(--transition);
  cursor: default;
}
.area-chip:hover {
  border-color: var(--green);
  background: rgba(45,74,45,0.04);
  color: var(--green);
}

/* ---- CTA SECTION ---- */
.cta-section {
  background: #2E2E2E;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 32px
  );
}

.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: white; margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin: 0 auto 36px; max-width: 52ch; }

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---- FOOTER ---- */
.footer {
  background: #141414;
  color: rgba(255,255,255,0.7);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand img {
  background: white;
  padding: 5px 12px;
  border-radius: 5px;
  height: 32px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-top: 16px;
  max-width: 32ch;
  line-height: 1.6;
}

.footer-col h4 {
  color: white;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  color: rgba(255,255,255,0.55);
  font-size: 0.92rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--amber-light); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.92rem;
  align-items: flex-start;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 3px; color: var(--amber); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 0.84rem;
  color: rgba(255,255,255,0.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: #2A2A2A;
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255,255,255,0.02) 0px,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 48px
  );
}

.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: white; margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 60ch; }

/* ---- SUCCESS MESSAGE ---- */
.form-success {
  display: none;
  text-align: center;
  padding: 24px;
  background: rgba(45,74,45,0.06);
  border-radius: var(--radius);
  border: 1.5px solid var(--green-light);
}
.form-success h4 { color: var(--green); margin-bottom: 8px; }
.form-success p { font-size: 0.9rem; color: #AAAAAA; max-width: none; }

/* ---- PHOTO GRID ---- */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.photo-grid-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.photo-grid-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.photo-grid-item:hover img { transform: scale(1.04); }

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: #2E2E2E;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
  text-align: center;
  padding: 16px;
  gap: 8px;
}

/* ---- FINANCING BANNER ---- */
.financing-banner {
  background: #4D6C58;
  padding: 20px 0;
  text-align: center;
}
.financing-banner p {
  color: white;
  font-weight: 600;
  font-size: 1rem;
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.financing-banner a { color: white; text-decoration: underline; font-weight: 700; }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-form-card { max-width: 480px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta .nav-phone, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .photo-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-actions { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  animation: fadeUp 0.6s ease both;
}
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
