/* ============================================
   DraftCo Custom Styles
   Non-Tailwind styles ported from the original
   HTML-only project.
   ============================================ */

:root {
  --blueprint-color: #12213D;
  --blueprint-line: #1C335A;
  --nav-bg: #1A3159;
  --text-color: #ffffff;
  --link-color: #69B3E5;
  --card-radius: 8px;
}

/* ---- Navigation Banner ---- */
.nav-header {
  width: 100%;
  padding: 1rem 1.5rem;
  background-color: var(--nav-bg);
  z-index: 50;
}

.logo-main {
  font-family: 'Roboto Slab', 'Rockwell', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #F5F0E1;
  letter-spacing: -0.5px;
}

.logo-subtitle {
  font-family: 'Source Sans Pro', sans-serif;
  font-size: 0.62rem;
  font-weight: 400;
  color: #F5F0E1;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ---- Hero Section ---- */
.hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 1.5rem 1.5rem 2rem;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  text-align: center;
  animation: fadeInDown 0.8s ease-out;
}

.hero-tagline {
  font-family: 'Roboto Slab', 'Rockwell', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  color: #F5F0E1;
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 5;
}

.hero-tagline .highlight {
  color: var(--link-color);
  display: block;
}

.hero-mission {
  font-size: 1.35rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  max-width: 750px;
  margin: 0 auto 0.75rem;
}

/* ---- Hero headline wrapper with buildings behind ---- */
.hero-headline-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 220px;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}

/* ---- Blueprint Building Background ---- */
.machinery-bg {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  padding: 0 0.5rem;
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}

.machinery-bg svg {
  width: auto;
  stroke: #69B3E5;
  stroke-width: 1.2;
  fill: none;
}

.building {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  margin: 0 -2px;
}

.building svg {
  height: 140px;
  width: auto;
  clip-path: inset(100% 0 0 0);
}

/* ---- Scroll Indicator ---- */
.scroll-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.5rem;
  animation: bounce 2s infinite;
}

.scroll-indicator svg {
  width: 32px;
  height: 32px;
  stroke: var(--link-color);
}

/* ---- State / Jurisdiction Cards ---- */
.card {
  position: relative;
  background-color: #2c3e50;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--card-radius);
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  aspect-ratio: 16 / 8.5;
  transition: transform 0.2s ease, filter 0.2s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.card:hover {
  transform: scale(1.05);
  filter: brightness(1.5);
  z-index: 10;
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(30, 40, 60, 0.4), rgba(30, 40, 60, 0.4)),
    radial-gradient(circle at center, transparent 40%, rgba(0,0,0,0.5) 100%);
  z-index: 1;
}

.card-label {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 0 10px #000, 0 0 10px #000, 0 2px 4px rgba(0, 0, 0, 0.95);
  line-height: 1;
}

/* ---- Grid Container ---- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  width: 100%;
  max-width: 1100px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ---- Footer ---- */
.footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--blueprint-line);
  background-color: var(--blueprint-color);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  color: #94a3b8;
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a {
  color: #94a3b8;
  font-size: 0.875rem;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-branding {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  max-width: 28rem;
}

.footer-attribution {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.4;
  margin: 0;
}

.footer-attribution a {
  color: #94a3b8;
  text-decoration: underline;
  transition: color 0.2s;
}

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

/* ---- Keyframes ---- */
@keyframes buildUp {
  0%   { clip-path: inset(100% 0 0 0); }
  100% { clip-path: inset(0 0 0 0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40%  { transform: translateY(-8px); }
  60%  { transform: translateY(-4px); }
}

.animate-fade-in-down {
  animation: fadeInDown 0.6s ease-out both;
}

.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

/* ---- Dense LA Skyline – 58 buildings with staggered build animation ---- */
.building:nth-child(1)  svg { height: 35px;  animation: buildUp 0.4s  ease-out forwards 0.35s; }
.building:nth-child(2)  svg { height: 62px;  animation: buildUp 0.7s  ease-out forwards 0.25s; }
.building:nth-child(3)  svg { height: 92px;  animation: buildUp 1.05s ease-out forwards 0.1s;  }
.building:nth-child(4)  svg { height: 82px;  animation: buildUp 0.95s ease-out forwards 0.14s; }
.building:nth-child(5)  svg { height: 110px; animation: buildUp 1.27s ease-out forwards 0.05s; }
.building:nth-child(6)  svg { height: 100px; animation: buildUp 1.15s ease-out forwards 0.07s; }
.building:nth-child(7)  svg { height: 38px;  animation: buildUp 0.45s ease-out forwards 0.36s; }
.building:nth-child(8)  svg { height: 68px;  animation: buildUp 0.78s ease-out forwards 0.22s; }
.building:nth-child(9)  svg { height: 120px; animation: buildUp 1.38s ease-out forwards 0.02s; }
.building:nth-child(10) svg { height: 68px;  animation: buildUp 0.77s ease-out forwards 0.21s; }
.building:nth-child(11) svg { height: 90px;  animation: buildUp 1.04s ease-out forwards 0.1s;  }
.building:nth-child(12) svg { height: 140px; animation: buildUp 1.6s  ease-out forwards 0s;    }
.building:nth-child(13) svg { height: 58px;  animation: buildUp 0.66s ease-out forwards 0.27s; }
.building:nth-child(14) svg { height: 92px;  animation: buildUp 1.05s ease-out forwards 0.1s;  }
.building:nth-child(15) svg { height: 48px;  animation: buildUp 0.56s ease-out forwards 0.32s; }
.building:nth-child(16) svg { height: 175px; animation: buildUp 2s    ease-out forwards 0s;    }
.building:nth-child(17) svg { height: 52px;  animation: buildUp 0.6s  ease-out forwards 0.3s;  }
.building:nth-child(18) svg { height: 108px; animation: buildUp 1.25s ease-out forwards 0.05s; }
.building:nth-child(19) svg { height: 40px;  animation: buildUp 0.48s ease-out forwards 0.35s; }
.building:nth-child(20) svg { height: 190px; animation: buildUp 2.15s ease-out forwards 0s;    }
.building:nth-child(21) svg { height: 72px;  animation: buildUp 0.84s ease-out forwards 0.18s; }
.building:nth-child(22) svg { height: 108px; animation: buildUp 1.25s ease-out forwards 0.05s; }
.building:nth-child(23) svg { height: 45px;  animation: buildUp 0.52s ease-out forwards 0.34s; }
.building:nth-child(24) svg { height: 210px; animation: buildUp 2.3s  ease-out forwards 0s;    }
.building:nth-child(25) svg { height: 82px;  animation: buildUp 0.95s ease-out forwards 0.14s; }
.building:nth-child(26) svg { height: 38px;  animation: buildUp 0.45s ease-out forwards 0.36s; }
.building:nth-child(27) svg { height: 170px; animation: buildUp 1.95s ease-out forwards 0s;    }
.building:nth-child(28) svg { height: 62px;  animation: buildUp 0.7s  ease-out forwards 0.25s; }
.building:nth-child(29) svg { height: 95px;  animation: buildUp 1.08s ease-out forwards 0.08s; }
.building:nth-child(30) svg { height: 50px;  animation: buildUp 0.58s ease-out forwards 0.32s; }
.building:nth-child(31) svg { height: 145px; animation: buildUp 1.66s ease-out forwards 0s;    }
.building:nth-child(32) svg { height: 72px;  animation: buildUp 0.83s ease-out forwards 0.2s;  }
.building:nth-child(33) svg { height: 34px;  animation: buildUp 0.4s  ease-out forwards 0.38s; }
.building:nth-child(34) svg { height: 112px; animation: buildUp 1.3s  ease-out forwards 0.03s; }
.building:nth-child(35) svg { height: 58px;  animation: buildUp 0.66s ease-out forwards 0.27s; }
.building:nth-child(36) svg { height: 88px;  animation: buildUp 1.01s ease-out forwards 0.12s; }
.building:nth-child(37) svg { height: 42px;  animation: buildUp 0.49s ease-out forwards 0.35s; }
.building:nth-child(38) svg { height: 160px; animation: buildUp 1.85s ease-out forwards 0s;    }
.building:nth-child(39) svg { height: 68px;  animation: buildUp 0.78s ease-out forwards 0.21s; }
.building:nth-child(40) svg { height: 36px;  animation: buildUp 0.42s ease-out forwards 0.38s; }
.building:nth-child(41) svg { height: 130px; animation: buildUp 1.5s  ease-out forwards 0s;    }
.building:nth-child(42) svg { height: 52px;  animation: buildUp 0.6s  ease-out forwards 0.3s;  }
.building:nth-child(43) svg { height: 92px;  animation: buildUp 1.06s ease-out forwards 0.1s;  }
.building:nth-child(44) svg { height: 44px;  animation: buildUp 0.5s  ease-out forwards 0.34s; }
.building:nth-child(45) svg { height: 150px; animation: buildUp 1.72s ease-out forwards 0s;    }
.building:nth-child(46) svg { height: 78px;  animation: buildUp 0.9s  ease-out forwards 0.15s; }
.building:nth-child(47) svg { height: 40px;  animation: buildUp 0.47s ease-out forwards 0.36s; }
.building:nth-child(48) svg { height: 105px; animation: buildUp 1.2s  ease-out forwards 0.05s; }
.building:nth-child(49) svg { height: 60px;  animation: buildUp 0.69s ease-out forwards 0.27s; }
.building:nth-child(50) svg { height: 82px;  animation: buildUp 0.95s ease-out forwards 0.14s; }
.building:nth-child(51) svg { height: 38px;  animation: buildUp 0.45s ease-out forwards 0.36s; }
.building:nth-child(52) svg { height: 155px; animation: buildUp 1.78s ease-out forwards 0s;    }
.building:nth-child(53) svg { height: 78px;  animation: buildUp 0.9s  ease-out forwards 0.15s; }
.building:nth-child(54) svg { height: 40px;  animation: buildUp 0.47s ease-out forwards 0.36s; }
.building:nth-child(55) svg { height: 108px; animation: buildUp 1.25s ease-out forwards 0.05s; }
.building:nth-child(56) svg { height: 60px;  animation: buildUp 0.69s ease-out forwards 0.27s; }
.building:nth-child(57) svg { height: 82px;  animation: buildUp 0.95s ease-out forwards 0.14s; }
.building:nth-child(58) svg { height: 38px;  animation: buildUp 0.45s ease-out forwards 0.36s; }

/* ============================================
   Our Story Page Styles
   ============================================ */

:root {
  --accent-blue: #69B3E5;
  --accent-silver: #C0C0C0;
}

/* Hero Section */
.os-hero {
  padding: 6.5rem 2rem 2rem;
  background: linear-gradient(135deg, #12213D 0%, #1a3159 50%, #12213D 100%);
  position: relative;
  overflow: hidden;
}

.os-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.4;
}

.os-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(105, 179, 229, 0.1) 0%, transparent 60%);
}

.os-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.os-hero-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1rem;
  color: white;
}

