/* ==========================================================================
   Rio Rancho Stucco Repair - Master Design System
   Adapted from Windsor Concrete Creations Architecture
   Zero External Dependencies | 100/100 Core Web Vitals Standard
   ========================================================================== */

/* Master Typographic Pairing: Plus Jakarta Sans (Display Headings) + Inter (Body Copy) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@600;700;800&display=swap');

:root {
  --accent: #c25e2e;          /* Rich Southwestern Terracotta */
  --accent-hover: #a7471e;
  --accent-light: #fbeee7;
  --gold: #d97706;
  --black: #0b0f17;
  --dark: #111827;           /* Deep Mesa Slate */
  --dark-2: #1f2937;
  --dark-3: #374151;
  --text: #111827;
  --text-mid: #374151;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --bg-light: #fdfbf7;        /* Warm Desert Sand / Cream */
  --white: #ffffff;
  --radius: 8px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.07), 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.12), 0 1px 4px rgba(0, 0, 0, 0.06);
  --transition: 0.18s ease;

  /* Typographic Hierarchy */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font: var(--font-body);

  /* PREVIOUS SYSTEM STACK BACKUP (Easily reversible) */
  --font-system-backup: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

  --max-width: 1180px;
  --gutter: 24px;
}

*, *::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.65;
  color: var(--text-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

picture {
  display: contents;
}

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

ul {
  list-style: none;
}

address {
  font-style: normal;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--text);
  font-weight: 800;
  letter-spacing: -0.02em;
  overflow-wrap: break-word;
}

p {
  margin-bottom: 1em;
  overflow-wrap: break-word;
}

p:last-child {
  margin-bottom: 0;
}


a:focus-visible, button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.section {
  padding: 88px 0;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.section-header h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin-bottom: 14px;
  font-weight: 800;
}

.section-sub {
  color: var(--text-light);
  font-size: 16.5px;
  line-height: 1.7;
}

.section-cta {
  text-align: center;
  margin-top: 44px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(194, 94, 46, 0.35);
}

.btn-call {
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  padding: 14px 32px;
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(194, 94, 46, 0.3);
}

.btn-call:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-call-large {
  font-size: 18px;
  padding: 16px 36px;
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: #cbd5e1;
  font-size: 15px;
  font-weight: 600;
}

.btn-outline:hover {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}

.btn-submit {
  display: block;
  width: 100%;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius);
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 12px rgba(194, 94, 46, 0.25);
}

.btn-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Announcement Bar */
.announce-bar {
  background: var(--dark);
  padding: 8px var(--gutter);
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.announce-bar p {
  font-size: 13px;
  letter-spacing: 0.2px;
  color: #d1d5db;
  margin: 0;
  font-weight: 500;
}

.announce-bar strong {
  color: #ffffff;
  font-weight: 600;
}

.announce-bar a {
  color: #f59e0b;
  font-weight: 700;
  margin-left: 6px;
  text-decoration: none;
}

.announce-bar a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .announce-bar {
    display: none;
  }
}

/* Site Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 500;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  color: var(--dark-2);
  font-size: 14.5px;
  font-weight: 600;
  transition: color var(--transition);
  padding: 6px 0;
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}

.main-nav a:hover,
.main-nav a.active,
.main-nav a[aria-current="page"] {
  color: var(--accent);
}

.main-nav a:hover::after,
.main-nav a.active::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all var(--transition);
  flex-shrink: 0;
}

.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.25s;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Dropdown Menu */
.nav-item.nav-has-dropdown {
  position: relative;
  display: inline-block;
}

