/* ================================================================
   STRONG PATH GARAGE DOORS — Homepage Concept
   Design: Mobile-first, conversion-focused local service site
   Colors: Deep navy + orange accent
   ================================================================ */

/* ================================================================
   1. VARIABLES & RESET
   ================================================================ */
:root {
  --navy:          #1B3165;
  --navy-dark:     #0F1A2E;
  --navy-mid:      #243d78;
  --orange:        #E8650A;
  --orange-hover:  #cf5a09;
  --orange-light:  #FFF4EC;
  --white:         #ffffff;
  --off-white:     #F8F9FC;
  --gray-100:      #F3F4F6;
  --gray-200:      #E5E7EB;
  --gray-400:      #9CA3AF;
  --gray-500:      #6B7280;
  --gray-600:      #4B5563;
  --gray-700:      #374151;
  --gray-900:      #111827;
  --star:          #F59E0B;

  --radius:        8px;
  --radius-lg:     12px;
  --radius-xl:     16px;

  --shadow-sm:     0 1px 2px rgba(0,0,0,0.06);
  --shadow:        0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg:     0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl:     0 20px 25px -5px rgba(0,0,0,0.15), 0 10px 10px -5px rgba(0,0,0,0.08);

  --font:          -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  --nav-h:         68px;
  --ease:          0.2s ease;
  --container:     1160px;
}

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

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

body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-700);
  background: var(--white);
}

img { display: block; max-width: 100%; height: auto; }
a { color: var(--orange); text-decoration: none; transition: color var(--ease); }
a:hover { color: var(--orange-hover); }
address { font-style: normal; }

/* ================================================================
   2. UTILITIES
   ================================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.br-desk { display: none; }

.section {
  padding: 72px 0;
}
.section-white  { background: var(--white); }
.section-light  { background: var(--off-white); }
.section-navy   { background: var(--navy-dark); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-header p { color: var(--gray-500); margin-top: 12px; font-size: 17px; }
.section-header-light { color: var(--white); }
.section-header-light p { color: rgba(255,255,255,0.65); }
.section-header-light h2 { color: var(--white); }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  background: var(--orange-light);
  border: 1px solid rgba(232,101,10,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.section-tag-light {
  color: var(--orange);
  background: rgba(232,101,10,0.15);
  border-color: rgba(232,101,10,0.3);
}

.stars  { color: var(--star); letter-spacing: 2px; }

/* ================================================================
   3. BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), box-shadow var(--ease), transform var(--ease);
  text-decoration: none;
  white-space: nowrap;
  padding: 12px 22px;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-sm { padding: 8px 16px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 17px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 4px 14px rgba(232,101,10,0.35);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(232,101,10,0.4);
}

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

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-outline-dark:hover {
  background: var(--off-white);
  border-color: var(--gray-400);
  color: var(--navy);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-white:hover {
  background: var(--off-white);
  color: var(--orange-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-200);
}
.btn-ghost:hover {
  background: var(--off-white);
  color: var(--navy);
  border-color: var(--gray-400);
}

.btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

/* ================================================================
   4. CONCEPT BAR
   ================================================================ */
.concept-bar {
  background: #EEF2FF;
  border-bottom: 1px solid #C7D2FE;
  text-align: center;
  padding: 8px 20px;
}
.concept-bar p {
  font-size: 12px;
  color: #4338CA;
  line-height: 1.4;
}

/* ================================================================
   5. NAVIGATION
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  height: var(--nav-h);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-decoration: none;
}
.logo-name {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}
.logo-type {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-menu {
  display: none;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  text-decoration: none;
  transition: color var(--ease);
}
.nav-link:hover { color: var(--navy); }
.nav-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
}
.nav-phone:hover { color: var(--orange); }

.nav-mobile-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-mobile-phone {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  text-decoration: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  background: none;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  cursor: pointer;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile dropdown nav */
.nav-menu.open {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-lg);
  padding: 20px;
  gap: 16px;
  z-index: 99;
}
.nav-menu.open .btn { width: 100%; justify-content: center; }