.os-hero-title span {
  color: var(--accent-blue);
}

.os-hero-cards {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.os-hero-card {
  flex: 1;
  background: rgba(26, 49, 89, 0.6);
  border: 1px solid rgba(105, 179, 229, 0.3);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.os-hero-card:hover {
  background: rgba(26, 49, 89, 0.8);
  border-color: rgba(105, 179, 229, 0.5);
  transform: translateY(-4px);
}

.os-hero-card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 0.75rem;
  color: #69B3E5;
}

.os-hero-card-icon svg {
  width: 100%;
  height: 100%;
}

.os-hero-card-text {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.6;
  margin: 0;
}

.os-section-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Timeline Section */
.os-timeline-section {
  padding: 1.5rem 2rem 1rem;
  background: var(--blueprint-color);
  position: relative;
}

.os-timeline-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
}

.os-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.os-section-label {
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.os-section-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.os-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  padding: 1rem 0;
  overflow-x: auto;
}

.os-timeline::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), var(--accent-blue), transparent);
  opacity: 0.4;
}

.os-timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 100px;
  flex: 1;
  position: relative;
}

.os-timeline-icon {
  width: 60px;
  height: 60px;
  background: rgba(105, 179, 229, 0.1);
  border: 2px solid rgba(105, 179, 229, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.os-timeline-item:hover .os-timeline-icon {
  background: rgba(105, 179, 229, 0.2);
  border-color: var(--accent-blue);
  transform: scale(1.1);
}

.os-timeline-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-blue);
  stroke-width: 1.5;
  fill: none;
}

.os-timeline-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.05em;
  max-width: 90px;
}

/* Differentiator Section */
.os-differentiator-section {
  padding: 1rem 2rem 2rem;
  background: linear-gradient(180deg, var(--blueprint-color) 0%, #0f1a2e 100%);
  position: relative;
}

.os-differentiator-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.os-diff-intro {
  text-align: center;
  margin-bottom: 1.5rem;
}

.os-diff-intro h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.os-diff-intro p {
  font-size: 1.15rem;
  color: #94a3b8;
}

.os-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.os-experience-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(105, 179, 229, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: all 0.3s ease;
}

.os-experience-card:hover {
  border-color: rgba(105, 179, 229, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.os-experience-icon {
  width: 44px;
  height: 44px;
  background: rgba(105, 179, 229, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.os-experience-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-blue);
  stroke-width: 1.5;
  fill: none;
}

.os-experience-content h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.os-experience-content p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* CTA Section */
.os-cta-section {
  padding: 2rem 2rem;
  background: linear-gradient(135deg, #1a3159 0%, #12213D 100%);
  position: relative;
  overflow: hidden;
}

.os-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.4;
}

.os-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(105, 179, 229, 0.1) 0%, transparent 50%);
}

.os-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.os-cta-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.os-cta-title span {
  color: var(--accent-blue);
}

.os-cta-description {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.os-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.os-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-blue);
  color: var(--blueprint-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.os-btn-primary:hover {
  background: #7ec8f0;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(105, 179, 229, 0.3);
}

.os-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-blue);
  padding: 1rem 2rem;
  border: 2px solid var(--accent-blue);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.os-btn-secondary:hover {
  background: var(--accent-blue);
  color: var(--blueprint-color);
}

.os-btn-primary svg,
.os-btn-secondary svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}

/* Responsive */
@media (max-width: 900px) {
  .os-hero-title {
    font-size: 2.5rem;
  }
  .os-section-title {
    font-size: 2rem;
  }
  .os-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }
  .os-timeline::before {
    display: none;
  }
  .os-timeline-item {
    min-width: 80px;
  }
  .os-experience-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .os-hero {
    padding: 8rem 1.5rem 4rem;
  }
  .os-hero-title {
    font-size: 2rem;
  }
  .os-hero-cards {
    flex-direction: column;
    gap: 1.5rem;
  }
  .os-hero-card {
    padding: 1.5rem;
  }
  .os-cta-buttons {
    flex-direction: column;
  }
  .os-cta-title {
    font-size: 2rem;
  }
}

/* ============================================
   Contractors Split-Panel Page
   ============================================ */

:root {
  --silver-primary: #C0C0C0;
  --silver-light: #E8E8E8;
  --silver-dark: #A8A8A8;
}

/* When this class is on <body>, use the split layout */
body.contractors-split main {
  overflow: hidden;
}

.split-container {
  height: calc(100vh - 76px);
  display: flex;
  position: relative;
  overflow: hidden;
  margin-top: 76px; /* clear fixed nav */
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  cursor: pointer;
  transition: flex 0.5s ease, background 0.4s ease;
  overflow: hidden;
  text-decoration: none;
}

.split-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
  pointer-events: none;
}

.panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 400px;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.panel-residential,
.panel-owners {
  background: linear-gradient(135deg, #12213D 0%, #1a3159 50%, #12213D 100%);
}

.panel-residential::after,
.panel-owners::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(105, 179, 229, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.panel-commercial,
.panel-contractors {
  background: linear-gradient(135deg, #0f1a2e 0%, #162544 50%, #0f1a2e 100%);
}

.panel-commercial::after,
.panel-contractors::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(192, 192, 192, 0.08) 0%, transparent 60%);
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.center-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1), transparent);
  transform: translateX(-50%);
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.split-container:hover .center-divider {
  opacity: 0;
}

.split-container:hover .split-panel {
  flex: 0.85;
}

.split-container:hover .split-panel:hover {
  flex: 1.15;
}