.nav-services-trigger, .nav-areas-trigger {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.nav-chevron {
  transition: transform var(--transition);
}

.nav-has-dropdown:hover .nav-chevron,
.nav-has-dropdown:focus-within .nav-chevron {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  min-width: 290px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 10px 8px;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  transition: all var(--transition);
}

.nav-has-dropdown:hover .nav-dropdown,
.nav-has-dropdown:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 14px;
  color: var(--text);
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-dropdown a:hover {
  background: var(--bg-light);
  color: var(--accent);
}

.nav-dropdown a::after {
  display: none !important;
}

.nav-dropdown-all {
  margin-top: 6px;
  border-top: 1px solid var(--border);
  padding-top: 12px !important;
  font-weight: 700 !important;
  color: var(--accent) !important;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(110deg, rgba(11, 15, 23, 0.94) 0%, rgba(17, 24, 39, 0.85) 50%, rgba(17, 24, 39, 0.65) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 56px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 70px;
  width: 100%;
}

.hero-text .eyebrow {
  color: #f59e0b;
}

.hero-text h1 {
  font-size: clamp(30px, 4.4vw, 50px);
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 800;
}

.hero-brand {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17.5px;
  line-height: 1.65;
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills > span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

/* Quote Form Card */
.form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  border-top: 3px solid var(--accent);
}

.form-card-header {
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-card-header h3 {
  font-size: 27px;
  color: var(--text);
  font-weight: 800;
  line-height: 1.25;
}

.form-card-header h3 em {
  font-style: normal;
  color: var(--accent);
}

.hp-wrap {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(194, 94, 46, 0.12);
}

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

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 10px;
}

.form-status {
  margin-top: 10px;
  font-size: 13.5px;
  text-align: center;
}

/* Trust Indicator Bar */
.trust-bar {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  justify-content: center;
}

.trust-item:last-child {
  border-right: none;
}

.trust-item svg {
  color: #f59e0b;
  width: 32px;
  height: 32px;
  stroke-width: 2.6px;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.35));
}

.trust-item div {
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}

.trust-item span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 2px;
}

/* Stats Section */
.stats-section {
  background: var(--dark);
}

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

.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 800;
  color: #ff8a50;
  background: linear-gradient(135deg, #ff9e66 0%, #ff7033 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 4px 20px rgba(255, 138, 80, 0.25);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Core Services Grid */
.services-section {
  background: var(--white);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

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

.card-img-wrap {
  height: 220px;
  overflow: hidden;
}

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

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

.card-body {
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-body h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.card-body p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 18px;
  flex: 1;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  transition: gap var(--transition);
}

.service-card:hover .card-link {
  gap: 10px;
}

/* Phone Strip */
.phone-strip {
  background: #151d28;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
}

.phone-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.phone-strip-text strong {
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.phone-strip-text p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14.5px;
  margin: 0;
}

/* Why Choose Us */
.why-section {
  background: var(--bg-light);
}

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

.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.why-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* Authentic Customer Review Cards */
.review-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px 28px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
  position: relative;
}

.review-card:hover {
  box-shadow: 0 12px 28px -6px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
  border-color: rgba(194, 94, 46, 0.3);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.review-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 15px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 700;
  color: #15803d;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  padding: 3px 9px;
  border-radius: 100px;
}

.review-badge svg {
  color: #16a34a;
  flex-shrink: 0;
}

.review-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  flex-grow: 1;
}

.review-author {
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  color: #92400e;
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta strong {
  display: block;
  color: #111827;
  font-size: 14.5px;
  font-weight: 700;
}

.review-meta span {
  display: block;
  font-size: 12.5px;
  color: #6b7280;
  margin-top: 1px;
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--accent);
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.65;
}

/* Process Section */
.process-section {
  position: relative;
  background: radial-gradient(circle at 50% 10%, rgba(30, 41, 59, 0.8) 0%, var(--dark) 70%);
  overflow: hidden;
  padding: 100px 0;
}

.process-section::before {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(194, 94, 46, 0.18) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}

.process-section .container {
  position: relative;
  z-index: 1;
}

.process-section .section-header {
  max-width: 900px;
}

.process-section .section-header h2 {
  color: #fff;
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  letter-spacing: -0.025em;
  text-wrap: balance;
}

.process-section .section-sub {
  color: rgba(255, 255, 255, 0.84);
  max-width: 860px;
  margin: 0 auto;
  font-size: 17.5px;
  line-height: 1.6;
  text-wrap: balance;
}

.process-track {
  position: relative;
  margin-top: 50px;
}

