/* Cleaned and de-duplicated stylesheet generated from the working CSS */

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

:root {
  --navy: #1e3a8a;
  --navy-dark: #0f172a;
  --navy-mid: #0f1d45;
  --orange: #f97316;
  --orange-dark: #c45d0a;
  --blue-light: #dbeafe;
  --white: #ffffff;
  --gray-text: #374151;
  --font-head: "Montserrat", sans-serif;
  --font-body: "Open Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

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

body {
  background: #fff;
  font-family: "Open Sans", sans-serif;
  line-height: 1.6;
  color: #333;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

nav {
  background: linear-gradient(to bottom, #c45d0a, #f97316);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

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

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-cta {
  margin-left: 16px;
}

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

.nav-links a {
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 7px 10px;
  border-radius: 4px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
}

.nav-links a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.nav-links a.cta-nav {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  padding: 8px 16px;
  margin-left: 6px;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.nav-links a.cta-nav:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle .bar {
  display: block;
  width: 26px;
  height: 3px;
  margin: 5px 0;
  background: #fff;
  border-radius: 2px;
}

.nav-dropdown {
  position: relative;
}

.nav-caret {
  font-size: 8px;
  margin-left: 4px;
  vertical-align: middle;
  opacity: 0.65;
}

.nav-sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #9a3a06;
  border-radius: 6px;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  padding: 6px 0;
  z-index: 200;
}

.nav-sub li a {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  border-radius: 0;
}

.nav-sub li a:hover {
  background: rgba(255,255,255,0.08);
}

.nav-dropdown:hover .nav-sub {
  display: block;
}

.nav-cta .cta-nav {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  border: 2px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 1px 1px 1px rgba(0,0,0,0.5);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-cta .cta-nav:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-container h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 10px;
}

.form-container p {
  color: #64748b;
  margin-bottom: 28px;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
}

.form-group label {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e3a8a;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(30,58,138,0.2);
  border-radius: 8px;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #0f172a;
  background: #f8fafc;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #f97316;
  background: #fff;
}

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

.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
  font-family: "Montserrat", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 0;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(249,115,22,0.4);
  transition: all 0.2s ease;
  margin-top: 4px;
}

.form-submit:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-1px);
}

.policy-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 24px;
}

.policy-body h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 24px;
}

.policy-body h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #1e3a8a;
  margin: 28px 0 10px;
}

.policy-body p {
  font-size: 16px;
  color: #374151;
  line-height: 1.75;
  margin-bottom: 12px;
}

.policy-body a {
  color: #f97316;
  text-decoration: none;
}

.policy-body a:hover {
  text-decoration: underline;
}

.location-hero {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
  position: relative;
  box-shadow: inset 0 60px 120px rgba(0,0,0,0.5), inset 0 -40px 80px rgba(0,0,0,0.3);
}

.location-hero .container {
  position: relative;
  z-index: 2;
}