.panel-residential:hover,
.panel-owners:hover {
  background: linear-gradient(135deg, #152a4a 0%, #1e3d66 50%, #152a4a 100%);
}

.panel-residential:hover::after,
.panel-owners:hover::after {
  background: radial-gradient(circle at 50% 50%, rgba(105, 179, 229, 0.15) 0%, transparent 70%);
}

.panel-commercial:hover,
.panel-contractors:hover {
  background: linear-gradient(135deg, #1a2744 0%, #243b53 50%, #1a2744 100%);
}

.panel-commercial:hover::after,
.panel-contractors:hover::after {
  background: radial-gradient(circle at 50% 50%, rgba(192, 192, 192, 0.15) 0%, transparent 70%);
}

.split-container:hover .split-panel:not(:hover) .panel-content {
  opacity: 0.5;
  transform: scale(0.95);
}

.icon-box {
  width: 140px;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  transition: all 0.4s ease;
}

.icon-box svg {
  width: 130px;
  height: 130px;
  stroke-width: 1;
  fill: none;
  transition: all 0.4s ease;
  opacity: 0.85;
}

.panel-residential .icon-box svg,
.panel-owners .icon-box svg {
  stroke: var(--link-color);
  filter: drop-shadow(0 0 12px rgba(105, 179, 229, 0.4));
}

.panel-residential:hover .icon-box svg,
.panel-owners:hover .icon-box svg {
  transform: scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(105, 179, 229, 0.6));
}

.panel-commercial .icon-box svg,
.panel-contractors .icon-box svg {
  stroke: var(--silver-primary);
  filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.4));
}

.panel-commercial:hover .icon-box svg,
.panel-contractors:hover .icon-box svg {
  transform: scale(1.08);
  opacity: 1;
  filter: drop-shadow(0 0 20px rgba(192, 192, 192, 0.6));
}

.panel-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.panel-residential .panel-label,
.panel-owners .panel-label {
  color: var(--link-color);
}

.panel-commercial .panel-label,
.panel-contractors .panel-label {
  color: var(--silver-primary);
}

.panel-title {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.panel-subtitle {
  font-size: 1.1rem;
  color: #94a3b8;
  margin-bottom: 2rem;
}

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none !important;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.panel-cta svg {
  width: 20px;
  height: 20px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
  transition: transform 0.3s ease;
}

.panel-cta:hover svg {
  transform: translateX(4px);
}

.panel-residential .panel-cta,
.panel-owners .panel-cta {
  background: transparent;
  color: var(--link-color);
  border: 2px solid var(--link-color);
}

.panel-residential .panel-cta:hover,
.panel-owners .panel-cta:hover {
  background: var(--link-color);
  color: var(--blueprint-color);
}

.panel-commercial .panel-cta,
.panel-contractors .panel-cta {
  background: var(--silver-primary);
  color: var(--blueprint-color);
  border: 2px solid var(--silver-primary);
}

.panel-commercial .panel-cta:hover,
.panel-contractors .panel-cta:hover {
  background: var(--silver-light);
  border-color: var(--silver-light);
}

.panel-residential .accordion-header,
.panel-owners .accordion-header {
  color: var(--link-color);
}

.panel-commercial .accordion-header,
.panel-contractors .accordion-header {
  color: var(--silver-primary);
}

.panel-description {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Expandable Accordion */
.panel-accordions {
  width: 100%;
  max-width: 400px;
  margin-top: 1.5rem;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.split-panel:hover .panel-accordions {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.accordion-item {
  margin-bottom: 0.5rem;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.accordion-item:hover {
  background: rgba(255, 255, 255, 0.08);
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 1.25rem;
  cursor: pointer;
  user-select: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.panel-residential .accordion-header {
  color: var(--link-color);
}

.panel-commercial .accordion-header {
  color: var(--silver-primary);
}

.accordion-icon {
  width: 18px;
  height: 18px;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  stroke: currentColor;
  fill: none;
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

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

.accordion-item.active .accordion-content {
  max-height: 300px;
}

.accordion-content ul {
  list-style: none;
  padding: 0 1.25rem 1rem;
  margin: 0;
}

.accordion-content li {
  padding: 0.5rem 0;
  padding-left: 1.25rem;
  position: relative;
  font-size: 0.875rem;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: left;
}

.accordion-content li:last-child {
  border-bottom: none;
}

.accordion-content li::before {
  content: "→";
  position: absolute;
  left: 0;
  opacity: 0.6;
}

.panel-residential .accordion-content li::before {
  color: var(--link-color);
}

.panel-commercial .accordion-content li::before {
  color: var(--silver-primary);
}

@media (max-width: 900px) {
  .split-container {
    flex-direction: column;
    height: auto;
  }
  .center-divider {
    display: none;
  }
  .split-container:hover .split-panel {
    flex: 1;
  }
  .panel-title {
    font-size: 1.5rem;
  }
  .icon-box {
    width: 100px;
    height: 100px;
  }
  .icon-box svg {
    width: 90px;
    height: 90px;
  }
  .panel-accordions {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

/* ============================================
   Services Page
   ============================================ */

/* Services still reference legacy accent variable names.
   Point them at the shared blue accent within services-only sections. */
.services-hero,
.services-section {
  --success-green: #69B3E5;
}

/* Hero (services) */
.services-hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #12213D 0%, #1a3159 50%, #12213D 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}

.services-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.services-hero .hero-badge {
  display: inline-block;
  background: rgba(105, 179, 229, 0.15);
  border: 1px solid rgba(105, 179, 229, 0.3);
  color: var(--accent-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.services-hero .hero-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: white;
}

.services-hero .hero-title span {
  color: var(--accent-blue);
}

.services-hero .hero-description {
  font-size: 1.2rem;
  color: #94a3b8;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto;
}

/* Services section */
.services-section {
  padding: 4rem 2rem 5rem;
  background: var(--blueprint-color);
  position: relative;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.services-section .section-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.service-category {
  margin-bottom: 3rem;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(105, 179, 229, 0.2);
}

.category-icon {
  width: 50px;
  height: 50px;
  background: rgba(105, 179, 229, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
}

.category-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.category-subtitle {
  font-size: 0.9rem;
  color: #64748b;
  margin-top: 0.25rem;
}

/* Service cards */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.8) 0%, rgba(18, 33, 61, 0.9) 100%);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 179, 229, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

.service-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.service-description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.price-label {
  font-size: 0.9rem;
  color: #64748b;
}

.service-features {
  list-style: none;
  margin-bottom: 1.5rem;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  padding: 0.4rem 0;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--success-green);
  fill: none;
  flex-shrink: 0;
}

/* Addon badge (inside home-improvement drafting card) */
.addon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(105, 179, 229, 0.15);
  border: 1px solid rgba(105, 179, 229, 0.3);
  color: var(--accent-blue);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.addon-badge:hover {
  background: rgba(105, 179, 229, 0.25);
  border-color: rgba(105, 179, 229, 0.5);
  transform: translateY(-2px);
}

.addon-badge.selected {
  background: rgba(52, 211, 153, 0.2);
  border-color: var(--success-green);
  color: var(--success-green);
}

.addon-badge .addon-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.addon-badge.selected .addon-checkbox {
  background: var(--success-green);
  border-color: var(--success-green);
}

.addon-badge .addon-checkbox svg {
  width: 12px;
  height: 12px;
  stroke: white;
  stroke-width: 3;
  fill: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.addon-badge.selected .addon-checkbox svg {
  opacity: 1;
}

.addon-badge svg.plus-icon {
  width: 16px;
  height: 16px;
  stroke: var(--accent-blue);
  fill: none;
  transition: all 0.2s ease;
}

.addon-badge.selected svg.plus-icon {
  stroke: var(--success-green);
}

/* Service CTA */
.service-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--accent-blue);
  color: var(--blueprint-color);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-cta:hover {
  background: #7ec4f0;
  transform: translateY(-2px);
}

/* Tier cards (commercial) */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tier-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.8) 0%, rgba(18, 33, 61, 0.9) 100%);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
  text-align: center;
  display: flex;
  flex-direction: column;
}

.tier-card.featured {
  border-color: rgba(105, 179, 229, 0.5);
  transform: scale(1.02);
}

.tier-card.featured::after {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-blue);
  color: var(--blueprint-color);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(105, 179, 229, 0.5);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.tier-card.featured:hover {
  transform: scale(1.02) translateY(-5px);
}

.tier-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.tier-description {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1.5rem;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.5rem;
  padding: 0;
}

.tier-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
  padding: 0.5rem 0;
}

.tier-features li svg {
  width: 16px;
  height: 16px;
  stroke: var(--success-green);
  fill: none;
  flex-shrink: 0;
}

.tier-addon {
  background: rgba(105, 179, 229, 0.1);
  border: 1px dashed rgba(105, 179, 229, 0.3);
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: var(--accent-blue);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.tier-addon:hover {
  background: rgba(105, 179, 229, 0.2);
  border-color: rgba(105, 179, 229, 0.5);
  border-style: solid;
}

.tier-addon.selected {
  background: rgba(52, 211, 153, 0.15);
  border-color: var(--success-green);
  border-style: solid;
  color: var(--success-green);
}

.tier-addon.included {
  background: rgba(52, 211, 153, 0.15);
  border-color: var(--success-green);
  border-style: solid;
  color: var(--success-green);
  cursor: default;
}

.tier-addon.included:hover {
  background: rgba(52, 211, 153, 0.15);
  border-color: var(--success-green);
}

.tier-addon .addon-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid var(--accent-blue);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.tier-addon.selected .addon-checkbox,
.tier-addon.included .addon-checkbox {
  background: var(--success-green);
  border-color: var(--success-green);
}

.tier-addon .addon-checkbox svg {
  width: 10px;
  height: 10px;
  stroke: white;
  stroke-width: 3;
  fill: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.tier-addon.selected .addon-checkbox svg,
.tier-addon.included .addon-checkbox svg {
  opacity: 1;
}

.tier-cta {
  display: block;
  width: 100%;
  padding: 1rem;
  background: var(--accent-blue);
  color: var(--blueprint-color);
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: auto;
}

.tier-cta:hover {
  background: #7ec4f0;
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .tier-grid {
    grid-template-columns: 1fr;
  }
  .tier-card.featured {
    transform: none;
    order: -1;
  }
  .tier-card.featured:hover {
    transform: translateY(-5px);
  }
  .services-hero .hero-title {
    font-size: 2.25rem;
  }
}

/* ============================================
   California Owners Page
   ============================================ */

:root {
  --accent-blue-dark: #5AA6DA;
}

.co-hero {
  padding: 6.5rem 2rem 2rem;
  background: linear-gradient(135deg, #12213D 0%, #1a3159 50%, #12213D 100%);
  position: relative;
  overflow: hidden;
}

.co-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}

.co-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(105, 179, 229, 0.1) 0%, transparent 60%);
}

.co-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.co-hero-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
}

.co-hero-title span {
  color: var(--accent-blue);
}

.co-hero-description {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.co-protections-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1rem auto;
  text-align: left;
  max-width: 800px;
  position: relative;
  z-index: 2;
}

.co-protection-item {
  display: flex;
  gap: 0.875rem;
  background: rgba(105, 179, 229, 0.08);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  transition: all 0.3s ease;
}

.co-protection-item:hover {
  background: rgba(105, 179, 229, 0.12);
  border-color: rgba(105, 179, 229, 0.35);
  transform: translateY(-2px);
}

.co-protection-item svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--accent-blue);
  fill: none;
  margin-top: 2px;
}

.co-protection-item div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.co-protection-item strong {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.co-protection-item span {
  color: #94a3b8;
  font-size: 0.875rem;
  line-height: 1.5;
}

.co-hero-warning {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(233, 89, 70, 0.15);
  border: 1px solid rgba(233, 89, 70, 0.3);
  color: #f87171;
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  margin: 0 auto 1rem auto;
  max-width: 600px;
  text-align: left;
  position: relative;
  z-index: 2;
}

.co-hero-warning svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: #f87171;
  fill: none;
}

.co-hero-cta-pane {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(105, 179, 229, 0.15);
  border: 1px solid rgba(105, 179, 229, 0.3);
  color: var(--accent-blue);
  padding: 0.875rem 1.5rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  max-width: 600px;
  text-align: left;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0.5rem auto 0 auto;
  position: relative;
  z-index: 2;
}

.co-hero-cta-pane:hover {
  background: rgba(105, 179, 229, 0.25);
  border-color: rgba(105, 179, 229, 0.5);
  transform: translateY(-2px);
}

.co-hero-cta-pane svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  stroke: var(--accent-blue);
  fill: none;
}

.co-hero-cta-pane .co-arrow-icon {
  margin-left: auto;
  transition: transform 0.3s ease;
}

.co-hero-cta-pane:hover .co-arrow-icon {
  transform: translateX(4px);
}

.co-clients-section {
  padding: 2rem 2rem 1.5rem;
  background: var(--blueprint-color);
  position: relative;
}

.co-clients-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.3;
}