/* Connecting Timeline Track across cards */
.process-track::before {
  content: "";
  position: absolute;
  top: 54px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(194, 94, 46, 0.15) 0%, 
    rgba(194, 94, 46, 0.6) 20%, 
    rgba(194, 94, 46, 0.6) 80%, 
    rgba(194, 94, 46, 0.15) 100%);
  z-index: 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}

.process-step {
  display: flex;
  flex-direction: column;
  background: linear-gradient(165deg, rgba(26, 36, 56, 0.55) 0%, rgba(15, 23, 42, 0.75) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 20px;
  padding: 34px 28px 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 16px 36px -12px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: rgba(194, 94, 46, 0.45);
  border-top-color: #ff8a50;
  box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.7), 0 0 30px rgba(194, 94, 46, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Giant Subtle Ghost Watermark */
.step-watermark {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 80px;
  font-weight: 900;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.06);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.step-top-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

/* Glowing Step Node */
.step-node {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c25e2e 0%, #e07a48 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  box-shadow: 0 0 16px rgba(194, 94, 46, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
  flex-shrink: 0;
}

.step-phase {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
}

.process-step h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  line-height: 1.35;
  position: relative;
  z-index: 1;
}

.process-step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
  position: relative;
  z-index: 1;
}

/* Bottom Outcome Footer */
.step-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1;
}

.step-footer-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
}

.step-footer-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
  flex-shrink: 0;
}

.step-footer-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #c25e2e;
}

.step-footer-value {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}

/* Local Section & Longform Authority */
.local-section {
  background: var(--white);
}

.local-inner {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.local-header {
  position: sticky;
  top: 96px;
}

.local-header h2 {
  font-size: clamp(24px, 2.8vw, 34px);
}

.local-header-sub {
  font-size: 15px;
  color: var(--text-light);
  margin-top: 16px;
  line-height: 1.7;
}

.local-header-cta {
  margin-top: 24px;
}

.local-content p {
  font-size: 15.5px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}


.longform-section {
  background: #fff;
}

.longform-section--alt {
  background: var(--bg-light);
}

.longform-with-image {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 56px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.longform-with-image--reverse {
  grid-template-columns: 1.35fr 1fr;
}

.longform-with-image--reverse .longform-image-wrap {
  order: 2;
}

.longform-image-wrap {
  position: sticky;
  top: 100px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/3;
}

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

.longform-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 16px;
}

.longform-inner h3 {
  font-size: 20px;
  margin-top: 28px;
  margin-bottom: 12px;
  color: var(--text);
}

/* Areas Section */
.areas-section {
  background: var(--bg-light);
}

.areas-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.area-chip {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  transition: all var(--transition);
}

.area-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-1px);
}

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

.faq-container {
  max-width: 800px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--text);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background: var(--bg-light);
}

.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.faq-item[open] .faq-icon {
  border-color: var(--text);
}

.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  border-radius: 2px;
}

.faq-icon::before {
  width: 10px;
  height: 2px;
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transition: transform var(--transition);
}

.faq-item[open] .faq-icon::after {
  transform: scaleY(0);
}

.faq-body {
  padding: 14px 22px 20px;
  border-top: 1px solid var(--border);
}

.faq-body p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.75;
}

/* CTA Section */
.cta-section {
  background: var(--dark-2);
  padding: 96px 0;
}

.cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 60px;
  align-items: center;
}

.cta-text h2 {
  font-size: clamp(26px, 3.4vw, 42px);
  color: #fff;
  margin-bottom: 16px;
  font-weight: 800;
}

.cta-text p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  margin-bottom: 28px;
  line-height: 1.7;
}

.cta-inner--centered {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}

.cta-inner--centered .cta-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.cta-inner--centered .cta-text h2 {
  text-align: center;
  margin-bottom: 16px;
}

.cta-inner--centered .cta-text p {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 28px;
}

.cta-inner--centered .btn-call-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto;
}

/* Subpage Hero & Detail Layouts */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 110px 0 70px;
  background-color: var(--dark);
  color: #fff;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  z-index: 0;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(11, 15, 23, 0.75) 0%, rgba(17, 24, 39, 0.92) 100%);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(28px, 4vw, 46px);
  margin: 14px 0 16px;
  font-weight: 800;
}