.svc-eyebrow {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 16px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.location-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.9em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

p {
  font-family: "Open Sans", sans-serif;
}

.intro-text {
  color: #f5f5f5;
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.customer-questions {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 10px;
  padding: 25px;
  margin: 25px 0;
  border-left: 4px solid #f97316;
  backdrop-filter: blur(5px);
}

.customer-questions h3 {
  color: #f97316;
  font-family: "Montserrat", sans-serif;
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.qa-item {
  display: block;
  margin-bottom: 28px;
  padding-bottom: 24px;
  font-family: "Open Sans", sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.qa-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.qa-image {
  float: left;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 16px;
  margin-bottom: 2px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.qa-content {
  display: block;
}

.qa-question {
  color: #f5f5f5;
  font-weight: 700;
  font-size: 1.05em;
  line-height: 1.35;
  display: block;
  margin: 0 0 10px 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.qa-answer {
  color: #f97316;
  font-weight: 400;
  font-size: 1em;
  line-height: 1.5;
  display: block;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.qa-item::after {
  content: "";
  display: block;
  clear: both;
}

.closing-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  margin-top: 20px;
  color: #f5f5f5;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.hero-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  min-width: 180px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-phone {
  background-color: #f97316;
  color: #fff;
}

.hero-phone:hover {
  background-color: #fb923c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.4);
  color: #fff;
  text-decoration: none;
}

.hero-upload {
  background-color: #1e40af;
  color: #fff;
  border: 2px solid #f97316;
}

.hero-upload:hover {
  background-color: #2563eb;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
  color: #fff;
  text-decoration: none;
}

.location-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 4px solid #ffffff;
  height: 520px;
  width: 100%;
  margin-bottom: 60px;
}

.location-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.location-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(30, 58, 138, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.panel-pricing-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0px;
}

.panel-pricing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.panel-pricing-button.primary {
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.panel-pricing-button.primary:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.panel-pricing-button.secondary {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  border: 2px solid #f97316;
}

.panel-pricing-button.secondary:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #fff;
  text-decoration: none;
}

.services-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.service-card {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.service-description {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #f5f5f5;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.services-cta {
  margin-top: 60px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.services-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.services-cta p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  line-height: 1.7;
  color: #f5f5f5;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  min-width: 180px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin-top: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.1em;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.cta-button.primary {
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.cta-button.primary:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.cta-button.secondary {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  border: 2px solid #f97316;
}

.cta-button.secondary:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #fff;
  text-decoration: none;
}

.why-choose-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 50px;
}

.why-choose-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.why-choose-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 4px solid #ffffff;
}

.team-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-text {
  color: #f5f5f5;
}

.key-points {
  margin-bottom: 30px;
}

.key-point {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  padding: 20px;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 10px;
  border-left: 4px solid #f97316;
}

.key-point:last-child {
  margin-bottom: 0;
}

.point-number {
  font-family: "Montserrat", sans-serif;
  font-size: 2em;
  font-weight: 700;
  color: #f97316;
  min-width: 50px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.point-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.point-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 1.6;
  color: #f5f5f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.about-button:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.reviews-section {
  background: linear-gradient(to bottom, #142242 0%, #1e40af 100%);
  color: #333;
  padding: 70px 0 80px;
}

.reviews-header {
  text-align: center;
  margin-bottom: 50px;
}

.reviews-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.header-underline {
  width: 80px;
  height: 4px;
  background: #f97316;
  margin: 0 auto;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.review-card {
  background: linear-gradient(to bottom, #1e3a8a 0%, #577efd 100%);
  border-radius: 12px;
  padding: 30px;
  border-top: 3px solid #f97316;
  position: relative;
  box-shadow: 0 8px 20px rgba(11, 2, 92, 0.4);
}

.stars {
  font-size: 1.3em;
  color: #fbbf24;
  margin-bottom: 20px;
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 3em;
  color: rgba(255, 255, 255, 0.1);
  font-family: Georgia, serif;
}

.review-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1em;
  line-height: 1.7;
  color: #fff;
  font-style: italic;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.reviewer-info {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 15px;
}

.reviewer-name {
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 5px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.review-source {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.review-logo {
  width: 80px;
  height: auto;
}

.review-link {
  font-size: 0.9em;
  color: #f97316;
  text-decoration: none;
  transition: color 0.3s ease;
}

.review-link:hover {
  color: #fb923c;
}

.reviews-cta {
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(to bottom, #172e6e 0%, #1e40af 100%);
  border-radius: 12px;
  border-left: 4px solid #f97316;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reviews-cta p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.2em;
  color: #fff;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-button:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.case-studies-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.case-studies-header {
  text-align: center;
  margin-bottom: 50px;
}

.case-studies-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.case-studies-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.1em;
  color: #dbeafe;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.case-study-card {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.case-study-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.case-study-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.case-study-content {
  padding: 25px;
}

.case-study-location {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  font-weight: 600;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.case-study-title {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.case-study-description {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95em;
  line-height: 1.6;
  color: #f5f5f5;
  margin-bottom: 15px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.case-study-result {
  font-family: "Open Sans", sans-serif;
  font-size: 0.95em;
  font-weight: 600;
  color: #faa162;
  padding: 12px 15px;
  background: rgba(245, 210, 185, 0.1);
  border-left: 3px solid #f97316;
  border-radius: 4px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.final-cta-section {
  text-align: center;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  padding: 80px 0 90px;
  color: #fff;
}

.final-cta-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 30px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
}

.cta-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.08em;
  line-height: 1.8;
  color: #f5f5f5;
  margin-bottom: 25px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.footer {
  background: linear-gradient(to bottom, #0f1d45 0%, #1e3a8a 100%);
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-trust {
  margin-top: 20px;
  color: #dbeafe;
  font-size: 0.95em;
  line-height: 1.05;
}

.footer-trust p {
  margin: -10px 0;
  font-size: 0.95em;
}

.footer-soon {
  color: #dbeafe;
  opacity: .75;
  display: flex;
  align-items: center;
}

.footer-soon::before {
  content: "→";
  color: #f97316;
  margin-right: 8px;
  opacity: .7;
}

.footer .container {
  max-width: 100%;
  padding: 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 50px;
}

.footer-middle {
  display: flex;
  flex-direction: column;
}

.footer h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.3em;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 12px;
}

.footer-underline {
  width: 60px;
  height: 3px;
  background: #f97316;
  margin-bottom: 18px;
}

.footer-left {
  display: flex;
  flex-direction: column;
}

.footer-left p {
  line-height: 1.35;
  font-size: 0.95em;
  color: #dbeafe;
  margin-bottom: 12px;
}

.footer-left .tagline {
  font-style: italic;
  margin-bottom: 20px;
}

.footer-left a {
  color: #dbeafe;
  text-decoration: none;
}

.service-areas a {
  color: #93c5fd;
}

.footer-left a:hover {
  color: #f97316;
}

.footer-social {
  margin-top: auto;
  display: flex;
  gap: 14px;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 2px solid #f97316;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f97316;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all .25s ease;
}

.social-icon:hover {
  background: #f97316;
  color: #0f1d45;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
  margin-bottom: 25px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #dbeafe;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.footer-accordion summary::after {
  content: '▾';
  color: #f97316;
  font-size: 12px;
  margin-left: 8px;
  opacity: 1;
  transition: transform .2s ease;
}

details[open] > summary::after {
  transform: rotate(180deg);
}

.footer-links a:hover {
  color: #f97316;
}

.service-areas {
  list-style: none;
  margin-bottom: 20px;
  display: grid;
  grid-template-columns: repeat(3, max-content);
  column-gap: 14px;
  row-gap: -10px;
  justify-content: start;
}

.service-areas li {
  margin-bottom: 10px;
  color: #dbeafe;
}

.service-areas li::before {
  content: "•";
  color: #f97316;
  margin-right: 8px;
}



.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 25px;
  padding-top: 12px;
  text-align: center;
  font-size: 0.9em;
  color: #dbeafe;
}

.footer-accordion {
  list-style: none;
}

.footer-accordion summary {
  cursor: pointer;
  color: rgba(255,255,255,0.85);
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  padding: 4px 0;
  list-style: none;
}

.footer-accordion summary::-webkit-details-marker {
  display: none;
}

.footer-accordion summary::after {
  content: ' ▾';
  font-size: 11px;
  opacity: 0.7;
}

.footer-accordion {
  list-style: none;
}

.footer-accordion::before {
  display: none;
}

details[open] > summary::after {
  content: ' ▴';
}

.footer-sub-list {
  padding-left: 14px;
  margin-top: 4px;
}

.svc-hero {
  background: radial-gradient(circle at top right, rgba(30, 58, 138, 0.35), #0b1f4d 55%), linear-gradient(180deg, #0b1f4d 0%, #102a63 100%);
  padding: 80px 0 60px;
  color: #ffffff;
  box-shadow: inset 0 60px 120px rgba(0,0,0,0.5), inset 0 -40px 80px rgba(0,0,0,0.3);
}

.svc-hero .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.svc-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.svc-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 26px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.45), 0 0 1px rgba(0, 0, 0, 0.25);
}

.svc-hero p {
  font-size: 18px;
  line-height: 1.5;
  color: #e5edff;
  margin-bottom: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.svc-hero p + p {
  margin-top: 6px;
}

.svc-hero-image {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  border: 4px solid #ffffff;
  height: 400px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.svc-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-hero-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0) 0%, rgba(30, 58, 138, 0.18) 100%);
  pointer-events: none;
}

.panel-need-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.panel-need-header {
  text-align: center;
  margin-bottom: 50px;
}

.panel-need-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-need-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.3em;
  line-height: 1.7;
  color: #dbeafe;
  max-width: 820px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.panel-need-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.panel-need-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.panel-need-card {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.panel-need-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.panel-need-image {
  position: relative;
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 3px solid #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.35) 0%, rgba(249, 115, 22, 0.18) 100%);
  overflow: hidden;
}

.panel-need-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-need-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.panel-need-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.0em;
  line-height: 1.6;
  color: #f5f5f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.panel-need-card a,
.panel-need-card a:visited,
.rewire-service-list a,
.rewire-service-list a:visited {
  color: #93c5fd;
}

.panel-need-cta {
  margin-top: 30px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  border-left: 4px solid #f97316;
}

.panel-need-cta h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-need-cta p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05em;
  line-height: 1.7;
  color: #f5f5f5;
  margin-bottom: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.panel-need-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.panel-need-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.panel-need-button.primary {
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.panel-need-button.primary:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.panel-need-button.secondary {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  border: 2px solid #f97316;
}

.panel-need-button.secondary:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #fff;
  text-decoration: none;
}

.panel-case-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.panel-case-header {
  text-align: center;
  margin-bottom: 45px;
}

.panel-case-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-case-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05em;
  color: #dbeafe;
  max-width: 820px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.panel-case-card {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.55) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.panel-case-image {
  background: linear-gradient(to bottom right, #1e3a8a, #2563eb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 1.1em;
  letter-spacing: 1px;
  color: #e5edff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
}

.panel-case-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.panel-case-content {
  padding: 34px 32px 36px;
}

.panel-case-tag {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8em;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #f97316;
  margin-bottom: 10px;
}

.panel-case-content h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.55em;
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.panel-case-content p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.02em;
  line-height: 1.7;
  color: #f5f5f5;
  margin-bottom: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.panel-case-result {
  margin-top: 20px;
  padding: 18px 18px 18px 22px;
  border-left: 4px solid #f97316;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.panel-case-result strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 6px;
}

.panel-case-cta {
  margin-top: 24px;
}

.panel-case-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease;
}

.panel-case-button:hover {
  transform: translateY(-3px);
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.panel-process-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  padding: 80px 20px;
}

.panel-process-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.panel-process-section .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.panel-process-section .section-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.panel-process-section .section-header p {
  line-height: 1.6;
  font-family: "Open Sans", sans-serif;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 400;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  overflow: hidden;
}

.process-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.process-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 66.67%;
  background: linear-gradient(135deg, rgba(30, 58, 138, 0.4) 0%, rgba(249, 115, 22, 0.2) 100%);
  border-bottom: 2px solid rgba(249, 115, 22, 0.3);
  overflow: hidden;
}

.process-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.step-badge {
  display: inline-block;
  background: #f97316;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin: 20px 0 12px 0;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.process-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 20px 12px 20px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.process-card p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  padding: 0 20px 24px 20px;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

.included-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.included-header {
  text-align: center;
  margin-bottom: 45px;
}

.included-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.included-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05em;
  line-height: 1.7;
  color: #dbeafe;
  max-width: 820px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.included-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.included-card {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  padding: 28px 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.included-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.included-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.35em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding-bottom: 10px;
  border-bottom: 2px solid #f97316;
}

.included-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.included-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #f5f5f5;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.included-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.included-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #f97316;
  font-weight: 900;
}

.included-list li:first-child::before {
  top: 0;
}

.included-callout {
  margin-top: 50px;
  text-align: center;
  padding: 40px 30px;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  border-left: 4px solid #f97316;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.included-callout h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.included-callout p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05em;
  line-height: 1.7;
  color: #f5f5f5;
  margin-bottom: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.included-lines {
  color: #dbeafe;
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 22px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.included-lines {
  margin: 24px auto;
  max-width: 700px;
  width: fit-content;
  text-align: left;
  list-style-position: outside;
  padding-left: 24px;
}

.included-lines li {
  margin-bottom: 12px;
  font-weight: 600;
}

.check-list {
  list-style: none;
  margin: 24px auto;
  padding-left: 0;
  width: fit-content;
  text-align: left;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #f97316;
  font-weight: 900;
}

.included-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.included-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1em;
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 180px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.included-button.primary {
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.included-button.primary:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
  color: #fff;
  text-decoration: none;
}

.included-button.secondary {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  border: 2px solid #f97316;
}

.included-button.secondary:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
  color: #fff;
  text-decoration: none;
}

.panel-pricing-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.section-divider {
  max-width: 1100px;
  height: 1px;
  margin: 40px auto 30px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.25), rgba(255, 255, 255, 0));
}

.panel-pricing-header {
  text-align: center;
  margin-bottom: 45px;
}

.panel-pricing-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-pricing-header p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.05em;
  line-height: 1.7;
  color: #dbeafe;
  max-width: 820px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.panel-pricing-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.55) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.panel-pricing-top {
  padding: 34px 30px 26px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-pricing-label {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95em;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #f97316;
  margin-bottom: 10px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.panel-pricing-range {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8em;
  font-weight: 800;
  color: #fff;
  margin: 6px 0 10px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-pricing-note {
  font-family: "Open Sans", sans-serif;
  font-size: 1.02em;
  line-height: 1.7;
  text-align: left;
  color: #f5f5f5;
  max-width: 760px;
  margin: 0 auto;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}

.panel-pricing-note a {
    color: #f97316;
}

.panel-pricing-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.panel-pricing-col {
  padding: 26px 26px 24px;
}

.panel-pricing-col + .panel-pricing-col {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-pricing-col h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.panel-pricing-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.panel-pricing-list li {
  position: relative;
  padding: 10px 0 10px 30px;
  color: #f5f5f5;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-pricing-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.panel-pricing-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 10px;
  color: #f97316;
  font-weight: 900;
}

.panel-pricing-list li:first-child::before {
  top: 0;
}

.panel-pricing-cta {
  padding: 26px 26px 30px;
  text-align: center;
}

.final-cta-content {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto 40px;
  align-items: center;
}

.final-cta-image {
  width: 280px;
  height: 280px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.final-cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.final-cta-text {
  font-family: "Open Sans", sans-serif;
  font-size: 1.08em;
  line-height: 1.8;
  color: #f5f5f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.final-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.final-cta-button.primary {
  background: linear-gradient(to bottom, #f97316 0%, #ea580c 100%);
  color: #fff;
}

.final-cta-button.primary:hover {
  background: linear-gradient(to bottom, #fb923c 0%, #f97316 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(249, 115, 22, 0.6);
  color: #fff;
  text-decoration: none;
}

.final-cta-button.secondary {
  background: linear-gradient(to bottom, #1e40af 0%, #1e3a8a 100%);
  color: #fff;
  border: 2px solid #f97316;
}

.final-cta-button.secondary:hover {
  background: linear-gradient(to bottom, #2563eb 0%, #1e40af 100%);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.6);
  color: #fff;
  text-decoration: none;
}

.hero-callout {
  background: rgba(15, 29, 69, 0.6);
  border-left: 5px solid #f97316;
  border-radius: 8px;
  padding: 28px 32px;
  margin-top: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-callout h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-callout p {
  font-size: 18px;
  line-height: 1.4;
  color: #dbeafe;
  margin-bottom: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.team-section {
  background: linear-gradient(to bottom, #0f1d45 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0;
}

.team-header {
  text-align: center;
  margin-bottom: 20px;
}

.team-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.team-intro {
  font-size: 1.2em;
  line-height: 1.5;
  color: #e5edff;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.team-member {
  background: rgba(15, 29, 69, 0.6);
  border-left: 5px solid #f97316;
  border-radius: 8px;
  padding: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.team-member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.team-member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-member-info {
  padding: 28px 32px;
}

.team-member-info h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.team-member-info .role {
  font-weight: 600;
  color: #f97316;
  margin-bottom: 14px;
  font-size: 1.05em;
}

.team-member-info p {
  font-size: 1.06em;
  line-height: 1.4;
  color: #dbeafe;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.experience-section {
  background: linear-gradient(to bottom, #0f1d45 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0;
}

.experience-section h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 50px;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.certifications-section {
  margin-top: 40px;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.certifications-section h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.5em;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding-bottom: 12px;
  border-bottom: 2px solid #f97316;
}

.certifications-section p {
  font-size: 1.1em;
  line-height: 1.5;
  color: #f5f5f5;
  margin-bottom: 24px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(200px, 1fr));
  gap: 28px;
}

.cert-item {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.cert-item strong {
  font-family: "Montserrat", sans-serif;
  font-size: 1.15em;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.cert-item p {
  font-size: 1.05em;
  line-height: 1.5;
  color: #dbeafe;
  margin-bottom: 12px;
}

.cert-link {
  color: #f97316;
  text-decoration: none;
  font-size: 1.1em;
  font-weight: 500;
  transition: color 0.3s ease;
}

.cert-link:hover {
  color: #fb923c;
  text-decoration: underline;
}

.definition-item {
  margin: 12px 0;
  border: none;
  background: none;
  padding: 0;
}

.definition-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f2f6ff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.definition-body {
  margin-top: 8px;
  padding-top: 10px;
  padding-left: 24px;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  color: #e5edff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.definition-body a {
  color: #93c5fd;
}

.definition-body p {
  line-height: 1.5;
  margin: 0 0 12px;
  font-size: 16px;
}

.contact-hero {
  background: linear-gradient(to bottom, #0f1d45 0%, #1e3a8a 100%);
  color: #fff;
  padding: 80px 0 60px;
  text-align: center;
}

.contact-hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.8em;
  font-weight: 700;
  margin-bottom: 16px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero p {
  font-size: 1.2em;
  line-height: 1.6;
  color: #dbeafe;
  max-width: 700px;
  margin: 0 auto 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.contact-info-bar {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 30px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.contact-info-item strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.9em;
  color: #f97316;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-info-item a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05em;
  transition: color 0.3s ease;
}

.contact-info-item a:hover {
  color: #f97316;
}

.contact-info-item span {
  color: #f5f5f5;
  font-size: 1.05em;
}

.contact-form-section {
  background: #f8f9fa;
  padding: 70px 0;
}

.service-area-section {
  background: linear-gradient(to bottom, #0f1d45 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.service-area-header {
  text-align: center;
  margin-bottom: 50px;
}

.service-area-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.service-area-header p {
  font-size: 1.05em;
  color: #dbeafe;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.service-area-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.area-card {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.5) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 12px;
  padding: 32px 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.area-card h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.4em;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  padding-bottom: 12px;
  border-bottom: 2px solid #f97316;
}

.area-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 20px;
}

.area-list li {
  color: #f5f5f5;
  font-size: 0.95em;
  list-style: none;
  position: relative;
  padding-left: 18px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.area-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f97316;
  font-weight: 900;
}

/* 3-column layout for Bay Area cities on desktop */
.area-card:last-child .area-list {
  grid-template-columns: 1fr 1fr 1fr !important;
}

.definition-title::-webkit-details-marker {
  display: none;
}

.definition-title::before {
  content: "▶";
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.definition-body p:last-child {
  margin-bottom: 0;
}

.panel-qa-section {
  background: linear-gradient(to bottom, rgba(15, 29, 69, 1) 0%, #1e3a8a 100%);
  color: #fff;
  padding: 70px 0 80px;
}

.panel-qa-header {
  text-align: center;
  margin-bottom: 45px;
}

.panel-qa-header h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.panel-qa-card {
  max-width: 920px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.55) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  padding: 34px 40px 36px;
}

.panel-qa-item {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.panel-qa-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.panel-qa-item h3 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.25em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.panel-qa-item p {
  font-family: "Open Sans", sans-serif;
  font-size: 1.02em;
  line-height: 1.7;
  color: #f5f5f5;
  margin: 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.35);
}

.final-cta-card {
  max-width: 1000px;
  margin: 0 auto;
  background: linear-gradient(to bottom, rgba(15, 29, 69, 0.6) 0%, rgba(255, 255, 255, 0.12) 100%);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.4);
  padding: 48px 40px 52px;
  text-align: center;
}

.final-cta-card h2 {
  font-family: "Montserrat", sans-serif;
  font-size: 2.2em;
  font-weight: 700;
  margin-bottom: 14px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.final-cta-intro {
  font-family: "Open Sans", sans-serif;
  font-size: 1.08em;
  line-height: 1.7;
  color: #e5edff;
  max-width: 820px;
  margin: 0 auto 34px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.final-cta-concerns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 38px;
}

.final-cta-concern {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 22px 20px 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.final-cta-concern strong {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.final-cta-concern p {
  font-family: "Open Sans", sans-serif;
  font-size: 0.98em;
  line-height: 1.6;
  color: #f5f5f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
}

.final-cta-guarantee {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: #fff;
  margin: 22px 0 30px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.final-cta-section .container {
  max-width: 900px;
  text-align: center;
}

.final-cta-section .cta-text {
  text-align: center;
}

.case-study-title a,
.case-study-title a:visited {
  color: #fff;
  text-decoration: none;
}

.case-study-title a:hover {
  color: #f97316;
  text-decoration: none;
}

.services-grid .service-card h3 a,
.services-grid .service-card h3 a:visited {
  color: #fff;
  text-decoration: none;
}

.services-grid .service-card h3 a:hover {
  color: #f97316;
}

.services-section a,
.case-studies-section a,
.why-choose-section a,
.reviews-section a,
.final-cta-section a {
  color: inherit;
  text-decoration: none;
}

.services-section a:hover,
.case-studies-section a:hover {
  color: #f97316;
}

.desktop-buttons {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 16px;
}

.mobile-buttons {
  display: none;
}

summary.definition-title {
  list-style: none;
}

.svc-hero a {
  color: #93c5fd;
  text-decoration: none;
}

.svc-hero a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.svc-hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.svc-btn-primary {
  background: #f97316;
  color: #ffffff;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 12px 26px rgba(249, 115, 22, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.25);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
}

.svc-btn-outline {
  border: 2px solid #f97316;
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.45);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.definition-item[open] .definition-title::before {
  transform: rotate(90deg);
}

.placeholder-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.placeholder-text {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.placeholder-subtitle {
  font-family: "Open Sans", sans-serif;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.25);
}

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

.rewire-service-list a,
.rewire-service-list a:visited {
  color: #93c5fd;
}

.nav-dropdown-sub {
  position: relative;
}

.nav-dropdown-sub .nav-sub-child {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #9a3a06;
  border-radius: 6px;
  list-style: none;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  padding: 6px 0;
  z-index: 300;
}

.nav-dropdown-sub:hover .nav-sub-child {
  display: block;
}


@media (max-width: 992px) {

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .case-studies-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .final-cta-concerns {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-process-section .section-header h2 {
    font-size: 2rem;
  }

  .panel-pricing-bottom {
    grid-template-columns: 1fr;
  }

  .panel-pricing-col + .panel-pricing-col {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .panel-case-card {
    grid-template-columns: 1fr;
  }

  .panel-case-image {
    min-height: 240px;
  }

  .panel-need-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .included-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

}


@media (max-width: 900px) {

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

  .footer-middle {
    padding-left: 0;
  }

  .footer-links {
    margin-bottom: 10px;
  }

  .footer h3 {
    font-size: 1.1em;
    margin-top: 0px;
  }

  .service-areas {
    grid-template-columns: repeat(2, auto);
  }

  .footer-social {
    margin-top: 20px;
  }

  .svc-hero-grid {
    grid-template-columns: 1fr;
  }

  .comm-ai-dropdown {
  order: 3;
}

  .svc-hero h1 {
    font-size: 38px;
  }

  .svc-hero-image {
    height: 320px;
  }

}


@media (max-width: 768px) {

.qa-item {
  flex-wrap: wrap;
}

.qa-content {
  flex: 1;
  min-width: 0;
}

.qa-answer {
  flex-basis: 100%;
  width: 100%;
  margin-top: 1px;
  margin-left: 0;
}

.qa-question {
  margin-top: 12px;
}

  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #c45d0a;
    padding: 12px 16px 20px;
    z-index: 99;
    gap: 4px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    white-space: normal;
  }

  .nav-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .nav-sub {
    display: none;
    position: static;
    box-shadow: none;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    margin-top: 2px;
    padding: 4px 0;
    min-width: 0;
    width: 100%;
  }

  .nav-dropdown.is-open .nav-sub {
    display: block;
  }

  .nav-links a.cta-nav {
    margin-left: 0;
    margin-top: 8px;
    text-align: center;
    border-radius: 6px;
  }

  .location-hero h1 {
    font-size: 1.2em;
    margin-bottom: 10px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-button {
    width: 100%;
  }

  .row {
    grid-template-columns: 1fr;
    gap: 5.location-hero h1px;
  }

  .location-image {
    height: 280px;
    order: 1;
    margin-bottom: -20px;
  }

  .customer-questions {
    padding: 20px;
  }

  .services-section {
    padding: 50px 0 60px;
  }

  .services-header h2 {
    font-size: 1.2em;
    margin-bottom: -25px;
  }

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

  .service-card {
    padding: 25px;
  }

  .why-choose-section {
    padding: 40px 0 50px;
  }

  .why-choose-header h2 {
    font-size: 1.6em;
    margin-bottom: -25px;
  }

  .why-choose-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .team-image {
    order: -1;
  }

  .key-point {
    flex-direction: column;
    padding: 15px;
  }

  .point-number {
    margin-bottom: 10px;
  }

  .reviews-section {
    padding: 50px 0 20px;
  }

  .reviews-header h2 {
    margin-top: -20px;
    font-size: 1.4em;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .review-card {
    padding: 25px;
  }

  .quote-icon {
    font-size: 2em;
    top: 25px;
    right: 25px;
  }

  .case-studies-section {
    padding: 30px 0 30px;
  }

  .case-studies-header h2 {
    font-size: 1.5em;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .case-study-image {
    height: 200px;
  }

  .final-cta-section {
    padding: 30px 0 40px;
  }

  .final-cta-section h2 {
    font-size: .97em;
  }

  .cta-text {
    font-size: 1.05em;
  }

  .cta-button {
    width: 100%;
    max-width: 300px;
    font-size: 0.85em;
    padding: 12px 24px;
  }

  .desktop-buttons {
    display: none;
  }

  .mobile-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    order: 3;
    margin-top: -40px;
    margin-bottom: -20px;
  }

  .mobile-buttons .panel-pricing-button {
    width: 100%;
    max-width: 320px;
    text-align: center;
  }

  .service-card h3 {
    font-size: 1.1em;
  }

  .services-cta h3 {
    font-size: 1.3em;
  }

  .key-point .point-content h3 {
    font-size: 1.1em;
  }

  .final-cta-text {
    padding: 0 18px;
    max-width: 520px;
    margin: 0 auto;
    text-align: left;
    margin-top: 0;
  }

  .final-cta-image {
    margin-bottom: 10px;
    order: -1;
    width: fit-content;
    max-width: 100%;
    height: auto;
    margin: 0 auto 24px;
    display: block;
    overflow: visible;
  }

  .about-button {
    font-size: 0.85em;
    padding: 12px 24px;
    text-align: center;
    display: block;
    margin: 0 auto;
  }

  .location-hero .row {
    display: flex;
    flex-direction: column;
  }

  .location-hero .row > div:first-child {
    display: contents;
  }

  .location-hero .row > div:last-child {
    order: 2;
  }

  .final-cta-card {
    padding: 38px 24px 42px;
  }

  .final-cta-card h2 {
    font-size: 1.5em;
  }

  .final-cta-intro {
    text-align: left;
    margin-bottom: 28px;
  }

  .final-cta-buttons {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .panel-process-section {
    padding: 60px 20px;
  }

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

  .panel-process-section .section-header h2 {
    font-size: 1.75rem;
  }

  .panel-process-section .section-header {
    margin-bottom: 40px;
  }

  .panel-pricing-section {
    padding: 1px 0 25px;
  }

  .panel-pricing-header h2 {
    font-size: 1.6em;
  }

  .panel-pricing-header {
    padding: 0 16px;
  }

  .panel-pricing-top {
    padding: 16px 14px;
  }

  .panel-pricing-range {
    font-size: 1.3em;
  }

  .panel-pricing-label {
    font-size: 0.8em;
  }

  .panel-pricing-top div[style*="font-size: 1.8em"] {
    font-size: 1.2em !important;
  }

  .panel-pricing-top > div > div:nth-child(2) {
    font-size: 1.2em !important;
  }

  .panel-pricing-col {
    padding: 22px 20px;
  }

  .panel-qa-section {
    padding: 25px 0 25px;
  }

  .panel-qa-header h2 {
    font-size: 1.5em;
    margin-bottom: -20px;
  }

  .panel-qa-card {
    padding: 28px 22px 30px;
  }

  .panel-case-section {
    padding: 25px 0 65px;
  }

  .panel-case-header h2 {
    font-size: 1.6em;
  }

  .panel-case-content {
    padding: 28px 22px 30px;
  }

  .panel-need-section {
    padding: 50px 0 60px;
    padding-top: 16px;
  }

  .panel-need-header h2 {
    font-size: 1.3em;
    padding: 0 16px;
  }

  .panel-need-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

   .panel-need-grid-4 {
    grid-template-columns: 1fr;
  }

  .panel-need-card {
    padding: 25px;
  }

  .panel-need-image {
    height: 170px;
  }

  .panel-case-header {
    padding: 0 16px;
  }

  .panel-need-section details {
    overflow: hidden;
    max-width: 100%;
  }

  .panel-need-section .definition-title {
    white-space: normal;
    word-wrap: break-word;
    font-size: 0.7em;
  }

  .included-section {
    padding: 55px 0 25px;
  }

  .included-header {
    margin-bottom: 35px;
  }

  .included-header h2 {
    font-size: 1.6em;
  }

  .included-card {
    padding: 24px 22px;
  }

  .included-callout {
    padding: 30px 20px;
    margin-top: 36px;
  }

  .included-buttons {
    gap: 14px;
    flex-direction: column;
    align-items: center;
  }

  .included-button {
    font-size: 0.85em;
    padding: 12px 20px;
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .included-card h3 {
    font-size: 1.1em;
  }

  .included-callout h3 {
    font-size: 1.2em;
  }

  .svc-hero {
    padding: 40px 0 10px;
  }

  .svc-hero .container {
    padding: 0 16px;
    max-width: 100%;
    overflow: hidden;
  }

  .svc-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .svc-hero-image {
    order: -1;
    height: 260px;
    width: 100%;
  }

  .svc-hero h1 {
    font-size: 1.6em;
  }

  .svc-hero p {
    font-size: 1em;
  }

  .svc-hero details {
    overflow: hidden;
    max-width: 100%;
  }

  .svc-hero .definition-title {
    white-space: normal;
    word-wrap: break-word;
    font-size: 0.9em;
  }

  .svc-hero .panel-pricing-button {
    font-size: 0.85em;
    padding: 12px 20px;
    min-width: unset;
    width: 100%;
    max-width: 320px;
  }

  .svc-hero .panel-pricing-buttons {
    flex-direction: column;
    align-items: center;
  }

  .emergency-commercial-section {
  padding-top: 30px;
}

  .panel-need-button {
    font-size: 0.9em;
    padding: 12px 18px;
    min-width: unset;
    width: 100%;
    max-width: 220px;
  }

  .panel-need-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .panel-pricing-cta .panel-pricing-button {
    font-size: 0.85em;
    padding: 12px 20px;
    min-width: unset;
    width: 100%;
    max-width: 280px;
  }

  .panel-pricing-buttons {
    flex-direction: column;
    align-items: center;
  }

  .panel-pricing-cta .panel-pricing-button:first-child {
    margin-top: 16px;
  }

  .panel-case-button {
    font-size: 0.85em;
    padding: 12px 20px;
    min-width: unset;
    width: auto;
  }

.panel-pricing-button {
  font-size: 0.78em;
  padding: 6px 24px;
  min-width: unset;
  width: auto;
  max-width: 100%;
  white-space: nowrap;
  line-height: 1.2;
}

  .reviews-cta {
    padding: 10px 15px;
  }

  .final-cta-content {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .final-cta-image img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    object-fit: contain;
  }

  .final-cta-button {
    font-size: 0.85em;
    padding: 12px 20px !important;
    min-width: unset !important;
    width: 100%;
    max-width: 280px;
  }

  .panel-pricing-note {
    text-align: left;
    max-width: 520px;
    margin: 0 auto;
  }

  .panel-need-header p {
    font-size: 1.05rem;
    line-height: 1.6;
    padding: 0 16px;
  }

  .panel-need-header {
    margin-bottom: 8px;
  }

  .reviews-cta p {
    margin-bottom: 5px;
  }

  .reviews-header {
    margin-bottom: 12px;
  }

  .panel-need-cta {
    padding: 24px 18px;
    margin-top: 24px;
  }

  .panel-need-cta h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
  }

  .panel-need-cta p {
    text-align: left;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .team-member {
    width: 100%;
  }

  .team-member-image {
    height: 220px;
  }

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

  .team-member-info {
    padding: 20px 18px;
  }

  .team-member-info h3 {
    font-size: 1.5em;
    margin-bottom: 6px;
  }

  .team-member-info .role {
    font-size: 1em;
    margin-bottom: 12px;
  }

  .team-member-info p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .cert-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .cert-item {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 18px 16px !important;
  }

  .cert-item strong {
    display: block;
    font-size: 1.05em;
    margin-bottom: 8px;
  }

  .cert-item p {
    font-size: 0.95rem;
    line-height: 1.55;
    margin-bottom: 10px;
  }

  .cert-link {
    font-size: 0.95rem;
    word-break: break-word;
  }

  .service-area-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .area-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 22px 18px !important;
  }

  .area-card h3 {
    font-size: 1.3em;
    margin-bottom: 14px;
  }

.area-list {
  grid-template-columns: 1fr 1fr !important;
  gap: 8px 16px !important;
}

  .area-list li {
    font-size: 0.95rem;
    line-height: 1.5;
    padding-left: 16px;
  }

  .contact-hero {
    padding: 40px 0 32px;
  }

  .contact-hero h1 {
    font-size: 1.7em;
    line-height: 1.35;
    margin-bottom: 14px;
    padding: 0 16px;
  }

  .contact-hero p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 18px;
    padding: 0 16px;
  }

  .contact-info-bar {
    gap: 24px;
    margin-top: 20px;
  }

  .contact-info-item strong {
    font-size: 0.85em;
    margin-bottom: 4px;
  }

  .contact-info-item a,
  .contact-info-item span {
    font-size: 1rem;
    line-height: 1.5;
    word-break: break-word;
    padding: 0 16px;
    text-align: center;
  }

  .contact-form-section {
    padding: 16px 0;
  }

  .service-area-header h2 {
    font-size: 1.5em;
    line-height: 1.35;
    padding: 0 16px;
    margin-bottom: 10px;
  }

}


@media (max-width: 600px) {

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

}


@media (max-width: 480px) {

  .location-hero {
    padding: 50px 0 60px;
  }

  .container {
    padding: 0 15px;
  }

  .intro-text, .closing-text {
    font-size: 1em;
  }

  .customer-questions h3 {
    font-size: 1.1em;
  }

  .hero-button {
    min-width: auto;
    padding: 10px 20px;
  }

}

@media (max-width: 768px) {
  .team-header h2 {
    font-size: 1.6em;
    line-height: 1.3;
  }
}

@media (max-width: 768px) {
  .experience-section h2 {
    font-size: 1.5em;
    line-height: 1.3;
    margin-top: 0px;
    margin-bottom: 20px;
    padding: 0 16px;
  }
}

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

@media (max-width: 768px) {

  .qa-item {
    display: block;
  }

.qa-image {
  float: left;
  width: 96px;
  height: 96px;
  margin-right: 14px;
  margin-bottom: 2px; /* 👈 was 6px → tighter under image */
}

  .qa-content {
    display: block;
  }

.qa-question {
  font-size: 1.05em;
  line-height: 1.35;
  margin: 0 0 10px 0; /* 👈 was 6px → more breathing room */
}

  .qa-answer {
    font-size: 1.05em;
    line-height: 1.45;
    margin: 0;
  }

  .qa-item::after {
    content: "";
    display: block;
    clear: both;
  }
}

@media (max-width: 768px) {

  .svc-hero-grid {
    display: flex;
    flex-direction: column;
  }

  .hero-review-card {
    order: 1;
  }

  .hero-buttons-wrap {
    order: 2;
  }

  .hero-ai-dropdowns {
    order: 3;
  }

}

@media (max-width: 768px) {
  section[style*="background:#0f172a"] {
    padding-top: 18px !important;
  }
}

@media (max-width: 768px) {
  summary.definition-title {
  list-style: none;
  font-size: 0.9em;
 }
 .definition-title {
  white-space: normal;
  word-wrap: break-word;
  overflow: hidden;
}
}

@media (max-width: 768px) {

  .included-lines {
    text-align: left !important;
  }

}

.panel-pricing-button {
  font-size: 0.78em;
  padding: 6px 24px;
  min-width: unset;
  width: auto;
  max-width: fit-content;
  white-space: nowrap;
  line-height: 1.2;
  align-self: center;
}

@media (max-width: 380px) {
  .panel-pricing-button {
    font-size: 11.5px;
    padding: 6px 18px;
  }
}

@media (max-width: 380px) {

  .panel-pricing-button {
    padding: 6px 18px;
  }

  .panel-pricing-button span,
  .panel-pricing-button {
    font-size: 11px;
    letter-spacing: -0.2px;
  }

}

@media (max-width: 380px) {
  .panel-pricing-button {
    font-size: 10.5px !important;
    padding: 6px 14px !important;
    letter-spacing: -0.4px;
    white-space: nowrap;
  }
}

@media (max-width: 768px) {
  .footer {
    overflow-x: hidden;
  }

  .footer p,
  .footer a {
    color: #dbeafe;
    overflow-wrap: anywhere;
  }
}