.co-section-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.co-section-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.co-section-label {
  color: var(--accent-blue);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.co-section-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
}

.co-clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.co-client-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.8) 0%, rgba(18, 33, 61, 0.9) 100%);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.co-client-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.co-client-card:hover {
  transform: translateY(-8px);
  border-color: rgba(105, 179, 229, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.co-client-card:hover::before {
  opacity: 1;
}

.co-client-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.co-client-icon svg {
  width: 55px;
  height: 55px;
  stroke: var(--accent-blue);
  stroke-width: 1;
  fill: none;
  filter: drop-shadow(0 0 10px rgba(105, 179, 229, 0.3));
  transition: all 0.4s ease;
}

.co-client-card:hover .co-client-icon svg {
  transform: scale(1.1);
  filter: drop-shadow(0 0 15px rgba(105, 179, 229, 0.5));
}

.co-client-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.co-client-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.5;
}

.co-services-section {
  padding: 1.5rem 2rem 2rem;
  background: linear-gradient(180deg, var(--blueprint-color) 0%, #0f1a2e 100%);
  position: relative;
}

.co-services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.co-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.co-service-card {
  position: relative;
  z-index: 2;
}

.co-service-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(105, 179, 229, 0.1);
  line-height: 1;
  margin-bottom: -1.5rem;
  font-family: 'Roboto Slab', serif;
}

.co-service-content {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(105, 179, 229, 0.15);
  border-radius: 12px;
  padding: 1.25rem;
  position: relative;
}

.co-service-icon {
  width: 50px;
  height: 50px;
  background: rgba(105, 179, 229, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.co-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-blue);
  stroke-width: 1.5;
  fill: none;
}

.co-service-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.co-service-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.6;
}

.co-cta-section {
  padding: 2rem 2rem;
  background: linear-gradient(135deg, #1a3159 0%, #12213D 100%);
  position: relative;
  overflow: hidden;
}

.co-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.4;
}

.co-cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(105, 179, 229, 0.1) 0%, transparent 50%);
}

.co-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.co-cta-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.co-cta-description {
  font-size: 1.2rem;
  color: #94a3b8;
  margin-bottom: 1rem;
}

.co-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.co-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-blue);
  color: var(--blueprint-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.co-btn-primary:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(105, 179, 229, 0.3);
}

.co-btn-primary svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

/* ---- Owners pages: hero-badge, hero-cta button, statute, project-types, btn-secondary ---- */

.co-hero-badge {
  display: inline-block;
  background: rgba(105, 179, 229, 0.15);
  border: 1px solid rgba(105, 179, 229, 0.3);
  color: var(--accent-blue);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.co-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--accent-blue);
  color: var(--blueprint-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.co-hero-cta:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(105, 179, 229, 0.3);
}

.co-hero-cta svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease;
}

.co-hero-cta:hover svg {
  transform: translateX(4px);
}

/* Project Types (Federal hero) */
.co-project-types {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 2rem auto;
  text-align: left;
  max-width: 850px;
  position: relative;
  z-index: 2;
}

.co-project-card {
  background: rgba(105, 179, 229, 0.08);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.co-project-card:hover {
  background: rgba(105, 179, 229, 0.12);
  border-color: rgba(105, 179, 229, 0.35);
  transform: translateY(-2px);
}

.co-project-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.co-project-card h3 svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent-blue);
  fill: none;
  flex-shrink: 0;
}

.co-project-card p {
  color: #94a3b8;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Statute / content section */
.co-statute-section,
.co-content-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #0f1a2e 0%, var(--blueprint-color) 100%);
  position: relative;
}

.co-statute-section::before,
.co-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.co-statute-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.co-statute-header {
  text-align: center;
  margin-bottom: 3rem;
}

.co-statute-header h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.co-statute-header p {
  font-size: 1.1rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
}

.co-statute-divider,
.co-section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-blue), var(--accent-blue-dark));
  margin: 1rem auto;
  border-radius: 2px;
}

