@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&display=swap');

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

/* Prevent SVG icon paths from being clipped by the viewBox boundary */
svg { overflow: visible; }

:root {
  --black:        #0f0f0f;
  --black-soft:   #1a1a1a;
  --black-card:   #141414;
  --orange:       #f97316;
  --orange-dark:  #ea580c;
  --orange-light: #fff7ed;
  --orange-muted: #fed7aa;
  --white:        #ffffff;
  --gray-50:      #f9fafb;
  --gray-100:     #f3f4f6;
  --gray-200:     #e5e7eb;
  --gray-300:     #d1d5db;
  --gray-400:     #9ca3af;
  --gray-500:     #6b7280;
  --gray-600:     #4b5563;
  --gray-700:     #374151;
  --gray-800:     #1f2937;
  --gray-900:     #111827;

  --radius-full:  9999px;
  --radius-xl:    1.25rem;
  --radius-lg:    1rem;
  --radius-md:    0.75rem;
  --radius-sm:    0.5rem;

  --font:         'Archivo', sans-serif;
  --shadow-sm:    0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
  --shadow-md:    0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:    0 8px 32px rgba(0,0,0,0.16);
  --shadow-orange: 0 4px 24px rgba(249,115,22,0.3);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.625rem, 3.5vw, 2.375rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); font-weight: 700; line-height: 1.3; }
h4 { font-size: 1.0625rem; font-weight: 700; line-height: 1.4; }
p  { font-size: 1.0625rem; line-height: 1.7; color: var(--gray-600); }

.text-orange { color: var(--orange); }
.text-white  { color: var(--white); }
.text-black  { color: var(--black); }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section        { padding: 5rem 0; }
.section-sm     { padding: 3rem 0; }
.section-lg     { padding: 7rem 0; }

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}

.section-header h2 { margin-bottom: 1rem; }
.section-header p  { font-size: 1.125rem; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.875rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: var(--shadow-orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(249,115,22,0.4);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.btn-dark:hover {
  background: var(--black-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

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

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

.btn-lg { padding: 1.0625rem 2.5rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5625rem 1.25rem; font-size: 0.875rem; }

.btn svg { width: 1rem; height: 1rem; flex-shrink: 0; }

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--black);
  color: var(--gray-300);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar a {
  color: var(--gray-300);
  transition: color 0.2s;
}
.top-bar a:hover { color: var(--orange); }

.top-bar-phone {
  color: var(--orange) !important;
  font-weight: 700;
  font-size: 0.9375rem;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 2rem;
}

/* Logo (watermark wordmark — no icon) */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-mark {
  display: none; /* icon removed — watermark text only */
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-brand {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.logo-service {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-full);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  transition: all 0.2s;
  white-space: nowrap;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.nav-link.active {
  color: var(--orange);
}

.nav-link svg {
  width: 0.875rem;
  height: 0.875rem;
  transition: transform 0.2s;
  flex-shrink: 0;
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-link svg {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.625rem);
  left: 0;
  transform: translateY(-8px);
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 0.625rem;
  min-width: 16rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  border: 1px solid var(--gray-100);
}

.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -0.4375rem;
  left: 1.25rem;
  width: 0.875rem;
  height: 0.875rem;
  background: var(--white);
  border-left: 1px solid var(--gray-100);
  border-top: 1px solid var(--gray-100);
  transform: rotate(45deg);
  border-radius: 2px;
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.625rem 0.875rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-800);
  transition: all 0.15s;
}

.dropdown-item:hover {
  background: var(--gray-50);
  color: var(--orange);
}

.dropdown-view-all {
  border-top: 1px solid var(--gray-100);
  margin-top: 0.25rem;
  padding-top: 0.625rem;
  font-size: 0.8125rem;
  color: var(--orange);
  font-weight: 600;
}
.dropdown-view-all:hover { background: var(--gray-50); }

.dropdown-icon {
  width: 1.75rem;
  height: 1.75rem;
  background: var(--orange-light);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.dropdown-icon svg {
  width: 0.875rem;
  height: 0.875rem;
  color: var(--orange);
}

/* Header CTA */
.header-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-assess-link {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
}

.header-assess-link:hover {
  color: var(--orange);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  transition: background 0.2s;
}

.hamburger:hover { background: rgba(255,255,255,0.08); }

.hamburger span {
  display: block;
  width: 1.375rem;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.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 Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--black-soft);
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav.open { display: flex; }

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav-link:hover { color: var(--orange); }

.mobile-nav-sub {
  padding: 0.5rem 0 0.5rem 1rem;
}

.mobile-nav-sub-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
}

.mobile-nav-sub-link:hover { color: var(--orange); }

.mobile-cta {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.emergency-banner a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 800;
}

.pulse-dot {
  display: inline-block;
  width: 0.5rem;
  height: 0.5rem;
  background: var(--white);
  border-radius: 50%;
  margin-right: 0.5rem;
  animation: pulse 1.5s infinite;
  vertical-align: middle;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../public/images/hero-banner.jpg') center/cover no-repeat;
  /* Placeholder gradient until real photo is added */
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.65) 50%, rgba(249,115,22,0.12) 100%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.01) 40px,
      rgba(255,255,255,0.01) 41px
    );
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.35;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(249,115,22,0.15);
  border: 1px solid rgba(249,115,22,0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 1rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.5rem;
  max-width: 100%;
  flex-wrap: wrap;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

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

.hero-sub {
  font-size: 1.1875rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.25rem;
  max-width: 560px;
  line-height: 1.65;
}

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

.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--orange);
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--black-soft);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}