/* ================================================================
   6. HERO
   ================================================================ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 80px;
  background: url('assets/images/hero-bg.png') center/cover no-repeat;
}

/* Dark gradient overlay on top of the photo */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,26,46,0.94) 0%, rgba(27,49,101,0.88) 60%, rgba(26,45,90,0.91) 100%);
  z-index: 0;
}

/* Subtle orange glow overlay */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 25%, rgba(232,101,10,0.13) 0%, transparent 55%);
  pointer-events: none;
  z-index: 0;
}

.hero-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 6px 14px;
  margin-bottom: 20px;
  width: fit-content;
}
.hero-badge .stars { font-size: 13px; color: var(--star); letter-spacing: 1px; }
.hero-badge span:last-child { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; }

.hero-content h1 {
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-trust-row span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.hero-trust-row svg { width: 14px; height: 14px; color: var(--orange); flex-shrink: 0; }

/* Hero form card */
.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  flex-shrink: 0;
}
.hero-card-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--orange), #ff8c3a);
}
.hero-card-body { padding: 32px; }
.hero-card-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 6px;
}
.hero-card-heading {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.hero-card-sub {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 24px;
  line-height: 1.5;
}

/* Estimate form */
.estimate-form { display: flex; flex-direction: column; gap: 12px; }
.form-field input,
.form-field select {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-field input:focus,
.form-field select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,101,10,0.12);
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 40px;
}
.form-alt {
  text-align: center;
  font-size: 13px;
  color: var(--gray-500);
  margin-top: 4px;
}
.form-alt a { font-weight: 600; }
.form-success {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  color: #15803D;
  font-weight: 500;
}

/* ================================================================
   7. TRUST BAR
   ================================================================ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  padding: 20px 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
}
.trust-stars { color: var(--star); font-size: 14px; letter-spacing: 1px; }
.trust-icon { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }
.trust-divider { width: 1px; height: 28px; background: var(--gray-200); flex-shrink: 0; }

/* ================================================================
   8. SERVICES
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gray-400);
  transform: translateY(-2px);
}

.service-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.service-icon-wrap svg {
  width: 24px;
  height: 24px;
  color: var(--orange);
}

.service-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.service-card p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.65;
}

.services-footer {
  text-align: center;
  padding-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.services-footer p { color: var(--gray-500); font-size: 15px; }

/* ================================================================
   9. WHY CHOOSE US
   ================================================================ */
.why-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.why-content .section-tag { margin-bottom: 12px; }
.why-content h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.why-intro { color: var(--gray-500); font-size: 16px; margin-bottom: 36px; }

.why-list { list-style: none; display: flex; flex-direction: column; gap: 28px; }

.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon-wrap {
  width: 44px;
  height: 44px;
  background: var(--orange-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon-wrap svg { width: 20px; height: 20px; color: var(--orange); }
.why-text h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.why-text p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }

.why-visual { display: flex; justify-content: center; }
.why-card {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  text-align: center;
  max-width: 320px;
  width: 100%;
}
.why-card-stars { font-size: 24px; color: var(--star); letter-spacing: 2px; display: block; margin-bottom: 6px; }
.why-card-rating { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.why-card-count {
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.03em;
}
.why-card-count-label { font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.why-card-rule { height: 1px; background: rgba(255,255,255,0.12); margin-bottom: 20px; }
.why-card-checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  text-align: left;
}
.why-card-checks li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.why-card-checks svg { width: 16px; height: 16px; color: var(--orange); flex-shrink: 0; }

/* ================================================================
   10. SERVICE AREAS
   ================================================================ */
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}
.area-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.8);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
}
.area-pill-primary {
  background: rgba(232,101,10,0.2);
  border-color: rgba(232,101,10,0.5);
  color: var(--white);
  font-weight: 700;
}
.area-pill-primary svg { width: 15px; height: 15px; color: var(--orange); }
.areas-note {
  text-align: center;
  color: rgba(255,255,255,0.55);
  font-size: 14px;
}
.areas-note a { color: rgba(255,255,255,0.8); text-decoration: underline; }

/* ================================================================
   11. PROCESS
   ================================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: stretch;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
}
.step-num {
  width: 52px;
  height: 52px;
  background: var(--orange);
  color: var(--white);
  font-size: 22px;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.process-step h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: var(--gray-500); line-height: 1.65; }
.process-step p a { font-weight: 600; }
.process-connector {
  width: 2px;
  height: 32px;
  background: var(--gray-200);
  margin: 0 auto;
}

/* ================================================================
   12. REVIEWS
   ================================================================ */