.co-statute-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.co-statute-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.co-statute-card:hover {
  border-color: rgba(105, 179, 229, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.co-statute-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(105, 179, 229, 0.15);
}

.co-statute-icon {
  width: 50px;
  height: 50px;
  background: rgba(105, 179, 229, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.co-statute-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.5;
}

.co-statute-card-header h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-blue);
  margin-bottom: 0.25rem;
}

.co-statute-card-header span {
  font-size: 0.9rem;
  color: #94a3b8;
}

.co-statute-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.co-statute-card li {
  font-size: 0.95rem;
  color: #c4d3e8;
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  line-height: 1.5;
}

.co-statute-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 8px;
  height: 8px;
  background: var(--accent-blue);
  border-radius: 50%;
  opacity: 0.7;
}

.co-statute-card li strong {
  color: white;
}

/* Secondary CTA button */
.co-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--accent-blue);
  padding: 1rem 2rem;
  border: 2px solid var(--accent-blue);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.co-btn-secondary:hover {
  background: var(--accent-blue);
  color: var(--blueprint-color);
}

@media (max-width: 900px) {
  .co-statute-grid,
  .co-project-types {
    grid-template-columns: 1fr;
  }
}

/* ============================================
   Contractors sub-pages (Florida/Nevada/Federal/California)
   Uses silver accent to match live site. "cc-" prefix.
   ============================================ */

:root {
  --cc-accent-silver: #C0C0C0;
  --cc-accent-silver-light: #E8E8E8;
  --cc-warning-red: #E95946;
  --cc-success-green: #34d399;
}

.cc-hero {
  padding: 6.5rem 2rem 2.5rem;
  background: linear-gradient(135deg, #0f1a2e 0%, #162544 50%, #0f1a2e 100%);
  position: relative;
  overflow: hidden;
}

.cc-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
}

.cc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(192, 192, 192, 0.08) 0%, transparent 60%);
}

.cc-hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cc-hero-badge {
  display: inline-block;
  background: rgba(192, 192, 192, 0.15);
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: var(--cc-accent-silver);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.cc-hero-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: white;
}

.cc-hero-title span {
  color: var(--cc-accent-silver);
}

.cc-hero-description {
  font-size: 1.1rem;
  color: #94a3b8;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 1.5rem;
}

.cc-risks-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem auto;
  text-align: left;
  max-width: 900px;
}

.cc-risk-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  background: rgba(233, 89, 70, 0.1);
  border: 1px solid rgba(233, 89, 70, 0.25);
  border-radius: 10px;
  padding: 1.15rem 1.25rem;
  transition: all 0.3s ease;
}

.cc-risk-item:hover {
  background: rgba(233, 89, 70, 0.15);
  border-color: rgba(233, 89, 70, 0.4);
  transform: translateY(-2px);
}

.cc-risk-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cc-risk-header svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--cc-warning-red);
  fill: none;
}

.cc-risk-header strong {
  color: white;
  font-size: 1rem;
  font-weight: 600;
}

.cc-risk-item span {
  color: #94a3b8;
  font-size: 0.9rem;
  line-height: 1.5;
}

.cc-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--cc-accent-silver);
  color: var(--blueprint-color);
  padding: 0.95rem 1.9rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.75rem;
}

.cc-hero-cta:hover {
  background: var(--cc-accent-silver-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.cc-hero-cta svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
  transition: transform 0.3s ease;
}

.cc-hero-cta:hover svg {
  transform: translateX(4px);
}

/* Content Section */
.cc-content-section {
  padding: 3rem 2rem;
  background: var(--blueprint-color);
  position: relative;
}

.cc-content-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.2;
}

.cc-section-container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cc-section-header {
  text-align: center;
  margin-bottom: 2rem;
}

.cc-section-header h2 {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.cc-section-header p {
  font-size: 1.05rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0.5rem auto 0;
}

.cc-section-label {
  color: var(--cc-accent-silver);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.cc-section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cc-accent-silver), var(--accent-blue));
  margin: 0.75rem auto;
  border-radius: 2px;
}

/* Statute Section */
.cc-statute-section {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 1.5rem;
}

.cc-statute-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.15);
}

.cc-statute-icon {
  width: 60px;
  height: 60px;
  background: rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cc-statute-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--cc-accent-silver);
  fill: none;
  stroke-width: 1.5;
}

.cc-statute-title h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--cc-accent-silver);
  margin-bottom: 0.25rem;
}

.cc-statute-title p {
  color: #94a3b8;
  font-size: 0.95rem;
}

/* Timeline */
.cc-timeline-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.cc-timeline-step {
  position: relative;
  padding: 1.25rem;
  text-align: center;
}

.cc-timeline-step::after {
  content: "";
  position: absolute;
  top: 35px;
  right: -10px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--cc-accent-silver);
  border-right: 2px solid var(--cc-accent-silver);
  transform: rotate(45deg);
  opacity: 0.5;
}

.cc-timeline-step:last-child::after {
  display: none;
}

.cc-timeline-number {
  width: 50px;
  height: 50px;
  background: rgba(192, 192, 192, 0.15);
  border: 2px solid var(--cc-accent-silver);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cc-accent-silver);
}

.cc-timeline-step.requirements .cc-timeline-number {
  animation: cc-glowYellow 4.5s ease-in-out infinite;
}

.cc-timeline-step.consequences .cc-timeline-number {
  animation: cc-glowRed 4.5s ease-in-out infinite;
  animation-delay: 1.5s;
}

.cc-timeline-step.help .cc-timeline-number {
  animation: cc-glowGreen 4.5s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes cc-glowYellow {
  0%, 100% {
    border-color: var(--cc-accent-silver);
    color: var(--cc-accent-silver);
    background: rgba(192, 192, 192, 0.15);
    box-shadow: none;
  }
  15%, 25% {
    border-color: #69B3E5;
    color: #69B3E5;
    background: rgba(105, 179, 229, 0.2);
    box-shadow: 0 0 20px rgba(105, 179, 229, 0.6), 0 0 40px rgba(105, 179, 229, 0.4);
  }
}

@keyframes cc-glowRed {
  0%, 100% {
    border-color: var(--cc-accent-silver);
    color: var(--cc-accent-silver);
    background: rgba(192, 192, 192, 0.15);
    box-shadow: none;
  }
  15%, 25% {
    border-color: #E95946;
    color: #E95946;
    background: rgba(233, 89, 70, 0.2);
    box-shadow: 0 0 20px rgba(233, 89, 70, 0.6), 0 0 40px rgba(233, 89, 70, 0.4);
  }
}

@keyframes cc-glowGreen {
  0%, 100% {
    border-color: var(--cc-accent-silver);
    color: var(--cc-accent-silver);
    background: rgba(192, 192, 192, 0.15);
    box-shadow: none;
  }
  15%, 25% {
    border-color: #34d399;
    color: #34d399;
    background: rgba(52, 211, 153, 0.2);
    box-shadow: 0 0 20px rgba(52, 211, 153, 0.6), 0 0 40px rgba(52, 211, 153, 0.4);
  }
}

.cc-timeline-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.cc-timeline-step ul {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.cc-timeline-step li {
  font-size: 0.9rem;
  color: #94a3b8;
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  line-height: 1.5;
}

.cc-timeline-step li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--cc-accent-silver);
}

.cc-timeline-step.consequences li::before {
  color: var(--cc-warning-red);
}

.cc-timeline-step.help li::before {
  color: var(--cc-success-green);
}

/* Services Grid (simple) */
.cc-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.cc-service-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
}