.trust-item svg {
  color: var(--orange);
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid-section {
  background: var(--gray-50);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.875rem;
  border: 1px solid var(--gray-100);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange);
  opacity: 0;
  transition: opacity 0.25s;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card-banner {
  height: 12rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gray-100);
  flex-shrink: 0;
}

.service-card-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card:hover .service-card-banner img {
  transform: scale(1.05);
}

.service-card-banner-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  font-size: 3rem;
}

.service-icon {
  width: 3rem;
  height: 3rem;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: var(--orange);
}

.service-card h3 {
  margin-bottom: 0.375rem;
}

.service-card p {
  font-size: 0.9375rem;
  flex: 1;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--orange);
  font-size: 0.9rem;
  font-weight: 700;
  margin-top: auto;
  transition: gap 0.2s;
  position: relative;
  z-index: 1;
}

/* Stretched link -- expands hit area to cover the entire card */
.service-link::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: -9999px;
}

.service-link:hover { gap: 0.625rem; }
.service-link svg { width: 0.875rem; height: 0.875rem; }

.service-card { cursor: pointer; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us {
  background: var(--white);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why-us-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
  position: relative;
}

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

.why-us-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.why-us-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-lg);
  font-size: 0.9375rem;
  font-weight: 700;
  box-shadow: var(--shadow-md);
}

.why-us-content .section-header {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.why-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.why-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  background: var(--orange-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.why-item-icon svg {
  width: 1.125rem;
  height: 1.125rem;
  color: var(--orange);
}

.why-item h4 { margin-bottom: 0.25rem; }
.why-item p  { font-size: 0.9375rem; }

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.process-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, rgba(249,115,22,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.process-section .section-header h2 { color: var(--white); }
.process-section .section-header p  { color: rgba(255,255,255,0.6); }
.process-section .section-eyebrow   { color: var(--orange); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}

.process-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  position: relative;
  transition: all 0.25s;
}

.process-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(249,115,22,0.3);
  transform: translateY(-4px);
}

.process-num {
  font-size: 4rem;
  font-weight: 900;
  color: rgba(249,115,22,0.12);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-variant-numeric: tabular-nums;
}

.process-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(249,115,22,0.12);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 1px solid rgba(249,115,22,0.25);
}

