/* ================================================================
   HOMEPAGE — Showroom style
   Extends global.css with home-only sections
   ================================================================ */

/* -------- HERO (split 1.1fr / 1fr) -------- */
.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  min-height: 92vh;
  background: var(--navy);
}
.hero-left {
  background: var(--navy);
  color: #fff;
  padding: clamp(48px, 7vw, 88px) clamp(32px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 360px; height: 360px;
  border: 48px solid var(--orange);
  opacity: 0.1;
  border-radius: 50%;
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(247,116,48,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-issue {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 36px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
}
.hero-issue span { display: flex; align-items: center; gap: 8px; }
.hero-issue b { color: #fff; font-weight: 500; }
.hero-issue .dot { color: rgba(255,255,255,0.3); }

.hero-headline h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.94;
  letter-spacing: -3px;
  color: #fff;
  margin-bottom: 28px;
  position: relative;
}
.hero-headline h1 .o { color: var(--orange); }
.hero-headline h1 .outline {
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px var(--orange);
  color: transparent;
  font-style: italic;
  font-weight: 900;
}

.hero-sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  line-height: 1.55;
  margin-bottom: 36px;
  position: relative;
}

.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
}

.hero-footer {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.hero-stat .n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 3.5vw, 44px);
  color: var(--orange);
  line-height: 1;
  letter-spacing: -1.5px;
}
.hero-stat .l {
  font-size: 11px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 6px;
  font-weight: 600;
}

/* -------- HERO RIGHT (photo + overlay) -------- */
.hero-right {
  position: relative;
  overflow: hidden;
  background: #333;
  min-height: 500px;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(19,37,74,0.25), rgba(19,37,74,0.4)),
                    url('/assets/img/photos/home-hero-copper.webp');
  background-size: cover;
  background-position: center;
  filter: contrast(1.05) saturate(0.95);
  transform: scale(1);
  transition: transform 1.2s var(--ease);
}
.hero:hover .hero-photo { transform: scale(1.03); }

.hero-tag {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.hero-quote {
  position: absolute;
  bottom: 32px; left: 32px; right: 32px;
  background: rgba(19,37,74,0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 26px;
  color: #fff;
  display: flex;
  gap: 20px;
  align-items: center;
  z-index: 2;
  border-left: 4px solid var(--orange);
}
.hero-quote-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--star));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 900;
  font-size: 18px;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.hero-quote .quote {
  font-family: var(--font-display);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 8px;
}
.hero-quote .by {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  font-family: var(--font-mono);
  text-transform: uppercase;
}
.hero-quote .by b { color: var(--star); font-weight: 500; }

/* =================================================================
   SERVICES ROW — Horizontal 4-up grid, hover-to-navy
   ================================================================= */
.services {
  background: var(--bg-soft);
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
}
.services-inner { max-width: var(--max-w); margin: 0 auto; }

.services-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: clamp(40px, 5vw, 56px);
}
.services-head h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -2px;
  color: var(--navy);
  line-height: 1;
}
.services-head h2 .o { color: var(--orange); }
.services-head p {
  font-size: 16px;
  color: var(--body);
  max-width: 440px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--navy);
  border: 1px solid var(--navy);
}
.sv {
  background: #fff;
  padding: 40px 32px;
  transition: var(--t);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  min-height: 320px;
  text-decoration: none;
  color: inherit;
}
.sv:hover { background: var(--navy); color: #fff; }
.sv:hover p { color: rgba(255,255,255,0.78); }
.sv:hover .sv-num { color: var(--orange); }

.sv-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 500;
}
.sv h3 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  margin-bottom: 14px;
  line-height: 1.05;
  color: inherit;
}
.sv p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 22px;
  flex: 1;
}
.sv-arrow {
  align-self: flex-start;
  width: 44px; height: 44px;
  border: 2px solid var(--orange);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.sv:hover .sv-arrow {
  background: var(--orange);
  color: #fff;
  transform: translateX(4px);
}
.sv-arrow svg { width: 18px; height: 18px; }

/* =================================================================
   ABOUT / LUKE SECTION
   ================================================================= */
.about {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.about-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about-photo {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--navy);
  overflow: hidden;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-photo::before {
  content: '';
  position: absolute;
  bottom: -20px; right: -20px;
  width: 200px; height: 200px;
  border: 6px solid var(--orange);
  z-index: 2;
}
.about-badge {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--orange);
  color: #fff;
  padding: 16px 20px;
  z-index: 3;
}
.about-badge .n {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 42px;
  line-height: 0.9;
  letter-spacing: -1.5px;
}
.about-badge .l {
  font-size: 10px;
  font-family: var(--font-mono);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}

.about-tx h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 20px;
  color: var(--ink);
}
.about-tx h2 .o { color: var(--orange); }
.about-tx .lead {
  font-size: 18px;
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-tx p { margin-bottom: 18px; }

.about-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0 32px;
}
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.4;
}
.about-point svg {
  width: 22px; height: 22px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}

/* =================================================================
   AI INSTANT QUOTE STRIP (Phase 1 scaffold)
   ================================================================= */