.cc-service-card:hover {
  border-color: rgba(192, 192, 192, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.cc-service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.cc-service-card p {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.6;
}

/* CTA Section */
.cc-cta-section {
  padding: 3.5rem 2rem;
  background: linear-gradient(135deg, #1a3159 0%, #12213D 100%);
  position: relative;
  overflow: hidden;
}

.cc-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.4;
}

.cc-cta-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.cc-cta-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.cc-cta-description {
  font-size: 1.15rem;
  color: #94a3b8;
  margin-bottom: 1.5rem;
}

.cc-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.cc-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--cc-accent-silver);
  color: var(--blueprint-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cc-btn-primary:hover {
  background: var(--cc-accent-silver-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(192, 192, 192, 0.3);
}

.cc-btn-primary svg {
  width: 20px;
  height: 20px;
  stroke: currentColor;
  fill: none;
}

.cc-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cc-accent-silver);
  padding: 1rem 2rem;
  border: 2px solid var(--cc-accent-silver);
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cc-btn-secondary:hover {
  background: var(--cc-accent-silver);
  color: var(--blueprint-color);
}

@media (max-width: 900px) {
  .cc-risks-list,
  .cc-timeline-container,
  .cc-services-grid {
    grid-template-columns: 1fr;
  }
  .cc-hero-title {
    font-size: 2.25rem;
  }
  .cc-timeline-step::after {
    display: none;
  }
}

@media (max-width: 600px) {
  .cc-hero {
    padding: 7rem 1.5rem 3rem;
  }
  .cc-hero-title {
    font-size: 1.85rem;
  }
  .cc-cta-buttons {
    flex-direction: column;
  }
}

/* ============================================
   California Contractors - unique split hero + 2-col expandable timelines
   Prefix: "cac-"
   ============================================ */

.cac-hero-split {
  display: flex;
  min-height: 60vh;
  position: relative;
  padding-top: 70px;
  background: var(--blueprint-color);
}

.cac-hero-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 2rem;
  position: relative;
}

.cac-hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.5;
  pointer-events: none;
}

.cac-panel-home-improvement {
  background: linear-gradient(135deg, #12213D 0%, #1a3159 50%, #12213D 100%);
}

.cac-panel-commercial {
  background: linear-gradient(135deg, #0f1a2e 0%, #162544 50%, #0f1a2e 100%);
}

.cac-center-divider {
  position: absolute;
  top: 70px;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: translateX(-50%);
  z-index: 10;
}

.cac-panel-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 420px;
}

.cac-icon-box {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.cac-icon-box svg {
  width: 110px;
  height: 110px;
  stroke-width: 1;
  fill: none;
  opacity: 0.85;
}

.cac-panel-home-improvement .cac-icon-box svg {
  stroke: var(--accent-blue);
  filter: drop-shadow(0 0 12px rgba(105, 179, 229, 0.4));
}

.cac-panel-commercial .cac-icon-box svg {
  stroke: var(--cc-accent-silver);
  filter: drop-shadow(0 0 12px rgba(192, 192, 192, 0.4));
}

.cac-panel-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.5rem;
  opacity: 0.7;
}

.cac-panel-home-improvement .cac-panel-label { color: var(--accent-blue); }
.cac-panel-commercial .cac-panel-label { color: var(--cc-accent-silver); }

.cac-panel-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.cac-panel-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.cac-panel-home-improvement .cac-panel-subtitle { color: var(--accent-blue); }
.cac-panel-commercial .cac-panel-subtitle { color: var(--cc-accent-silver); }

.cac-list-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-blue);
  margin: 0.75rem 0 0.5rem;
  text-align: left;
}

.cac-list-heading-silver { color: var(--cc-accent-silver); }

.cac-feature-list {
  text-align: left;
  margin-bottom: 0.5rem;
  list-style: none;
  padding: 0;
}

.cac-feature-list li {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
  padding: 0.3rem 0 0.3rem 1.25rem;
  position: relative;
}

.cac-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.cac-panel-home-improvement .cac-feature-list li::before { background: var(--accent-blue); }
.cac-panel-commercial .cac-feature-list li::before { background: var(--cc-accent-silver); }

/* Compliance Section - 2 column expandable timelines */
.cac-compliance-section {
  padding: 3.5rem 2rem;
  background: linear-gradient(180deg, #0f1a2e 0%, var(--blueprint-color) 100%);
  position: relative;
}

.cac-compliance-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, var(--blueprint-line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--blueprint-line) 1px, transparent 1px);
  background-size: 10px 10px;
  opacity: 0.25;
}

.cac-timelines-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cac-timeline-column {
  display: flex;
  flex-direction: column;
}

.cac-timeline-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(192, 192, 192, 0.2);
}

.cac-timeline-statute {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--cc-accent-silver);
  letter-spacing: 0.05em;
  margin-bottom: 0.25rem;
}

.cac-timeline-subtitle {
  font-size: 0.85rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cac-timeline-column.left .cac-timeline-statute { color: var(--accent-blue); }

.cac-tl {
  position: relative;
  padding-left: 40px;
}

.cac-tl::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 2px;
  background: linear-gradient(180deg, rgba(192, 192, 192, 0.3) 0%, rgba(192, 192, 192, 0.1) 100%);
  border-radius: 2px;
}

.cac-timeline-column.left .cac-tl::before {
  background: linear-gradient(180deg, rgba(105, 179, 229, 0.3) 0%, rgba(105, 179, 229, 0.1) 100%);
}

.cac-timeline-stage {
  position: relative;
  margin-bottom: 1rem;
}

.cac-timeline-node {
  position: absolute;
  left: -40px;
  top: 1.15rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cac-timeline-node::before {
  content: "";
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cc-accent-silver);
  box-shadow: 0 0 20px rgba(192, 192, 192, 0.4);
  transition: all 0.3s ease;
}

.cac-timeline-column.left .cac-timeline-node::before {
  background: var(--accent-blue);
  box-shadow: 0 0 20px rgba(105, 179, 229, 0.4);
}

.cac-timeline-stage.active .cac-timeline-node::before,
.cac-timeline-stage:hover .cac-timeline-node::before {
  transform: scale(1.3);
}

.cac-stage-header {
  background: rgba(26, 49, 89, 0.6);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 10px;
  padding: 0.9rem 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cac-stage-header:hover {
  border-color: rgba(192, 192, 192, 0.4);
  background: rgba(26, 49, 89, 0.8);
}

.cac-timeline-column.left .cac-timeline-stage.active .cac-stage-header {
  border-color: rgba(105, 179, 229, 0.5);
  background: rgba(105, 179, 229, 0.1);
}

.cac-timeline-column.right .cac-timeline-stage.active .cac-stage-header {
  border-color: rgba(192, 192, 192, 0.5);
  background: rgba(192, 192, 192, 0.1);
}

.cac-stage-info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cac-stage-number {
  width: 28px;
  height: 28px;
  background: rgba(192, 192, 192, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--cc-accent-silver);
}

.cac-timeline-column.left .cac-stage-number {
  color: var(--accent-blue);
  background: rgba(105, 179, 229, 0.15);
}

.cac-stage-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.cac-stage-icon {
  width: 22px;
  height: 22px;
  stroke: #64748b;
  fill: none;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

.cac-timeline-stage.active .cac-stage-icon {
  transform: rotate(180deg);
}

.cac-stage-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(18, 33, 61, 0.5);
  border-radius: 0 0 10px 10px;
  margin-top: -5px;
}

.cac-timeline-stage.active .cac-stage-content {
  max-height: 500px;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-top: none;
}

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

.cac-content-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: #cbd5e1;
  line-height: 1.5;
}

.cac-content-list li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  fill: none;
  stroke-width: 2;
}