.process-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--orange);
}

.process-card h3 { color: var(--white); margin-bottom: 0.625rem; }
.process-card p  { color: rgba(255,255,255,0.6); font-size: 0.9375rem; }

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

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.875rem;
}

.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 0.625rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray-700);
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}

.area-chip:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.area-chip svg {
  width: 0.8125rem;
  height: 0.8125rem;
  color: var(--orange);
  flex-shrink: 0;
  transition: color 0.2s;
}

.area-chip:hover svg { color: var(--white); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.faq-sidebar .section-header {
  text-align: left;
  margin: 0;
  max-width: 100%;
  margin-bottom: 2rem;
}

.faq-cta-box {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 2rem;
  color: var(--white);
}

.faq-cta-box h4 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.1875rem; }
.faq-cta-box p  { color: rgba(255,255,255,0.65); font-size: 0.9375rem; margin-bottom: 1.25rem; }

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.accordion-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s;
}

.accordion-item.open {
  border-color: var(--orange);
}

.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.125rem 1.375rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--gray-900);
  transition: color 0.2s;
}

.accordion-trigger:hover { color: var(--orange); }

.accordion-item.open .accordion-trigger { color: var(--orange); }

.accordion-chevron {
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  color: var(--gray-400);
  transition: transform 0.25s ease;
}

.accordion-item.open .accordion-chevron {
  transform: rotate(180deg);
  color: var(--orange);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.accordion-body-inner {
  padding: 0 1.375rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--orange);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 36rem;
  height: 36rem;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  pointer-events: none;
}

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

.cta-banner h2 { color: var(--white); max-width: 600px; }
.cta-banner p  { color: rgba(255,255,255,0.85); font-size: 1.125rem; margin-top: 0.75rem; }

.cta-banner-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.875rem;
  flex-shrink: 0;
}

.cta-phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white);
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.cta-phone-link:hover { opacity: 0.85; }

.cta-phone-link svg {
  width: 1.375rem;
  height: 1.375rem;
}

/* ============================================================
   QUOTE FORM SECTION
   ============================================================ */
.quote-section {
  background: var(--gray-50);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.quote-info h2 { margin-bottom: 1rem; }
.quote-info p  { font-size: 1.0625rem; margin-bottom: 1.75rem; }

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-700);
}

.quote-feature svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  flex-shrink: 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.quote-form-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.quote-form-card > p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 0.375rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.12);
}

.form-textarea {
  min-height: 7rem;
  resize: vertical;
  line-height: 1.6;
}

.form-submit {
  width: 100%;
  margin-top: 0.25rem;
}

.form-note {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--gray-400);
  margin-top: 0.75rem;
}

/* Success state */
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}

.form-success svg {
  width: 3rem;
  height: 3rem;
  color: var(--orange);
  margin: 0 auto 1rem;
}

.form-success h4 { margin-bottom: 0.5rem; }
.form-success p  { font-size: 0.9375rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-brand .logo { margin-bottom: 1.25rem; }

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(255,255,255,0.55);
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-badge {
  background: rgba(249,115,22,0.12);
  border: 1px solid rgba(249,115,22,0.2);
  border-radius: var(--radius-full);
  padding: 0.3125rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.05em;
}

.footer-col h5 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.125rem;
}

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

.footer-link {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-link:hover { color: var(--orange); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}

.footer-contact-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.footer-contact-item a {
  color: var(--white);
  font-weight: 600;
  transition: color 0.2s;
}

.footer-contact-item a:hover { color: var(--orange); }

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

.footer-copy {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}

.footer-legal-links a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   STICKY MOBILE CALL BAR
   ============================================================ */
.sticky-call-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--orange);
  padding: 0.875rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-call-bar.visible {
  transform: translateY(0);
}

.sticky-call-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  text-decoration: none;
}