.ai-strip {
  background: var(--navy);
  color: #fff;
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.ai-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, rgba(247,116,48,0.03) 0, rgba(247,116,48,0.03) 2px, transparent 2px, transparent 14px);
  pointer-events: none;
}
.ai-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.ai-lead h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 24px;
}
.ai-lead h2 .o { color: var(--orange); }
.ai-lead p {
  color: rgba(255,255,255,0.75);
  font-size: 17px;
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 480px;
}
.ai-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ai-feat {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 14px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.ai-feat-ic {
  width: 36px; height: 36px;
  background: rgba(247,116,48,0.15);
  border: 1px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  flex-shrink: 0;
}
.ai-feat-ic svg { width: 16px; height: 16px; }

.ai-card {
  background: #fff;
  color: var(--ink);
  padding: 28px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  position: relative;
}
.ai-card::before {
  content: '';
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.ai-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--line-soft);
}
.ai-card-avatar {
  width: 48px; height: 48px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange);
  font-weight: 900;
  font-size: 15px;
  font-family: var(--font-display);
}
.ai-card-title {
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  line-height: 1.1;
}
.ai-card-sub {
  font-size: 11px;
  color: var(--green-ok);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 3px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-card-sub::before {
  content: '';
  width: 7px; height: 7px;
  background: var(--green-ok);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green-ok);
  animation: pulse 2s infinite;
}
@keyframes pulse { 50% { opacity: 0.5; } }

.ai-msg {
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 10px;
  animation: msgIn 0.5s var(--ease) backwards;
}
.ai-msg.bot {
  background: var(--bg-soft);
  color: var(--ink);
}
.ai-msg.user {
  background: var(--navy);
  color: #fff;
  margin-left: 32px;
}
.ai-msg b { color: var(--orange); }
.ai-msg-est {
  background: linear-gradient(135deg, #fff7ef, #ffede0);
  border-left: 4px solid var(--orange);
  padding: 18px 20px;
  margin: 14px 0;
}
.ai-msg-est .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange-deep);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-weight: 500;
}
.ai-msg-est .amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
}
.ai-msg-est .note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 6px;
}
@keyframes msgIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.ai-form {
  margin-top: 16px;
  display: flex;
  gap: 8px;
  border: 2px solid var(--line);
  padding: 4px 4px 4px 14px;
  transition: var(--t);
}
.ai-form:focus-within {
  border-color: var(--orange);
}
.ai-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  padding: 10px 0;
  background: transparent;
}
.ai-form button {
  background: var(--orange);
  color: #fff;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--t);
  display: flex;
  align-items: center;
  gap: 6px;
}
.ai-form button:hover { background: var(--orange-deep); }
.ai-form button svg { width: 14px; height: 14px; }

.ai-foot {
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.3px;
}
.ai-foot .pulse-dot {
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--green-ok);
  border-radius: 50%;
  margin-right: 6px;
  animation: pulse 2s infinite;
}

/* =================================================================
   WHY US / FEATURES STRIP
   ================================================================= */
.why {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.why-grid {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.why-item {
  padding: 32px 28px;
  background: var(--bg-soft);
  border-top: 4px solid var(--orange);
  transition: var(--t);
}
.why-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19,37,74,0.12);
}
.why-ic {
  width: 56px; height: 56px;
  background: var(--navy);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.why-ic svg { width: 26px; height: 26px; }
.why-item h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.2;
}
.why-item p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
}

/* =================================================================
   SERVICE AREA MAP BLOCK
   ================================================================= */
.area {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.area::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(247,116,48,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.area-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
  position: relative;
  z-index: 2;
}
.area-tx h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -1.5px;
  line-height: 1.02;
  color: #fff;
  margin-bottom: 20px;
}
.area-tx h2 .o { color: var(--orange); }
.area-tx p {
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  font-size: 17px;
  margin-bottom: 28px;
}

.area-cities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 20px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin: 24px 0;
}
.area-city {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.area-city::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

.area-map {
  background: #fff;
  color: var(--ink);
  padding: 24px;
  position: relative;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.area-map::before {
  content: '';
  position: absolute;
  top: -4px; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.area-map-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 18px;
}
.area-map-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  line-height: 1.1;
  color: var(--navy);
}
.area-map-title .sm {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--orange);
  letter-spacing: 2px;
  margin-bottom: 4px;
  font-weight: 500;
  text-transform: uppercase;
}
.area-map-radius {
  background: var(--navy);
  color: #fff;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 500;
}
.area-map-visual {
  background: #eef1f5;
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 14px;
}
.area-map-visual svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.area-map-zips {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--body);
  line-height: 1.9;
  letter-spacing: 0.3px;
  padding: 16px;
  background: var(--bg-soft);
}
.area-map-zips b {
  color: var(--orange);
  font-weight: 700;
  margin-right: 6px;
  letter-spacing: 1.5px;
}

/* =================================================================
   REVIEWS / TESTIMONIALS
   ================================================================= */