.cac-stage-requirements .cac-content-list li svg { stroke: #69B3E5; }
.cac-stage-consequences .cac-content-list li svg { stroke: #f87171; }
.cac-stage-solutions .cac-content-list li svg { stroke: #34d399; }

/* Commercial services - centered single timeline + tier cards */
.cac-commercial-services-section {
  background: linear-gradient(180deg, var(--blueprint-color) 0%, #0f1a2e 100%);
}

.cac-commercial-timeline-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.cac-commercial-number {
  color: var(--cc-accent-silver) !important;
  background: rgba(192, 192, 192, 0.15) !important;
}

.cac-tier-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.cac-tier-card {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(192, 192, 192, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.cac-tier-card:hover {
  transform: translateY(-5px);
  border-color: rgba(192, 192, 192, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cac-tier-card.featured {
  border-color: rgba(192, 192, 192, 0.5);
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.8) 0%, rgba(18, 33, 61, 1) 100%);
}

.cac-tier-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--cc-accent-silver);
  color: var(--blueprint-color);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cac-tier-badge {
  display: inline-block;
  background: rgba(192, 192, 192, 0.15);
  border: 1px solid rgba(192, 192, 192, 0.3);
  color: var(--cc-accent-silver);
  padding: 0.35rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}

.cac-tier-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.cac-tier-description {
  font-size: 0.95rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* California-specific CC services with numbered cards + tiers list */
.cac-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.cac-service-card {
  position: relative;
}

.cac-service-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(192, 192, 192, 0.1);
  line-height: 1;
  margin-bottom: -1.5rem;
  font-family: 'Roboto Slab', serif;
}

.cac-service-content {
  background: linear-gradient(135deg, rgba(26, 49, 89, 0.6) 0%, rgba(18, 33, 61, 0.8) 100%);
  border: 1px solid rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
}

.cac-service-icon {
  width: 50px;
  height: 50px;
  background: rgba(192, 192, 192, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.cac-service-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--cc-accent-silver);
  stroke-width: 1.5;
  fill: none;
}

.cac-service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.cac-service-description {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.5;
}

.cac-tiers-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cac-tier-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #cbd5e1;
}

.cac-tier-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--cc-accent-silver);
  stroke-width: 2;
  fill: none;
}

.cac-tier-item strong { color: white; }

@media (max-width: 900px) {
  .cac-hero-split {
    flex-direction: column;
    min-height: auto;
  }
  .cac-center-divider { display: none; }
  .cac-timelines-container,
  .cac-tier-cards-grid,
  .cac-services-grid {
    grid-template-columns: 1fr;
  }
  .cac-tier-card.featured { order: -1; }
}

@media (max-width: 900px) {
  .co-clients-grid,
  .co-services-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .co-hero-title {
    font-size: 2.5rem;
  }
  .co-section-title {
    font-size: 2rem;
  }
  .co-protections-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .co-hero {
    padding: 7rem 1.5rem 3rem;
  }
  .co-hero-title {
    font-size: 2rem;
  }
  .co-cta-buttons {
    flex-direction: column;
  }
}

/* ---- Responsive ---- */
@media (max-width: 768px) {
  .hero-section {
    min-height: calc(100vh - 76px);
  }

  .hero-tagline {
    font-size: 2rem;
  }

  .hero-mission {
    font-size: 1.1rem;
  }

  .machinery-bg {
    opacity: 0.22;
    padding: 0 0.25rem;
  }

  .building svg {
    height: 55px !important;
  }

  .building:nth-child(2),
  .building:nth-child(3),
  .building:nth-child(5),
  .building:nth-child(6),
  .building:nth-child(8),
  .building:nth-child(9),
  .building:nth-child(10),
  .building:nth-child(11),
  .building:nth-child(12),
  .building:nth-child(13),
  .building:nth-child(14),
  .building:nth-child(15) {
    display: none;
  }

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

  .card-label {
    font-size: 2.5rem;
  }
}

/* ============================================
   Service Request Wizard (sq-)
   Mirrors live /service-questionnaire.html styling.
   ============================================ */

:root {
  --sq-accent-blue: #69B3E5;
  --sq-accent-blue-dark: #5AA6DA;
  --sq-error-red: #f87171;
}

.sq-main {
  padding: 7rem 2rem 4rem;
  min-height: 100vh;
  background-color: var(--blueprint-color);
  color: white;
  font-family: 'Source Sans Pro', 'Helvetica Neue', Arial, sans-serif;
}

.sq-wizard-container {
  max-width: 1180px;
  margin: 0 auto;
}

/* Two-column layout: form on the left, sticky summary on the right.
   Falls back to a single column on narrower viewports. */
.sq-wizard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2rem;
  align-items: start;
}

.sq-wizard-main {
  min-width: 0;
}

.sq-wizard-sidebar {
  position: sticky;
  top: 6rem;
}

.sq-wizard-sidebar .sq-service-summary {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .sq-wizard-layout {
    grid-template-columns: 1fr;
  }
  .sq-wizard-sidebar {
    position: static;
    order: -1;
    margin-bottom: 1.5rem;
  }
}

.sq-alert {
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.4);
  color: #fecaca;
  padding: 0.85rem 1rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

/* Progress Bar */
.sq-progress-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.sq-progress-bar::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(105, 179, 229, 0.2);
  z-index: 0;
}

.sq-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  flex: 1;
}

.sq-step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blueprint-color);
  border: 2px solid rgba(105, 179, 229, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: #64748b;
  transition: all 0.3s ease;
}

@media (max-width: 640px) {
  .sq-step-circle { width: 30px; height: 30px; font-size: 0.75rem; }
  .sq-step-label  { display: none; }
  .sq-progress-bar::before { top: 15px; }
}

.sq-progress-step.active .sq-step-circle {
  border-color: var(--sq-accent-blue);
  color: var(--sq-accent-blue);
  box-shadow: 0 0 15px rgba(105, 179, 229, 0.4);
}

.sq-progress-step.completed .sq-step-circle {
  background: var(--sq-accent-blue);
  border-color: var(--sq-accent-blue);
  color: white;
}

.sq-step-label {
  margin-top: 0.5rem;
  font-size: 0.8rem;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sq-progress-step.active .sq-step-label,
.sq-progress-step.completed .sq-step-label {
  color: var(--sq-accent-blue);
}

/* Step Header */
.sq-step-header {
  text-align: center;
  margin-bottom: 2rem;
}

.sq-step-title {
  font-family: 'Roboto Slab', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
}

.sq-step-subtitle {
  font-size: 1rem;
  color: #94a3b8;
}

/* Form Section */
.sq-form-section {
  background: rgba(26, 49, 89, 0.4);
  border: 1px solid rgba(105, 179, 229, 0.15);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sq-form-section-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--sq-accent-blue);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(105, 179, 229, 0.2);
}

.sq-form-section-title span {
  color: var(--sq-error-red);
}

.sq-form-group {
  margin-bottom: 1.25rem;
}

.sq-form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.5rem;
}

.sq-form-label span {
  color: var(--sq-error-red);
}

.sq-form-input,
.sq-form-textarea,
.sq-form-select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: rgba(26, 49, 89, 0.6);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s ease;
}

.sq-form-input:focus,
.sq-form-textarea:focus,
.sq-form-select:focus {
  outline: none;
  border-color: var(--sq-accent-blue);
  box-shadow: 0 0 0 3px rgba(105, 179, 229, 0.1);
}

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

.sq-form-select option,
.sq-form-select optgroup {
  background: var(--blueprint-color);
  color: white;
}

.sq-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.sq-form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.sq-form-row > .sq-form-group {
  margin-bottom: 0;
}

/* Rush toggle */
.sq-rush-toggle {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 8px;
  color: #e2e8f0;
  cursor: pointer;
}

.sq-rush-checkbox {
  width: 1.15rem;
  height: 1.15rem;
  accent-color: var(--sq-accent-blue);
}

/* License rows */
.sq-license-row {
  position: relative;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px dashed rgba(105, 179, 229, 0.15);
}

.sq-license-row:last-child {
  border-bottom: none;
}

.sq-btn-add-license {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(105, 179, 229, 0.1);
  border: 1px dashed rgba(105, 179, 229, 0.4);
  color: var(--sq-accent-blue);
  padding: 0.7rem 1.1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.75rem 0 1.25rem;
}

.sq-btn-add-license:hover {
  background: rgba(105, 179, 229, 0.2);
  border-color: var(--sq-accent-blue);
}

.sq-btn-add-license svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.sq-btn-remove-license {
  position: absolute;
  top: 0.4rem;
  right: 0;
  background: rgba(248, 113, 113, 0.1);
  border: none;
  color: #f87171;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 2;
}

.sq-btn-remove-license:hover {
  background: rgba(248, 113, 113, 0.2);
}

.sq-btn-remove-license svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* Option (radio) cards */
.sq-option-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sq-option-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(26, 49, 89, 0.6);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sq-option-card:hover {
  border-color: rgba(105, 179, 229, 0.4);
  background: rgba(26, 49, 89, 0.8);
}

.sq-option-card.selected {
  border-color: var(--sq-accent-blue);
  background: rgba(105, 179, 229, 0.1);
}

.sq-option-card input[type="radio"] {
  display: none;
}