.review-aggregate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.agg-stars { font-size: 22px; color: var(--star); letter-spacing: 2px; }
.agg-text { font-size: 15px; color: var(--gray-500); }
.agg-text strong { color: var(--gray-700); }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.review-card {
  background: var(--off-white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.review-stars { font-size: 16px; color: var(--star); letter-spacing: 1px; margin-bottom: 14px; }
.review-text {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 16px;
}
.review-author { font-size: 13px; font-weight: 600; color: var(--gray-500); }
.reviews-footer { text-align: center; }

/* ================================================================
   13. ABOUT
   ================================================================ */
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-content .section-tag { margin-bottom: 12px; }
.about-content h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.about-content p {
  color: var(--gray-500);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.about-visual-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-owner-photo {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.stat-mini {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
}
.stat-label { font-size: 13px; color: var(--gray-500); font-weight: 500; line-height: 1.3; }

.about-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}

.about-photo-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-photo-item p {
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  margin-top: 8px;
  font-weight: 500;
}

/* ================================================================
   14. FAQ
   ================================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background var(--ease);
}
.faq-q:hover { background: var(--off-white); }
.faq-q[aria-expanded="true"] { background: var(--off-white); color: var(--orange); }

.faq-chevron {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform var(--ease);
  color: var(--gray-400);
}
.faq-q[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.faq-a {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.75;
}
.faq-a p { margin: 0; }
.faq-a a { font-weight: 600; }

/* ================================================================
   15. FINAL CTA
   ================================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--orange) 0%, #d45a08 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner h2 {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.cta-inner p {
  font-size: 17px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 28px;
}
.cta-trust-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  list-style: none;
}
.cta-trust-list li {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}
.cta-trust-list li::before {
  content: '✓ ';
  color: rgba(255,255,255,0.9);
}

/* ================================================================
   16. FOOTER
   ================================================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding: 60px 20px 48px;
}

.footer-logo {
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.footer-tagline { font-size: 14px; line-height: 1.6; margin-bottom: 16px; }
.footer-stars {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
}
.footer-stars span:first-child { color: var(--star); font-size: 14px; }

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li, .footer-col address { font-size: 14px; line-height: 1.5; }
.footer-col a { color: rgba(255,255,255,0.55); transition: color var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-phone {
  display: block;
  margin-top: 12px;
  font-size: 17px;
  font-weight: 700;
  color: var(--orange) !important;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.footer-bottom-inner p { color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,0.35); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ================================================================
   17. RESPONSIVE — TABLET (640px+)
   ================================================================ */
@media (min-width: 640px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid  { grid-template-columns: 1fr 1fr 1fr; }
  .process-steps { flex-direction: row; align-items: flex-start; }
  .process-step  { flex: 1; }
  .process-connector { width: 32px; height: 2px; margin: 0; margin-top: 26px; flex-shrink: 0; }

  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   18. RESPONSIVE — DESKTOP (1024px+)
   ================================================================ */
@media (min-width: 1024px) {
  .br-desk { display: inline; }

  /* Nav */
  .nav-menu { display: flex; }
  .nav-mobile-right .hamburger { display: none; }
  .nav-mobile-phone { display: none; }

  /* Hero */
  .hero { padding: 96px 0 104px; }
  .hero-container {
    flex-direction: row;
    align-items: center;
    gap: 64px;
  }
  .hero-content { flex: 1; }
  .hero-card { width: 400px; flex-shrink: 0; }

  /* Sections */
  .services-grid { grid-template-columns: repeat(3, 1fr); }

  /* Why choose us */
  .why-grid { flex-direction: row; align-items: flex-start; gap: 80px; }
  .why-content { flex: 1; }
  .why-visual { flex-shrink: 0; }

  /* About */
  .about-grid { flex-direction: row; align-items: flex-start; gap: 64px; }
  .about-content { flex: 1; }
  .about-visual-col { flex-shrink: 0; width: 340px; }

  /* Footer */
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}