.reviews {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: #fff;
}
.reviews-inner { max-width: var(--max-w); margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  padding: 32px 28px;
  border: 1px solid var(--line);
  background: #fff;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  position: relative;
}
.review-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(19,37,74,0.08);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: -16px; right: 24px;
  font-family: var(--font-display);
  font-size: 100px;
  color: var(--orange);
  opacity: 0.15;
  line-height: 1;
  font-weight: 900;
}
.review-stars {
  color: var(--star);
  letter-spacing: 2px;
  font-size: 16px;
  margin-bottom: 16px;
}
.review-quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  margin-bottom: 20px;
  flex: 1;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-soft));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 15px;
  font-family: var(--font-display);
}
.review-by {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.review-by small {
  display: block;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
  margin-top: 2px;
}
.review-google {
  margin-left: auto;
  font-size: 11px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* =================================================================
   BLOG PREVIEW
   ================================================================= */
.blog-preview {
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  background: var(--bg-soft);
}
.blog-preview-inner { max-width: var(--max-w); margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: var(--t);
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(19,37,74,0.12);
  border-color: var(--orange);
}
.blog-card-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-card-cat {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--orange);
  color: #fff;
  padding: 4px 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.blog-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.blog-card h3 {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-card p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-more {
  color: var(--orange);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--t);
}
.blog-card:hover .blog-card-more {
  gap: 10px;
}

/* =================================================================
   FINAL CTA BAND
   ================================================================= */
.cta-band {
  background: var(--orange);
  color: #fff;
  padding: clamp(48px, 7vw, 80px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  border: 40px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  position: relative;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -1.2px;
  line-height: 1.1;
  color: #fff;
}
.cta-inner p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  margin-top: 8px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-actions .btn-white {
  background: #fff;
  color: var(--navy);
}
.cta-actions .btn-white:hover {
  background: var(--navy);
  color: #fff;
}
.cta-actions .btn-ghost {
  border: 2px solid #fff;
  color: #fff;
}
.cta-actions .btn-ghost:hover {
  background: #fff;
  color: var(--orange);
}

/* =================================================================
   RESPONSIVE HOMEPAGE
   ================================================================= */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { min-height: 420px; }
  .services-head { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner { grid-template-columns: 1fr; }
  .ai-inner { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .area-inner { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .cta-inner { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .hero-footer { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .about-points { grid-template-columns: 1fr; }
  .area-cities { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-footer { grid-template-columns: 1fr; gap: 20px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
  .hero-quote { flex-direction: column; align-items: flex-start; padding: 20px; }
  .ai-msg.user { margin-left: 16px; }
}

/* ================================================================
   QUICK QUOTE — Homepage form + CTA combined
   Replaces the redundant cta-band / footer-top stack
   ================================================================ */
.quick-quote {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-soft) 100%);
  padding: clamp(60px, 8vw, 100px) var(--pad-x);
  position: relative;
  overflow: hidden;
}
.quick-quote::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 500px; height: 500px;
  border: 60px solid var(--orange);
  border-radius: 50%;
  opacity: 0.06;
  pointer-events: none;
}
.quick-quote-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.quick-quote-intro .kicker-white {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 14px;
}
.quick-quote-intro h2 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.05;
  letter-spacing: -1.2px;
  color: #fff;
  margin-bottom: 20px;
}
.quick-quote-intro h2 .o { color: var(--orange); }
.quick-quote-intro p {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 28px;
  max-width: 480px;
}
.quick-quote-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.quick-quote-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
}
.quick-quote-trust svg {
  width: 16px; height: 16px;
  color: var(--orange);
  flex-shrink: 0;
}
.quick-quote-or {
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  gap: 14px;
}
.quick-quote-or span {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.quick-quote-phone {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: #fff;
  text-decoration: none;
  transition: var(--t);
  letter-spacing: -0.5px;
}
.quick-quote-phone:hover { color: var(--orange); }

/* The form card */
.quick-quote-card {
  background: #fff;
  padding: 36px 32px;
  border-top: 4px solid var(--orange);
  box-shadow: 0 30px 60px rgba(0,0,0,0.25);
}
.quick-quote-card form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.qq-field {
  display: flex;
  flex-direction: column;
}
.qq-field label {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 6px;
}
.qq-field input {
  background: var(--bg-soft);
  border: 1.5px solid var(--line);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
  transition: var(--t);
  outline: none;
}
.qq-field input:focus {
  border-color: var(--orange);
  background: #fff;
}
.qq-field input::placeholder {
  color: #b0b8c4;
  font-weight: 400;
}
.qq-submit {
  grid-column: 1 / -1;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 16px 28px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--t);
  margin-top: 4px;
}
.qq-submit:hover {
  background: var(--orange-deep);
  transform: translateY(-2px);
}
.qq-submit svg { width: 16px; height: 16px; }
.qq-note {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.5px;
  text-align: center;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .quick-quote-inner { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 500px) {
  .quick-quote-card { padding: 24px 20px; }
  .quick-quote-card form { grid-template-columns: 1fr; }
}