.sq-option-check {
  width: 22px;
  height: 22px;
  border: 2px solid rgba(105, 179, 229, 0.4);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.sq-option-card.selected .sq-option-check {
  background: var(--sq-accent-blue);
  border-color: var(--sq-accent-blue);
}

.sq-option-check svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.sq-option-card.selected .sq-option-check svg {
  opacity: 1;
}

.sq-option-content {
  flex: 1;
}

.sq-option-title {
  font-weight: 600;
  color: white;
}

.sq-option-description {
  font-size: 0.85rem;
  color: #94a3b8;
  margin-top: 0.15rem;
}

.sq-option-price {
  font-weight: 700;
  color: var(--sq-accent-blue);
  font-size: 1.05rem;
}

/* Jurisdiction picker */
.sq-jurisdiction-section {
  text-align: center;
}

.sq-jurisdiction-section .sq-form-section-title {
  text-align: center;
  border-bottom: none;
  margin-bottom: 0.5rem;
}

.sq-jurisdiction-subtitle {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.sq-jurisdiction-grid {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 2.5rem;
  padding: 0.5rem 0 1.5rem;
}

.sq-jurisdiction-item {
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.sq-jurisdiction-item:hover .sq-state-flag {
  transform: scale(1.1);
  filter: brightness(1.2) drop-shadow(0 0 15px rgba(105, 179, 229, 0.5));
}

.sq-state-flag {
  width: 100px;
  height: auto;
  border-radius: 6px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  opacity: 0.85;
  background: white;
}

.sq-jurisdiction-item:hover .sq-state-flag,
.sq-jurisdiction-item.selected .sq-state-flag {
  opacity: 1;
  border-color: var(--sq-accent-blue);
}

.sq-jurisdiction-item.selected .sq-state-flag {
  filter: brightness(1.1) drop-shadow(0 0 20px rgba(105, 179, 229, 0.6));
}

.sq-jurisdiction-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.sq-jurisdiction-item:hover .sq-jurisdiction-name,
.sq-jurisdiction-item.selected .sq-jurisdiction-name {
  color: #ffffff;
}

.sq-jurisdiction-check {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  background: var(--sq-accent-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.3s ease;
}

.sq-jurisdiction-check svg {
  width: 14px;
  height: 14px;
  stroke: #ffffff;
  fill: none;
}

.sq-jurisdiction-item.selected .sq-jurisdiction-check {
  opacity: 1;
  transform: scale(1);
}

/* Service Summary (shown in details + review) */
.sq-service-summary {
  background: rgba(26, 49, 89, 0.6);
  border: 1px solid rgba(105, 179, 229, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.sq-summary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(105, 179, 229, 0.2);
}

.sq-summary-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--sq-accent-blue);
}

.sq-summary-change {
  font-size: 0.85rem;
  color: var(--sq-accent-blue);
  text-decoration: none;
}

.sq-summary-change:hover {
  text-decoration: underline;
}

.sq-summary-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0;
  font-size: 0.95rem;
}

.sq-summary-item-label {
  color: #94a3b8;
}

.sq-summary-item-value {
  color: white;
  font-weight: 500;
}

.sq-summary-addon .sq-addon-value {
  color: var(--sq-accent-blue);
}

.sq-summary-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0 0.25rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(105, 179, 229, 0.2);
  font-size: 1.1rem;
}

.sq-summary-total-label {
  color: white;
  font-weight: 700;
}

.sq-summary-total-value {
  color: var(--sq-accent-blue);
  font-weight: 700;
  font-size: 1.25rem;
}

/* Review step Add-ons */
.sq-review-addons-section {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(18, 33, 61, 0.6);
}

.sq-review-addons-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg at 50% 50%,
    transparent 0deg,
    transparent 270deg,
    var(--sq-accent-blue-dark) 300deg,
    var(--sq-accent-blue) 330deg,
    transparent 360deg
  );
  transform: translate(-50%, -50%);
  animation: sq-sectionBorderRotate 4s linear infinite;
  z-index: 0;
}

.sq-review-addons-section::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: linear-gradient(135deg, rgba(18, 33, 61, 0.98) 0%, rgba(26, 49, 89, 0.98) 100%);
  border-radius: 10px;
  z-index: 0;
}

.sq-review-addons-section > * {
  position: relative;
  z-index: 1;
}

@keyframes sq-sectionBorderRotate {
  0%   { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.sq-review-addons-header {
  text-align: center;
  margin-bottom: 1.25rem;
}

.sq-review-addons-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.25rem;
}

.sq-review-addons-header p {
  font-size: 0.9rem;
  color: #94a3b8;
}

.sq-review-addons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.sq-review-addon-card {
  position: relative;
  background: rgba(105, 179, 229, 0.08);
  border: 2px solid rgba(105, 179, 229, 0.35);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  user-select: none;
  overflow: hidden;
  transition: all 0.2s ease;
}

.sq-review-addon-card:hover {
  border-color: var(--sq-accent-blue);
  background: rgba(105, 179, 229, 0.18);
  box-shadow: 0 0 20px rgba(105, 179, 229, 0.35);
  transform: translateY(-2px);
}

.sq-review-addon-card.selected {
  border-color: var(--sq-accent-blue);
  background: rgba(105, 179, 229, 0.22);
  box-shadow: 0 0 20px rgba(105, 179, 229, 0.5);
}

.sq-review-addon-check {
  width: 24px;
  height: 24px;
  border: 2px solid var(--sq-accent-blue);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sq-review-addon-check svg {
  width: 14px;
  height: 14px;
  stroke: white;
  fill: none;
  opacity: 0;
}

.sq-review-addon-card.selected .sq-review-addon-check {
  background: var(--sq-accent-blue);
}

.sq-review-addon-card.selected .sq-review-addon-check svg {
  opacity: 1;
}

.sq-review-addon-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.sq-review-addon-info {
  display: flex;
  flex-direction: column;
}

.sq-review-addon-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
}

.sq-review-addon-social {
  font-size: 0.75rem;
  color: var(--sq-accent-blue);
  margin-top: 2px;
  font-weight: 500;
}

.sq-review-addon-price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--sq-accent-blue);
}

/* Wizard nav */
.sq-wizard-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(105, 179, 229, 0.2);
}

.sq-btn {
  padding: 0.85rem 1.75rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
}

.sq-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
}

.sq-btn-back {
  background: transparent;
  border: 1px solid rgba(105, 179, 229, 0.3);
  color: var(--sq-accent-blue);
}

.sq-btn-back:hover {
  background: rgba(105, 179, 229, 0.1);
}

.sq-btn-next {
  background: var(--sq-accent-blue);
  color: var(--blueprint-color);
}

.sq-btn-next:hover:not(:disabled) {
  background: #7ec4f0;
  transform: translateY(-2px);
}

.sq-btn-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Modal */
.sq-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.sq-modal-overlay.active {
  display: flex;
}

.sq-modal-content {
  background: linear-gradient(135deg, #1a3159 0%, #12213D 100%);
  border: 1px solid rgba(105, 179, 229, 0.3);
  border-radius: 16px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  animation: sq-modalSlide 0.3s ease;
}

@keyframes sq-modalSlide {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.sq-modal-header {
  padding: 1.75rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(105, 179, 229, 0.2);
}

.sq-modal-icon {
  width: 60px;
  height: 60px;
  background: rgba(105, 179, 229, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.sq-modal-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--sq-accent-blue);
  fill: none;
}

.sq-modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

.sq-modal-subtitle {
  font-size: 0.95rem;
  color: #94a3b8;
}

.sq-modal-body {
  padding: 1.25rem 2rem;
}

.sq-quote-section {
  margin-bottom: 1.25rem;
}

.sq-quote-section-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--sq-accent-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.sq-quote-line {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  font-size: 0.95rem;
}

.sq-quote-line-label {
  color: #cbd5e1;
}

.sq-quote-line-value {
  color: white;
  font-weight: 500;
}

.sq-quote-addon {
  color: var(--sq-accent-blue);
}

.sq-quote-total {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid rgba(105, 179, 229, 0.3);
  font-size: 1.2rem;
  font-weight: 700;
}

.sq-quote-total-label { color: white; }
.sq-quote-total-value { color: var(--sq-accent-blue); }

.sq-modal-footer {
  padding: 1.25rem 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.sq-btn-confirm {
  width: 100%;
  padding: 0.95rem;
  background: var(--sq-accent-blue);
  color: var(--blueprint-color);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sq-btn-confirm:hover {
  background: #8ac7f0;
  transform: translateY(-2px);
}

.sq-btn-cancel {
  width: 100%;
  padding: 0.65rem;
  background: transparent;
  color: #94a3b8;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
}

.sq-btn-cancel:hover {
  color: white;
}

@media (max-width: 768px) {
  .sq-form-row,
  .sq-form-row-3 {
    grid-template-columns: 1fr;
  }
  .sq-step-title {
    font-size: 1.5rem;
  }
  .sq-review-addons-grid {
    grid-template-columns: 1fr;
  }
}