.sticky-call-link svg {
  width: 1.25rem;
  height: 1.25rem;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--black);
  padding: 4rem 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.7) 60%, rgba(249,115,22,0.1) 100%);
}

.page-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 1.25rem;
  font-size: 0.875rem;
}

.breadcrumb-link {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

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

.breadcrumb-sep {
  color: rgba(255,255,255,0.25);
}

.breadcrumb-current {
  color: var(--orange);
  font-weight: 600;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.page-hero .hero-sub {
  max-width: 680px;
  margin-bottom: 1.75rem;
}

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-intro {
  background: var(--white);
}

.service-intro-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.service-intro-main .direct-answer {
  background: var(--orange-light);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.75rem;
  font-size: 1.0625rem;
  color: var(--gray-800);
  font-weight: 500;
  line-height: 1.65;
}

.service-sidebar {
  position: sticky;
  top: 5.5rem;
}

.sidebar-card {
  background: var(--black);
  border-radius: var(--radius-xl);
  padding: 1.875rem;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.sidebar-card h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1.0625rem;
}

.sidebar-card p {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.sidebar-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--orange);
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.sidebar-phone svg {
  width: 1.125rem;
  height: 1.125rem;
}

.included-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  margin: 1.25rem 0;
}

.included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
}

.included-item svg {
  width: 1rem;
  height: 1rem;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

/* ============================================================
   SERVICES HUB PAGE
   ============================================================ */
.services-hub-section {
  background: var(--gray-50);
}

.service-hub-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}

.service-hub-card:hover {
  border-color: var(--orange-muted);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-hub-image {
  height: 14rem;
  background: var(--gray-100);
  position: relative;
  overflow: hidden;
}

.service-hub-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-hub-card:hover .service-hub-image img {
  transform: scale(1.05);
}

.service-hub-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black) 0%, #1c1c1c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
}

.service-hub-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-hub-body h3 { margin-bottom: 0.5rem; }
.service-hub-body p  { font-size: 0.9375rem; flex: 1; margin-bottom: 1.25rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { margin-bottom: 2rem; }

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
}

.contact-method-icon {
  width: 2.75rem;
  height: 2.75rem;
  background: var(--orange);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-method-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--white);
}

.contact-method h4 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-500); margin-bottom: 0.25rem; font-weight: 700; }
.contact-method p, .contact-method a { font-size: 1rem; font-weight: 700; color: var(--gray-900); }
.contact-method a:hover { color: var(--orange); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro {
  background: var(--white);
}

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

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--gray-100);
}

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

.about-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--black) 0%, var(--black-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

/* ============================================================
   UTILITIES
   ============================================================ */
.bg-black  { background: var(--black); }
.bg-dark   { background: var(--black-soft); }
.bg-gray   { background: var(--gray-50); }
.bg-white  { background: var(--white); }
.bg-orange { background: var(--orange); }

.text-center { text-align: center; }

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .why-us-grid,
  .faq-grid,
  .quote-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .why-us-image,
  .about-image {
    aspect-ratio: 16/7;
  }

  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-actions {
    align-items: center;
  }

  .service-intro-grid {
    grid-template-columns: 1fr;
  }

  .service-sidebar {
    position: static;
  }

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

@media (max-width: 768px) {
  :root { font-size: 15px; }

  .section     { padding: 3.5rem 0; }
  .section-lg  { padding: 5rem 0; }

  .main-nav,
  .header-cta,
  .top-bar { display: none; }

  .hamburger { display: flex; }

  .sticky-call-bar { display: block; }

  .hero { min-height: 80vh; padding: 3rem 0; }

  .hero-trust {
    gap: 1rem;
  }

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .trust-bar-grid {
    gap: 1.25rem;
    justify-content: flex-start;
  }

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

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

  .areas-grid {
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
  }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-bar-grid { flex-direction: column; align-items: flex-start; gap: 0.875rem; }
}