.page-hero-sub {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 1.6vw, 18px);
  line-height: 1.6;
  margin-bottom: 24px;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 8px;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--transition);
}

.breadcrumbs a:hover {
  color: var(--accent);
}

.breadcrumbs span[aria-current="page"] {
  color: #fff;
  font-weight: 600;
}

.service-detail-section {
  background: #fff;
}

.service-detail-inner {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 56px;
  align-items: start;
}

.service-detail-body h2 {
  font-size: clamp(22px, 2.8vw, 32px);
  margin-bottom: 20px;
}

.service-detail-body h3 {
  font-size: 20px;
  margin: 30px 0 12px;
}

.service-detail-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 18px;
}

.service-detail-body ul {
  margin: 12px 0 22px;
  padding-left: 22px;
}

.service-detail-body ul li {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--text-mid);
  list-style: disc;
  margin-bottom: 8px;
}

.service-detail-aside {
  position: sticky;
  top: 96px;
}

.service-benefits {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}

.service-benefits h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 18px;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--text-mid);
}

.benefits-list li svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 3px;
}

.related-services-section {
  background: var(--bg-light);
}

.related-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.related-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  transition: all var(--transition);
}

.related-card::after {
  content: '→';
  font-size: 18px;
  color: var(--accent);
  transition: transform var(--transition);
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.related-card:hover::after {
  transform: translateX(4px);
}

/* Site Footer */
.site-footer {
  background: #0d1117;
  color: rgba(255, 255, 255, 0.65);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1.4fr) minmax(0, 1.4fr);
  gap: 48px;
  padding-top: 60px;
  padding-bottom: 44px;
}

.footer-logo {
  height: 46px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
  display: block;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 16px;
}

.footer-phone {
  display: inline-block;
  font-weight: 800;
  font-size: 18px;
  color: #f59e0b;
}

.footer-nav h3, .footer-services h3, .footer-contact h3 {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 18px;
}

.footer-nav ul li, .footer-services ul li {
  margin-bottom: 9px;
}

.footer-nav a, .footer-services a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}

.footer-nav a:hover, .footer-services a:hover {
  color: #fff;
}

.footer-contact address p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}

.footer-bar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  text-align: center;
  margin: 0;
}

/* Mobile FABs & Popup */
.mobile-fabs {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 16px;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.fab-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  border: none;
  cursor: pointer;
  padding: 0;
}

.fab-call {
  background: var(--accent);
  color: #fff;
}

.fab-form {
  background: var(--dark);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.quote-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-end;
}

.quote-popup[hidden] {
  display: none !important;
}

.quote-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.quote-popup-inner {
  position: relative;
  background: #fff;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 28px 20px 36px;
  border-radius: 16px 16px 0 0;
}

.quote-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: none;
  background: var(--bg-light);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 380px;
    gap: 40px;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .local-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .local-header {
    position: static;
  }
  .longform-with-image, .longform-with-image--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .longform-image-wrap {
    position: static;
    aspect-ratio: 16/9;
  }
  .service-detail-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .service-detail-aside {
    position: static;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }
  .section {
    padding: 60px 0;
  }
  .mobile-fabs {
    display: flex;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 6px 0;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 100;
  }
  .main-nav.nav-open {
    display: flex;
  }
  .main-nav a {
    padding: 14px var(--gutter);
    font-size: 15px;
    color: var(--dark-2);
    border-bottom: 1px solid var(--border);
    width: 100%;
  }
  .main-nav a::after {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .header-cta {
    display: none;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
    padding-bottom: 48px;
    gap: 28px;
  }
  .hero-text h1 {
    font-size: 28px;
  }
  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item {
    padding: 16px 12px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    padding: 30px 16px;
  }
  .services-grid, .why-grid {
    grid-template-columns: 1fr;
  }
  .process-track::before {
    display: none;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .cta-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .related-services-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .site-footer {
    padding-bottom: 84px;
  }
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  padding: 13px 28px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}
.contact-section {
  background: #fff;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: start;
}
