:root {
  --brand: hsl(0, 100%, 58%);
  --brand-light: hsl(0, 100%, 68%);
  --brand-hover: hsl(0, 100%, 50%);
  --brand-dark: hsl(0, 100%, 40%);
  --on-brand: hsl(0, 0%, 100%);
  --bg-900: hsl(0, 0%, 4%);
  --bg-850: hsl(0, 0%, 7%);
  --bg-800: hsl(0, 0%, 9%);
  --bg-750: hsl(0, 0%, 11%);
  --bg-700: hsl(0, 0%, 13%);
  --line-700: hsl(0, 0%, 18%);
  --line-650: hsl(0, 0%, 20%);
  --text-100: hsl(0, 0%, 100%);
  --text-200: hsl(0, 0%, 95%);
  --text-300: hsl(0, 0%, 85%);
  --text-400: hsl(0, 0%, 70%);
  --shadow-1: 0 1px 2px hsla(0, 0%, 0%, 0.3), 0 4px 8px hsla(0, 0%, 0%, 0.2), 0 8px 16px hsla(0, 0%, 0%, 0.15);
  --shadow-2: 0 2px 4px hsla(0, 0%, 0%, 0.3), 0 8px 16px hsla(0, 0%, 0%, 0.25), 0 16px 32px hsla(0, 0%, 0%, 0.2);
  --shadow-3: 0 4px 8px hsla(0, 0%, 0%, 0.3), 0 12px 24px hsla(0, 0%, 0%, 0.25), 0 24px 48px hsla(0, 0%, 0%, 0.2);
  --shadow-red: 0 4px 12px hsla(0, 100%, 58%, 0.35), 0 8px 24px hsla(0, 100%, 58%, 0.2);
  --shadow-glow: 0 0 20px hsla(0, 100%, 58%, 0.15), 0 0 40px hsla(0, 100%, 58%, 0.1);
  --shadow-glow-strong: 0 0 30px hsla(0, 100%, 58%, 0.25), 0 0 60px hsla(0, 100%, 58%, 0.15);
  --focus: 0 0 0 3px hsla(0, 100%, 58%, 0.5);
  --glass-bg: hsla(0, 0%, 8%, 0.7);
  --glass-border: hsla(0, 0%, 100%, 0.08);
  --r-4: 4px;
  --r-8: 8px;
  --r-12: 12px;
  --t-fast: .2s ease;
  --t: .3s ease;
  --t-slow: .4s ease;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-size: 100%;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg-900);
  color: var(--text-200);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 60px;
}

@media (min-width: 600px) {
  body {
    padding-top: 66px;
  }
}

body.no-scroll {
  overflow: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--text-100);
  line-height: 1.25;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(1.75rem, 5vw, 3rem);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
}

h3 {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  color: var(--text-300);
}

p {
  margin-bottom: 1rem;
  color: var(--text-300);
}

ul {
  list-style: none;
  margin-bottom: 1rem;
  padding-left: 0;
}

li {
  position: relative;
  padding-left: 1.5em;
  margin-bottom: .6rem;
  color: var(--text-300);
}

li::before {
  content: '•';
  color: var(--brand);
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
}

a {
  color: var(--brand-light);
  text-decoration: none;
  transition: color var(--t);
}

a:hover,
a:focus {
  color: var(--brand-hover);
  text-decoration: underline;
}

a:focus-visible {
  outline: var(--focus);
  border-radius: 2px;
}

main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem 3rem;
}

section {
  padding: 2.5rem 1rem;
}

@media (min-width: 600px) {
  section {
    padding: 3rem 1.5rem;
  }
}

.section-dark {
  background: linear-gradient(180deg, var(--bg-800) 0%, var(--bg-850) 100%);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  margin: 2rem 0;
  box-shadow: var(--shadow-2), inset 0 1px 0 hsla(0, 0%, 100%, 0.03);
  position: relative;
  overflow: hidden;
}

.section-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: linear-gradient(90deg, transparent, hsla(0, 100%, 58%, 0.3), transparent);
}

@media (min-width: 600px) {
  .section-dark {
    margin: 2.5rem 0;
  }
}

.section-title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  text-align: center;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
}

@media (min-width: 600px) {
  .section-title {
    margin-bottom: 2.5rem;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  background: transparent;
  backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid transparent;
  gap: 0.5rem;
  transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: hsla(0, 10%, 7%, 0.95);
  box-shadow: 0 4px 20px hsla(0, 100%, 50%, 0.15), 0 1px 3px hsla(0, 100%, 50%, 0.1);
  border-bottom-color: hsla(0, 100%, 50%, 0.2);
}

@media (min-width: 600px) {
  .site-header {
    padding: .9rem 2rem;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

@media (min-width: 400px) {
  .header-actions {
    gap: 8px;
  }
}

@media (min-width: 600px) {
  .header-actions {
    gap: 10px;
  }
}

.brand {
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
  flex: 1;
}

@media (min-width: 400px) {
  .brand {
    gap: .8rem;
  }
}

.brand a {
  display: flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  line-height: 1;
  min-width: 0;
}

@media (min-width: 400px) {
  .brand a {
    gap: .8rem;
  }
}

.brand a:focus-visible {
  outline: var(--focus);
  border-radius: var(--r-4);
}

.brand img {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  transition: transform var(--t), filter var(--t);
}

@media (min-width: 400px) {
  .brand img {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 600px) {
  .brand img {
    width: 40px;
    height: 40px;
  }
}

.brand a:hover img {
  transform: scale(1.05);
  filter: drop-shadow(0 0 8px hsla(0, 100%, 58%, 0.5));
}

.brand span,
.brand-text {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--brand-light);
  letter-spacing: .3px;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (min-width: 400px) {

  .brand span,
  .brand-text {
    font-size: 1.05rem;
    letter-spacing: .5px;
  }
}

@media (min-width: 600px) {

  .brand span,
  .brand-text {
    font-size: clamp(1.15rem, 2.2vw, 1.6rem);
    letter-spacing: .6px;
  }
}

.icon-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--bg-850);
  outline: none;
  border: 1px solid var(--line-650);
  transition: transform .12s ease, background .12s ease;
  cursor: pointer;
  text-decoration: none;
  flex-shrink: 0;
}

@media (min-width: 400px) {
  .icon-btn {
    width: 38px;
    height: 38px;
    border-radius: 11px;
  }
}

@media (min-width: 600px) {
  .icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }
}

.icon-btn:hover,
.icon-btn:focus {
  transform: translateY(-1px);
  background: var(--bg-700);
}

.icon-btn:active {
  transform: translateY(0);
}

.icon-btn svg,
.icon-btn img {
  width: 18px;
  height: 18px;
  display: block;
}

@media (min-width: 400px) {

  .icon-btn svg,
  .icon-btn img {
    width: 20px;
    height: 20px;
  }
}

@media (min-width: 600px) {

  .icon-btn svg,
  .icon-btn img {
    width: 22px;
    height: 22px;
  }
}

.icon-btn:focus-visible {
  outline: var(--focus);
  outline-offset: 2px;
}

/* ===== NAVIGATION ===== */
#primary-nav {
  position: fixed;
  right: 8px;
  top: 60px;
  background: var(--bg-850);
  border: 1px solid var(--line-700);
  border-radius: 14px;
  padding: 12px;
  z-index: 100;
  box-shadow: var(--shadow-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  max-width: calc(100vw - 16px);
}

@media (min-width: 600px) {
  #primary-nav {
    right: 12px;
    top: 70px;
  }
}

#primary-nav[data-open="true"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#primary-nav .close-btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: var(--text-200);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s ease;
}

#primary-nav .close-btn:hover {
  color: var(--brand);
}

#primary-nav .nav-links-wrapper {
  display: flex;
  flex-direction: column;
  gap: 6px;
  list-style: none;
  margin: 20px 0 0 0;
  padding: 0;
  min-width: 160px;
}

@media (min-width: 400px) {
  #primary-nav .nav-links-wrapper {
    min-width: 180px;
  }
}

#primary-nav .nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--text-200);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-size: 1rem;
  font-family: inherit;
  text-align: left;
  background: none;
  border: none;
  width: 100%;
  cursor: pointer;
}

#primary-nav .nav-link:hover {
  background: var(--bg-800);
  color: var(--brand-light);
}

#primary-nav .has-submenu>button.nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#primary-nav .mobile-submenu {
  display: block;
  list-style: none;
  padding-left: 1.25rem;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

#primary-nav .mobile-submenu.open {
  max-height: 500px;
  transition: max-height 0.3s ease-in;
}

#primary-nav .mobile-submenu li {
  margin: 0;
  padding: 0;
}

#primary-nav .mobile-submenu li::before {
  display: none;
}

#primary-nav .mobile-submenu a {
  display: block;
  padding: 8px 10px;
  font-size: 0.95rem;
  color: var(--text-300);
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

#primary-nav .mobile-submenu a:hover {
  background: var(--bg-800);
  color: var(--brand-light);
}

/* Hours Popup */
#hoursPopup {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  right: 1rem;
  left: 1rem;
  background: var(--bg-800);
  color: var(--text-200);
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--line-650);
  box-shadow: var(--shadow-2);
  font-size: .95rem;
  line-height: 1.5;
  min-width: 200px;
  z-index: 10002;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-5px);
  transition: opacity var(--t), visibility var(--t), transform var(--t);
}

@media (min-width: 400px) {
  #hoursPopup {
    left: auto;
    right: 1rem;
    width: auto;
    white-space: nowrap;
  }
}

#hoursPopup.open,
#hoursPopup.visible {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#hoursPopup strong {
  color: var(--brand-light);
}

/* ===== GRID SYSTEM ===== */
.grid-3col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 600px) {
  .grid-3col {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1000px) {
  .grid-3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

/* ===== CARDS ===== */
.card,
.service-card,
.review-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--shadow-1);
  transition: transform var(--t), box-shadow var(--t), background-color var(--t), border-color var(--t);
  position: relative;
}

@media (min-width: 600px) {

  .card,
  .service-card,
  .review-card {
    padding: 1.8rem 1.5rem;
  }
}

.card:hover,
.service-card:hover,
.review-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: var(--shadow-2), var(--shadow-glow);
  background: var(--bg-800);
  border-color: hsla(0, 100%, 58%, 0.5);
}

.service-card h3 {
  margin-top: 0;
  color: var(--brand-light);
}

.service-card p {
  font-size: .95rem;
  color: var(--text-300);
}

.service-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-weight: 600;
  color: var(--brand-light);
  text-decoration: none;
  transition: color var(--t);
  border-bottom: 2px solid var(--brand);
  padding-bottom: 2px;
}

.service-link:hover {
  color: var(--brand-hover);
  text-decoration: none;
  border-bottom-color: var(--brand-hover);
}

.service-features {
  margin: 1rem 0;
}

.service-features li {
  font-size: 0.9rem;
}

/* Process Numbers */
.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: var(--on-brand);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  box-shadow: var(--shadow-1), var(--shadow-glow);
  border: 2px solid hsla(0, 0%, 100%, 0.1);
  transition: transform var(--t), box-shadow var(--t);
}

.card:hover .process-number {
  transform: scale(1.1);
  box-shadow: var(--shadow-2), var(--shadow-glow-strong);
}

/* ===== BUTTONS ===== */
.btn,
.hero-cta {
  background: var(--brand);
  color: var(--on-brand);
  padding: 0.85rem 1.4rem;
  font-weight: 700;
  border-radius: 999px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  text-align: center;
  font-family: inherit;
  box-shadow: var(--shadow-1);
  transition: background var(--t), transform var(--t), box-shadow var(--t);
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
}

@media (min-width: 600px) {

  .btn,
  .hero-cta {
    padding: 1rem 1.6rem;
    font-size: 1.05rem;
  }
}

.btn:hover,
.hero-cta:hover {
  background: var(--brand-dark);
  color: var(--on-brand);
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-2), var(--shadow-glow-strong);
  text-decoration: none;
}

.btn:active,
.hero-cta:active {
  transform: none;
  box-shadow: none;
}

.btn.btn-large {
  padding: 1rem 1.75rem;
  font-size: 1.1rem;
}

@media (min-width: 600px) {
  .btn.btn-large {
    padding: 1.1rem 2rem;
    font-size: 1.2rem;
  }
}

.btn.btn-secondary,
.hero-cta.secondary {
  background: transparent;
  color: var(--brand-light);
  border: 2px solid var(--brand);
}

.btn.btn-secondary:hover,
.hero-cta.secondary:hover {
  background: var(--brand);
  color: var(--on-brand);
}

.cta-icon {
  font-size: 1.1em;
}

/* ===== HERO SECTION ===== */
.hero-wrapper {
  padding: 2rem 0.5rem 1.5rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .hero-wrapper {
    padding: 3rem 1rem 2rem;
  }
}

@media (min-width: 1000px) {
  .hero-wrapper {
    padding: 4rem 2rem 3rem;
  }
}

.hero-text {
  max-width: 900px;
  margin: 0 auto;
}

.hero-text h1 {
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-cta-primary {
  margin: 1.5rem 0;
}

.hero-cta-primary .btn {
  animation: subtle-pulse 3s infinite;
}

@keyframes subtle-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 hsla(0, 100%, 58%, 0.4);
  }

  50% {
    box-shadow: 0 0 0 10px hsla(0, 100%, 58%, 0);
  }
}

.cta-subtext {
  font-size: 0.85rem;
  color: var(--text-400);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.hero-media-wrap {
  max-width: 100%;
  margin: 1.5rem auto;
  position: relative;
}

@media (min-width: 600px) {
  .hero-media-wrap {
    margin: 2rem auto;
  }
}

.hero-media-wrap figure {
  margin: 0;
}

.hero-media-wrap img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  background: var(--bg-800);
  border-radius: 12px;
  box-shadow: var(--shadow-3), var(--shadow-glow);
  aspect-ratio: 960 / 720;
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  transition: box-shadow var(--t), transform var(--t);
}

.hero-media-wrap img:hover {
  box-shadow: var(--shadow-3), var(--shadow-glow-strong);
  transform: scale(1.005);
}

@media (min-width: 600px) {
  .hero-media-wrap img {
    border-radius: 14px;
  }
}

.hero-media-wrap figcaption {
  font-size: .75rem;
  color: var(--text-400);
  margin-top: .6rem;
  text-align: right;
  padding-right: .5rem;
}

@media (min-width: 600px) {
  .hero-media-wrap figcaption {
    font-size: .8rem;
    margin-top: .8rem;
  }
}

.hero-subtitle {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-300);
  margin-bottom: 1.5rem;
}

@media (min-width: 600px) {
  .hero-subtitle {
    font-size: 1.05rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 450px) {
  .hero-cta-group {
    flex-direction: row;
    gap: 1rem;
  }
}

/* Trust Signals */
.trust-signals {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 500px) {
  .trust-signals {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: var(--glass-bg);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  box-shadow: var(--shadow-1), inset 0 1px 0 hsla(0, 0%, 100%, 0.05);
  color: var(--text-200);
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  transition: all var(--t);
}

.trust-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .trust-item {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    gap: 0.65rem;
  }
}

.trust-item img {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (min-width: 600px) {
  .trust-item img {
    width: 18px;
    height: 18px;
  }
}

.trust-item:hover {
  background: hsla(0, 0%, 12%, 0.8);
  border-color: hsla(0, 100%, 58%, 0.5);
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--shadow-2), var(--shadow-glow);
}

/* ===== SERVICES CTA ===== */
.services-cta {
  max-width: 900px;
  margin: 1.5rem auto 0;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
}

.services-cta h3 {
  margin-bottom: .25rem;
  color: var(--text-100);
}

.services-cta p {
  margin-bottom: .75rem;
}

.cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1rem;
}

@media (min-width: 450px) {
  .cta-buttons {
    flex-direction: row;
    justify-content: center;
    gap: 1rem;
  }
}

/* ===== REVIEWS SECTION ===== */
.summary {
  max-width: 800px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: var(--text-300);
  font-size: 0.95rem;
  padding: 0 1rem;
}

@media (min-width: 600px) {
  .summary {
    font-size: 1.05rem;
  }
}

/* FIXED: Swiper container positioning */
#reviews-swiper {
  padding-bottom: 2.5rem !important;
  margin-bottom: 1rem;
}

#reviews-swiper .swiper-wrapper {
  align-items: stretch;
}

#reviews-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  padding: 0.75rem;
}

@media (min-width: 600px) {
  #reviews-swiper .swiper-slide {
    padding: 1rem;
  }
}

.review-card {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  min-height: 180px;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

@media (min-width: 600px) {
  .review-card {
    padding: 1.25rem 1.5rem;
    min-height: 200px;
    border-radius: 18px;
  }
}

.review-text {
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 0.75rem;
  color: var(--text-200);
}

@media (min-width: 600px) {
  .review-text {
    font-size: 0.98rem;
  }
}

/* FIXED: Show 5 stars next to name */
.review-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-300);
}

@media (min-width: 600px) {
  .review-meta {
    font-size: 0.9rem;
  }
}

.review-stars {
  color: var(--brand);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.reviews-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ===== GALLERY ===== */
/* FIXED: Gallery swiper padding for dots */
#gallery-swiper {
  padding-bottom: 2.5rem !important;
  margin-bottom: 1rem;
}

.gallery-fig {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 100%;
}

.gallery-fig img {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: var(--bg-800);
  border-radius: 10px;
  box-shadow: var(--shadow-2);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--t);
}

@media (min-width: 600px) {
  .gallery-fig img {
    border-radius: 12px;
  }
}

.gallery-fig:hover img {
  transform: scale(1.03);
  box-shadow: var(--shadow-3), var(--shadow-glow-strong);
}

.gallery-fig figcaption {
  font-size: .75rem;
  color: var(--text-400);
  text-align: center;
  padding: .3rem .5rem;
}

@media (min-width: 600px) {
  .gallery-fig figcaption {
    font-size: .8rem;
  }
}

/* Gallery images (direct in swiper) */
.gallery-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
  background: var(--bg-800);
  border-radius: 12px;
  box-shadow: var(--shadow-2);
  border: 1px solid hsla(0, 0%, 100%, 0.05);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow var(--t);
  cursor: pointer;
}

.gallery-image:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-3), var(--shadow-glow-strong);
}

/* ===== SWIPER CONTROLS (FIXED POSITIONING) ===== */
.swiper {
  width: 100%;
  position: relative;
}

.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* FIXED: Pagination dots positioning */
.swiper-pagination {
  position: absolute;
  bottom: 0 !important;
  left: 50%;
  transform: translateX(-50%);
  width: auto !important;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.swiper-pagination-bullet {
  background: var(--text-400);
  opacity: .8;
  width: 8px;
  height: 8px;
  margin: 0 !important;
}

.swiper-pagination-bullet-active {
  background: var(--brand);
  opacity: 1;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--brand);
  --swiper-navigation-size: 24px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  transition: all var(--t);
  border: 1px solid var(--glass-border);
  box-shadow: var(--shadow-1);
}

@media (min-width: 600px) {

  .swiper-button-next,
  .swiper-button-prev {
    --swiper-navigation-size: 30px;
    width: 44px;
    height: 44px;
  }
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: var(--brand);
  color: var(--on-brand);
  transform: scale(1.1);
  box-shadow: var(--shadow-2), var(--shadow-glow);
}

/* ===== SERVICE AREAS ===== */
#service-areas .summary {
  margin-bottom: 2rem;
}

.areas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.area-column {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
}

@media (min-width: 600px) {
  .area-column {
    padding: 1.5rem;
  }
}

.area-column h3 {
  color: var(--brand-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
  text-align: center;
}

@media (min-width: 600px) {
  .area-column h3 {
    font-size: 1.2rem;
  }
}

.area-list {
  margin: 0;
}

.area-list li {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  padding-left: 0;
}

.area-list li::before {
  display: none;
}

.area-list li strong {
  color: var(--text-100);
}

.area-note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-400);
  margin-top: 1.5rem;
  padding: 0 1rem;
}

/* ===== FAQ SECTION (FIXED ACCORDION) ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-tile {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  overflow: hidden;
  transition: border-color var(--t);
}

.faq-tile.active {
  border-color: hsla(0, 100%, 58%, 0.5);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--text-200);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: color var(--t), background-color var(--t);
}

@media (min-width: 600px) {
  .faq-q {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }
}

.faq-q:hover {
  color: var(--brand-light);
  background: hsla(0, 100%, 58%, 0.05);
}

.faq-emoji {
  font-size: 1.2rem;
  flex-shrink: 0;
}

.faq-ind {
  margin-left: auto;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
}

.faq-ind::before,
.faq-ind::after {
  content: '';
  position: absolute;
  background: var(--brand);
  transition: transform var(--t);
}

.faq-ind::before {
  width: 12px;
  height: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-ind::after {
  width: 2px;
  height: 12px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-q[aria-expanded="true"] .faq-ind::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-slow) ease-out;
}

.faq-a[aria-hidden="false"] {
  max-height: 1000px;
  transition: max-height var(--t-slow) ease-in;
}

.faq-a>div {
  padding: 0 1.25rem 1.25rem 3rem;
  color: var(--text-300);
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 600px) {
  .faq-a>div {
    padding: 0 1.5rem 1.5rem 3.5rem;
    font-size: 0.95rem;
  }
}

.faq-a ul {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}

.faq-a p {
  margin-bottom: 0.75rem;
}

.faq-a p:last-child {
  margin-bottom: 0;
}

/* ===== FOOTER (FIXED - CLEAN VERSION) ===== */
.site-footer {
  background: var(--bg-850);
  color: var(--text-400);
  padding: 1.5rem 1rem 1rem;
  text-align: center;
  font-size: .85rem;
  border-top: 1px solid var(--line-650);
  margin-top: 2rem;
  background: linear-gradient(180deg, var(--bg-850) 0%, var(--bg-900) 100%);
}

@media (min-width: 600px) {
  .site-footer {
    padding: 1.75rem 1rem 1.25rem;
    font-size: .9rem;
    margin-top: 2.5rem;
  }
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 500px) {
  .footer-top {
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
  }
}

.footer-logo-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-rating {
  color: var(--brand);
  font-weight: 600;
  font-size: 0.95rem;
}

.footer-rating small {
  color: var(--text-400);
  font-weight: 400;
}

.footer-nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-nav a {
  color: var(--text-300);
  text-decoration: none;
  transition: color var(--t);
  padding: 0.25rem 0.5rem;
}

.footer-nav a:hover {
  color: var(--brand-light);
  text-decoration: none;
}

.footer-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--text-400);
}

@media (min-width: 500px) {
  .footer-meta {
    font-size: 0.9rem;
  }
}

.footer-meta a {
  color: var(--brand-light);
}

/* Section Divider */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-650) 20%, var(--line-650) 80%, transparent);
  margin: 2rem auto;
  max-width: 800px;
  position: relative;
}

.section-divider::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6px;
  height: 6px;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: var(--shadow-glow);
}

/* ===== UTILITY CLASSES ===== */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-md {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

*:focus-visible {
  outline: 3px solid hsla(0, 100%, 58%, 0.5);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== AI CHAT WIDGET (Enhanced with Navigation & Persistence) ===== */
.dp-chat-launch {
  position: fixed;
  bottom: 20px;
  right: 14px;
  z-index: 99998;
  background: var(--brand);
  color: var(--on-brand);
  border: none;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  cursor: pointer;
  box-shadow: var(--shadow-red), 0 0 0 0 hsla(0, 100%, 58%, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 700;
  transition: all 0.3s ease;
  animation: dp-pulse 2s ease-in-out infinite;
}

@keyframes dp-pulse {

  0%,
  100% {
    box-shadow: var(--shadow-red), 0 0 0 0 hsla(0, 100%, 58%, 0.4);
  }

  50% {
    box-shadow: var(--shadow-red), 0 0 0 8px hsla(0, 100%, 58%, 0);
  }
}

.dp-chat-launch.active {
  animation: none;
  background: var(--brand-dark);
}

@media (min-width: 600px) {
  .dp-chat-launch {
    bottom: 18px;
    right: 18px;
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
}

.dp-chat-launch:hover {
  background: var(--brand-dark);
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-2);
  animation: none;
}

.dp-chat-panel {
  position: fixed;
  bottom: 82px;
  right: 10px;
  left: 10px;
  width: auto;
  max-height: 75vh;
  background: var(--bg-800);
  color: var(--text-100);
  border: 1px solid var(--line-650);
  border-radius: 16px;
  box-shadow: 0 10px 40px hsla(0, 0%, 0%, 0.4), 0 0 0 1px hsla(0, 100%, 58%, 0.1);
  display: flex;
  flex-direction: column;
  font-family: system-ui, -apple-system, sans-serif;
  overflow: hidden;
  z-index: 99999;
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.dp-chat-panel.open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

@media (min-width: 480px) {
  .dp-chat-panel {
    bottom: 84px;
    right: 18px;
    left: auto;
    width: 380px;
    max-height: 520px;
  }
}

/* Header with status indicator */
.dp-chat-header {
  padding: 12px 14px;
  background: linear-gradient(135deg, var(--bg-850) 0%, var(--bg-800) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-700);
}

.dp-chat-header-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dp-chat-header-info span:first-child {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-100);
}

.dp-chat-status {
  font-size: 11px;
  color: hsl(120, 60%, 50%);
  display: flex;
  align-items: center;
  gap: 4px;
}

.dp-chat-status::before {
  content: '';
  width: 6px;
  height: 6px;
  background: hsl(120, 60%, 50%);
  border-radius: 50%;
  animation: dp-status-pulse 2s ease infinite;
}

@keyframes dp-status-pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.dp-chat-header-actions {
  display: flex;
  gap: 4px;
}

.dp-chat-header button {
  background: transparent;
  color: var(--text-300);
  border: none;
  cursor: pointer;
  font-size: 18px;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.dp-chat-header button:hover {
  background: hsla(0, 0%, 100%, 0.1);
  color: var(--text-100);
}

/* Quick action buttons */
.dp-quick-actions {
  display: flex;
  gap: 8px;
  padding: 10px 12px;
  background: var(--bg-850);
  border-bottom: 1px solid var(--line-700);
}

.dp-quick-action {
  flex: 1;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  color: var(--text-200);
  font-size: 12px;
  font-weight: 500;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.dp-quick-action:hover {
  background: var(--bg-700);
  border-color: var(--brand);
  color: var(--text-100);
  transform: translateY(-1px);
}

/* Chat body */
.dp-chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  line-height: 1.5;
  min-height: 180px;
  max-height: 280px;
  scroll-behavior: smooth;
}

.dp-chat-body::-webkit-scrollbar {
  width: 6px;
}

.dp-chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.dp-chat-body::-webkit-scrollbar-thumb {
  background: var(--line-650);
  border-radius: 3px;
}

.dp-msg {
  padding: 10px 12px;
  border-radius: 12px;
  max-width: 88%;
  word-break: break-word;
  animation: dp-slideIn 0.25s ease;
}

@keyframes dp-slideIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dp-msg.user {
  align-self: flex-end;
  background: var(--brand);
  color: var(--on-brand);
  border-bottom-right-radius: 4px;
}

.dp-msg.ai {
  align-self: flex-start;
  background: var(--bg-750);
  color: var(--text-100);
  border: 1px solid var(--line-650);
  border-bottom-left-radius: 4px;
}

.dp-msg.system {
  align-self: center;
  background: hsla(200, 50%, 25%, 0.3);
  color: hsl(200, 70%, 70%);
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
}

.dp-msg.error {
  align-self: center;
  background: hsl(0, 35%, 18%);
  color: hsl(0, 100%, 90%);
  border: 1px solid hsl(0, 35%, 25%);
  font-size: 12px;
  max-width: 95%;
  padding: 8px 12px;
}

/* Navigation links in messages */
.dp-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 12px;
  margin-top: 8px;
  background: var(--brand);
  color: var(--on-brand);
  text-decoration: none;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.dp-nav-link:hover {
  background: var(--brand-dark);
  transform: translateX(2px);
  text-decoration: none;
  color: var(--on-brand);
}

/* Suggestions */
.dp-suggestion-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 8px 12px;
  background: var(--bg-850);
  border-top: 1px solid var(--line-700);
}

.dp-suggestion {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  color: var(--text-300);
  font-size: 11px;
  padding: 5px 10px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.dp-suggestion:hover {
  background: var(--bg-700);
  color: var(--text-100);
  border-color: var(--brand);
}

/* Footer input */
.dp-chat-footer {
  padding: 10px 12px;
  border-top: 1px solid var(--line-700);
  background: var(--bg-900);
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.dp-chat-footer textarea {
  flex: 1;
  resize: none;
  min-height: 38px;
  max-height: 100px;
  padding: 9px 12px;
  background: var(--bg-850);
  border: 1px solid var(--line-650);
  border-radius: 10px;
  color: var(--text-200);
  font-size: 14px;
  font-family: inherit;
  line-height: 1.4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dp-chat-footer textarea::placeholder {
  color: var(--text-400);
  font-size: 13px;
}

.dp-chat-footer textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px hsla(0, 100%, 58%, 0.12);
}

.dp-chat-footer button {
  background: var(--brand);
  border: none;
  color: var(--on-brand);
  font-weight: 600;
  padding: 9px 14px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.dp-chat-footer button:hover:not(:disabled) {
  background: var(--brand-dark);
  transform: translateY(-1px);
}

.dp-chat-footer button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* Thinking animation */
.dp-thinking {
  display: inline-block;
  color: var(--text-300);
}

.dp-thinking::after {
  content: '...';
  animation: dp-dots 1.5s steps(4, end) infinite;
}

@keyframes dp-dots {

  0%,
  20% {
    content: '.';
  }

  40% {
    content: '..';
  }

  60%,
  100% {
    content: '...';
  }
}

.dp-thinking-msg {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 6px 0 !important;
}

/* ===== STICKY CTA BAR ===== */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  z-index: 100;
  box-shadow: 0 -1px 8px hsla(0, 0%, 0%, 0.25);
  background: var(--bg-900);
  border-top: 1px solid var(--line-650);
}

@media (min-width: 768px) {
  .sticky-cta-bar {
    display: none;
  }
}

.sticky-cta {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  transition: all var(--t);
}

.sticky-cta-call {
  background: var(--brand);
  color: var(--on-brand);
}

.sticky-cta-call:hover {
  background: var(--brand-dark);
  color: var(--on-brand);
  text-decoration: none;
}

.sticky-cta-text {
  background: var(--bg-800);
  color: var(--text-100);
}

.sticky-cta-text:hover {
  background: var(--bg-750);
  color: var(--brand-light);
  text-decoration: none;
}

/* Adjust chat button position for thin sticky bar on mobile */
@media (max-width: 767px) {

  .pd-chat-launch,
  .dp-chat-launch {
    bottom: 50px;
  }

  .pd-chat-panel,
  .dp-chat-panel {
    bottom: 110px;
    max-height: calc(100vh - 150px);
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {

  .pd-chat-launch,
  .pd-chat-panel,
  .dp-chat-launch,
  .dp-chat-panel,
  .hero-cta-primary .btn {
    animation: none;
    transition: none;
  }

  .swiper,
  .swiper * {
    transition: none !important;
    animation: none !important;
  }
}

/* ===== HOME PAGE STYLES ===== */
/* Transparent Sticky Header (Home Page) */
/* Home page header styles now unified with main .site-header */

/* ===== NEW HOME HERO SECTION ===== */
.home-hero-section {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: -60px;
  padding-top: 60px;
}

@media (min-width: 600px) {
  .home-hero-section {
    margin-top: -66px;
    padding-top: 66px;
  }
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      hsla(0, 0%, 0%, 0.4) 0%,
      hsla(0, 0%, 0%, 0.6) 50%,
      hsla(0, 0%, 0%, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 2rem 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background: hsla(0, 100%, 50%, 0.15);
  border: 1px solid hsla(0, 100%, 50%, 0.3);
  border-radius: 50px;
  color: var(--brand-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 0 2px 20px hsla(0, 0%, 0%, 0.5);
}

.hero-highlight {
  color: var(--brand-light);
  display: inline-block;
}

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: hsla(0, 0%, 100%, 0.9);
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 480px) {
  .hero-cta-row {
    flex-direction: row;
    gap: 1.25rem;
  }
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 700;
  min-width: 200px;
  box-shadow: 0 4px 20px hsla(0, 0%, 0%, 0.3);
}

.btn-hero.btn-primary {
  background: var(--brand);
  box-shadow: 0 4px 20px hsla(0, 100%, 50%, 0.4);
}

.btn-hero.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px hsla(0, 100%, 50%, 0.5);
}

.btn-hero.btn-secondary {
  background: hsla(0, 0%, 100%, 0.1);
  border: 2px solid hsla(0, 0%, 100%, 0.3);
  color: #fff;
  backdrop-filter: blur(10px);
}

.btn-hero.btn-secondary:hover {
  background: hsla(0, 0%, 100%, 0.2);
  border-color: hsla(0, 0%, 100%, 0.5);
  transform: translateY(-2px);
}

.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: hsla(0, 0%, 0%, 0.4);
  border: 1px solid hsla(0, 0%, 100%, 0.1);
  border-radius: 50px;
  backdrop-filter: blur(10px);
}

.trust-badge img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.trust-badge span {
  font-size: 0.85rem;
  color: hsla(0, 0%, 100%, 0.9);
  font-weight: 500;
  white-space: nowrap;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: hsla(0, 0%, 100%, 0.6);
  font-size: 0.8rem;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll-hint svg {
  opacity: 0.6;
}

@keyframes bounce {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(8px);
  }
}

@media (max-width: 600px) {
  .hero-scroll-hint {
    display: none;
  }
}

/* ===== HOME GALLERY SECTION ===== */
.home-gallery-section {
  padding: 4rem 1.5rem;
  background: var(--bg-900);
}

.home-gallery-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 600px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--r-12);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item-featured {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: 1;
}

@media (max-width: 599px) {
  .gallery-item-featured {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16/9;
  }
}

.gallery-item .gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.3s ease;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.08);
  filter: brightness(1.1);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      hsla(0, 0%, 0%, 0.7) 0%,
      hsla(0, 0%, 0%, 0) 50%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.75rem;
  background: var(--brand);
  border-radius: 4px;
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Legacy Home Hero - keeping for backward compatibility */
.home-hero {
  background: linear-gradient(135deg, var(--bg-900) 0%, hsl(0, 15%, 8%) 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.home-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, hsla(0, 100%, 50%, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.home-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  color: var(--text-100);
  position: relative;
}

.home-hero .tagline {
  font-size: 1.2rem;
  color: var(--brand-light);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.home-hero .hero-description {
  max-width: 600px;
  margin: 0 auto 2rem;
  color: var(--text-300);
  line-height: 1.7;
  font-size: 1rem;
}

/* Stats Banner */
.stats-banner {
  background: var(--bg-850);
  border-top: 1px solid var(--line-700);
  border-bottom: 1px solid var(--line-700);
  padding: 2rem 1.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

.stat-box .stat-number {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--brand);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-box .stat-label {
  font-size: 0.8rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Service Cards with Photos */
.service-hub-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .service-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-hub-card {
  background: var(--bg-800);
  border: 1px solid var(--line-700);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.service-hub-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px hsla(0, 0%, 0%, 0.3);
}

.service-card-image {
  width: 100%;
  height: 140px;
  object-fit: cover;
  background: var(--bg-700);
}

.service-card-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-hub-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--text-100);
}

.service-hub-card .service-description {
  font-size: 0.9rem;
  color: var(--text-300);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.5;
}

.service-hub-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.service-hub-card .card-link:hover {
  gap: 0.75rem;
  text-decoration: none;
}

/* Process Timeline */
.process-timeline {
  display: grid;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.timeline-step {
  background: var(--bg-800);
  border: 1px solid var(--line-700);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    font-size: 1.25rem;
    z-index: 1;
  }
}

.timeline-step .step-number {
  width: 40px;
  height: 40px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 auto 1rem;
}

.timeline-step h4 {
  font-size: 1rem;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.9rem;
  color: var(--text-400);
}

/* Value Grid */
.value-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 500px) {
  .value-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .value-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.value-item {
  text-align: center;
  padding: 1.25rem 1rem;
}

.value-item .value-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.value-item h4 {
  color: var(--text-100);
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.value-item p {
  color: var(--text-400);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Reviews Section Background */
.reviews-section {
  background: var(--bg-850);
}

/* Toned Down Final CTA */
.final-cta {
  background: var(--bg-800);
  border-top: 1px solid var(--line-700);
  border-bottom: 1px solid var(--line-700);
  padding: 3rem 1.5rem;
  text-align: center;
}

.final-cta h2 {
  color: var(--text-100);
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 0.75rem;
}

.final-cta p {
  color: var(--text-300);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

/* Service Areas Improved */
.areas-section {
  background: var(--bg-900);
}

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

.nav-dropdown-btn {
  background: none;
  border: none;
  color: var(--text-200);
  font-size: 1rem;
  cursor: pointer;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: inherit;
  width: 100%;
  text-align: left;
  border-radius: 8px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-dropdown-btn:hover {
  background: var(--bg-800);
  color: var(--brand-light);
}

.nav-dropdown-content {
  display: none;
  padding-left: 1rem;
}

.nav-dropdown.open .nav-dropdown-content {
  display: block;
}

/* Section padding and backgrounds */
.section-padding {
  padding: 3rem 1.5rem;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 4rem 2rem;
  }
}

.bg-dark {
  background: var(--bg-850);
}

.section-subtitle {
  text-align: center;
  color: var(--text-400);
  margin-bottom: 2rem;
  font-size: 1rem;
}

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

/* ===== OWNER SECTION (About Page) ===== */
.owners-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.owner-figure {
  flex: 1;
  min-width: 280px;
  text-align: center;
}

.owner-image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 12px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
}

.owner-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--brand);
  margin-top: 1rem;
}

.owner-bio {
  font-size: 0.95rem;
  color: var(--text-300);
}

/* ===== MAP EMBED ===== */
.map-embed {
  border-radius: 12px;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
}

.map-embed iframe {
  display: block;
  width: 100%;
}

/* ===== WOOD SIDING PAGE STYLES ===== */

/* Hero Section */
.wood-hero {
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .wood-hero {
    padding: 4rem 2rem 3rem;
  }
}

.wood-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--text-100) 0%, hsl(30, 60%, 60%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.wood-hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-300);
  max-width: 750px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

/* Problem Statement */
.problem-callout {
  max-width: 800px;
  margin: 0 auto 1.5rem;
  padding: 1.25rem;
  background: hsla(0, 60%, 40%, 0.1);
  border: 1px solid hsla(0, 60%, 50%, 0.3);
  border-radius: var(--r-12);
  text-align: left;
}

.problem-callout strong {
  color: hsl(0, 70%, 70%);
}

.problem-callout p {
  margin: 0;
  color: var(--text-200);
  font-size: 0.95rem;
}

/* Trust Badges - Horizontal Scroll */
.trust-badges {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  margin: 0 -1rem;
  padding-left: 1rem;
  padding-right: 1rem;
  scrollbar-width: none;
}

.trust-badges::-webkit-scrollbar {
  display: none;
}

@media (min-width: 700px) {
  .trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    overflow-x: visible;
    margin: 0;
    padding: 0.5rem 0 1rem;
  }
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.9rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-200);
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.trust-badge:hover {
  border-color: hsl(30, 60%, 50%);
  transform: translateY(-2px);
}

.trust-badge .icon {
  font-size: 1rem;
}

.trust-badge strong {
  color: hsl(30, 70%, 65%);
}

/* Wood Species Selector */
.species-selector {
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.species-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
}

.species-tabs::-webkit-scrollbar {
  display: none;
}

.species-tab {
  padding: 0.6rem 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-300);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.species-tab:hover,
.species-tab[aria-selected="true"] {
  background: hsl(30, 50%, 45%);
  border-color: hsl(30, 50%, 45%);
  color: white;
}

.species-tab[aria-selected="true"] {
  box-shadow: 0 4px 12px hsla(30, 60%, 40%, 0.3);
}

.species-content {
  display: none;
  animation: fadeSlide 0.3s ease;
}

.species-content.active {
  display: block;
}

@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.species-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .species-card {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.species-card h3 {
  font-size: 1.2rem;
  color: hsl(30, 70%, 65%);
  margin-bottom: 0.5rem;
}

.species-card .characteristics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.75rem 0;
}

.species-card .char-tag {
  padding: 0.3rem 0.6rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--text-300);
}

.species-card .char-tag.warning {
  background: hsla(45, 100%, 50%, 0.1);
  border-color: hsla(45, 100%, 50%, 0.3);
  color: hsl(45, 100%, 70%);
}

.species-card .char-tag.good {
  background: hsla(120, 60%, 40%, 0.1);
  border-color: hsla(120, 60%, 40%, 0.3);
  color: hsl(120, 60%, 70%);
}

.species-card .primer-rec {
  padding: 0.75rem 1rem;
  background: hsla(200, 50%, 40%, 0.1);
  border-left: 3px solid hsl(200, 60%, 50%);
  border-radius: 0 var(--r-8) var(--r-8) 0;
  margin: 0.75rem 0;
}

.species-card .primer-rec strong {
  color: hsl(200, 70%, 70%);
}

.species-card .longevity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  background: hsla(120, 60%, 40%, 0.15);
  border: 1px solid hsla(120, 60%, 40%, 0.3);
  border-radius: var(--r-8);
  font-size: 0.9rem;
  color: hsl(120, 60%, 70%);
  margin-top: 0.75rem;
}

/* Paint vs Stain Comparison */
.comparison-section {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.comparison-btn {
  padding: 0.75rem 1.5rem;
  background: var(--bg-750);
  border: 2px solid var(--line-650);
  border-radius: var(--r-8);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-300);
  cursor: pointer;
  transition: all 0.2s ease;
}

.comparison-btn[aria-selected="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--on-brand);
}

.comparison-btn:hover:not([aria-selected="true"]) {
  border-color: var(--brand);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.comparison-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
}

.comparison-card.paint {
  border-top: 3px solid var(--brand);
}

.comparison-card.stain {
  border-top: 3px solid hsl(30, 60%, 50%);
}

.comparison-card h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.comparison-card.paint h4 {
  color: var(--brand-light);
}

.comparison-card.stain h4 {
  color: hsl(30, 70%, 65%);
}

.comparison-card .stat {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line-700);
  font-size: 0.9rem;
}

.comparison-card .stat:last-child {
  border-bottom: none;
}

.comparison-card .stat-label {
  color: var(--text-400);
}

.comparison-card .stat-value {
  color: var(--text-100);
  font-weight: 600;
}

.comparison-card .best-for {
  margin-top: 1rem;
  padding: 0.75rem;
  background: var(--bg-800);
  border-radius: var(--r-8);
}

.comparison-card .best-for h5 {
  font-size: 0.8rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.comparison-card .best-for ul {
  margin: 0;
  font-size: 0.85rem;
}

.comparison-card .best-for li {
  padding-left: 0;
  margin-bottom: 0.3rem;
}

/* Failure Causes Section */
.failure-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .failure-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .failure-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.failure-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  transition: all 0.25s ease;
}

.failure-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
}

.failure-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.failure-card .problem {
  color: hsl(0, 70%, 70%);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.failure-card .cause {
  font-size: 0.85rem;
  color: var(--text-300);
  margin-bottom: 0.75rem;
}

.failure-card .solution {
  padding: 0.5rem 0.75rem;
  background: hsla(120, 60%, 40%, 0.1);
  border-left: 2px solid hsl(120, 60%, 50%);
  border-radius: 0 var(--r-8) var(--r-8) 0;
  font-size: 0.8rem;
  color: hsl(120, 60%, 70%);
}

/* Contractor Checklist */
.checklist-section {
  max-width: 900px;
  margin: 0 auto;
}

.checklist-intro {
  text-align: center;
  margin-bottom: 2rem;
}

.checklist-intro p {
  color: var(--text-300);
  max-width: 650px;
  margin: 0 auto;
}

.checklist-grid {
  display: grid;
  gap: 0.75rem;
}

.checklist-item {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  overflow: hidden;
  transition: all 0.2s ease;
}

.checklist-item:hover {
  border-color: hsla(30, 60%, 50%, 0.5);
}

.checklist-q {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  color: var(--text-100);
  font-size: 0.95rem;
  font-weight: 500;
}

.checklist-q .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: hsl(30, 50%, 45%);
  color: white;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}

.checklist-q .arrow {
  margin-left: auto;
  color: var(--text-400);
  transition: transform 0.2s ease;
}

.checklist-item[data-open="true"] .checklist-q .arrow {
  transform: rotate(180deg);
}

.checklist-answer {
  display: none;
  padding: 0 1.25rem 1.25rem;
  padding-left: calc(1.25rem + 28px + 1rem);
}

.checklist-item[data-open="true"] .checklist-answer {
  display: block;
  animation: fadeSlide 0.25s ease;
}

.checklist-answer .good-answer,
.checklist-answer .bad-answer {
  padding: 0.75rem 1rem;
  border-radius: var(--r-8);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.checklist-answer .good-answer {
  background: hsla(120, 60%, 40%, 0.1);
  border: 1px solid hsla(120, 60%, 40%, 0.3);
}

.checklist-answer .good-answer strong {
  color: hsl(120, 60%, 70%);
}

.checklist-answer .bad-answer {
  background: hsla(0, 60%, 40%, 0.1);
  border: 1px solid hsla(0, 60%, 40%, 0.3);
}

.checklist-answer .bad-answer strong {
  color: hsl(0, 70%, 70%);
}

.checklist-answer .why {
  font-size: 0.85rem;
  color: var(--text-400);
  padding-left: 0.75rem;
  border-left: 2px solid var(--line-650);
}

/* Longevity Calculator */
.longevity-section {
  max-width: 800px;
  margin: 0 auto;
}

.longevity-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-12);
  border: 1px solid var(--line-650);
}

.longevity-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 500px;
}

.longevity-table th,
.longevity-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-650);
}

.longevity-table th {
  background: var(--bg-800);
  color: hsl(30, 70%, 65%);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.longevity-table td {
  color: var(--text-300);
}

.longevity-table tr:last-child td {
  border-bottom: none;
}

.longevity-table tr:hover td {
  background: var(--bg-800);
}

.years-badge {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.years-badge.excellent {
  background: hsla(120, 60%, 40%, 0.2);
  color: hsl(120, 60%, 70%);
}

.years-badge.good {
  background: hsla(45, 100%, 50%, 0.15);
  color: hsl(45, 100%, 70%);
}

.years-badge.poor {
  background: hsla(0, 60%, 40%, 0.2);
  color: hsl(0, 70%, 70%);
}

/* FAQ Section - Wood */
.faq-wood {
  max-width: 900px;
  margin: 0 auto;
}

.faq-wood .faq-tile {
  margin-bottom: 0.5rem;
}

.faq-wood .faq-q {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.faq-wood .faq-a>div {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
}

.faq-highlight {
  background: hsla(30, 60%, 50%, 0.08);
  border-left: 3px solid hsl(30, 60%, 50%);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--r-8) var(--r-8) 0;
  margin: 0.75rem 0;
}

.faq-highlight strong {
  color: hsl(30, 70%, 65%);
}

.quick-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.6rem 0.9rem;
  background: hsla(120, 60%, 40%, 0.1);
  border: 1px solid hsla(120, 60%, 40%, 0.3);
  border-radius: var(--r-8);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.quick-answer .icon {
  flex-shrink: 0;
}

.quick-answer strong {
  color: hsl(120, 60%, 70%);
}

/* Testimonials */
.testimonial-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .testimonial-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3rem;
  color: hsl(30, 60%, 50%);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card blockquote {
  font-size: 0.9rem;
  color: var(--text-200);
  font-style: italic;
  margin: 0 0 1rem;
  padding-top: 1rem;
}

.testimonial-card cite {
  display: block;
  font-size: 0.8rem;
  color: var(--text-400);
  font-style: normal;
}

.testimonial-card .years {
  font-size: 0.7rem;
  color: hsl(30, 70%, 65%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Box */
.cta-box {
  background: linear-gradient(135deg, var(--bg-800) 0%, var(--bg-850) 100%);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 2rem 1.5rem;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-box h3 {
  font-size: 1.3rem;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: var(--text-300);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.cta-box .cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* ===== DECK & FENCE PAGE STYLES ===== */

/* Hero Section */
.deck-hero {
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .deck-hero {
    padding: 4rem 2rem 3rem;
  }
}

.deck-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--text-100) 0%, hsl(25, 70%, 55%) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.deck-hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--text-300);
  max-width: 750px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

/* Comparison Table */
.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-12);
  border: 1px solid var(--line-650);
  margin-bottom: 1.5rem;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 700px;
}

.comparison-table th,
.comparison-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-650);
}

.comparison-table th {
  background: var(--bg-800);
  color: var(--text-200);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.comparison-table th:first-child {
  color: hsl(25, 80%, 60%);
}

.comparison-table td {
  color: var(--text-300);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover td {
  background: var(--bg-800);
}

.comparison-table .highlight-cell {
  background: hsla(120, 60%, 40%, 0.1);
  color: hsl(120, 60%, 70%);
  font-weight: 600;
}

.comparison-table .warning-cell {
  background: hsla(0, 60%, 40%, 0.1);
  color: hsl(0, 70%, 70%);
}

/* Stain Type Cards */
.stain-types {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 700px) {
  .stain-types {
    grid-template-columns: repeat(3, 1fr);
  }
}

.stain-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.2s ease;
}

.stain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.stain-card.clear::before {
  background: linear-gradient(90deg, hsl(40, 70%, 50%), hsl(40, 70%, 70%));
}

.stain-card.semi::before {
  background: linear-gradient(90deg, hsl(25, 70%, 45%), hsl(25, 70%, 60%));
}

.stain-card.solid::before {
  background: linear-gradient(90deg, hsl(15, 60%, 35%), hsl(15, 60%, 50%));
}

.stain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
}

.stain-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.stain-card.clear h4 {
  color: hsl(40, 80%, 65%);
}

.stain-card.semi h4 {
  color: hsl(25, 80%, 60%);
}

.stain-card.solid h4 {
  color: hsl(15, 70%, 60%);
}

.stain-card .opacity {
  font-size: 0.75rem;
  color: var(--text-400);
  margin-bottom: 0.75rem;
}

.stain-card .lifespan {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-200);
  margin-bottom: 0.75rem;
}

.stain-card p {
  font-size: 0.85rem;
  color: var(--text-300);
  margin: 0 0 0.75rem;
}

.stain-card .best-for {
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem;
  background: hsla(120, 60%, 40%, 0.1);
  border-left: 2px solid hsl(120, 60%, 50%);
  border-radius: 0 var(--r-8) var(--r-8) 0;
  color: hsl(120, 60%, 70%);
}

/* Maintenance Schedule */
.maintenance-timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-700);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-year {
  flex-shrink: 0;
  width: 80px;
  padding: 0.5rem 0.75rem;
  background: hsl(25, 50%, 40%);
  color: white;
  border-radius: var(--r-8);
  font-weight: 700;
  font-size: 0.85rem;
  text-align: center;
}

.timeline-content h4 {
  font-size: 0.95rem;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-400);
  margin: 0;
}

/* Recoat Signs */
.signs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .signs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.sign-card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
}

.sign-card .icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.sign-card h5 {
  font-size: 0.9rem;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.sign-card p {
  font-size: 0.8rem;
  color: var(--text-400);
  margin: 0;
}

/* Fence Section */
.fence-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .fence-comparison {
    grid-template-columns: 1fr 1fr;
  }
}

.fence-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
}

.fence-card.stain {
  border-top: 3px solid hsl(120, 50%, 45%);
}

.fence-card.paint {
  border-top: 3px solid hsl(0, 50%, 50%);
}

.fence-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.fence-card.stain h4 {
  color: hsl(120, 60%, 65%);
}

.fence-card.paint h4 {
  color: hsl(0, 60%, 65%);
}

.fence-card ul {
  margin: 0;
}

.fence-card li {
  padding-left: 0;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

/* Rot Warning */
.rot-warning {
  max-width: 800px;
  margin: 2rem auto 0;
  padding: 1.25rem;
  background: hsla(45, 100%, 50%, 0.08);
  border: 1px solid hsla(45, 100%, 50%, 0.3);
  border-left: 4px solid hsl(45, 100%, 50%);
  border-radius: 0 var(--r-12) var(--r-12) 0;
}

.rot-warning h5 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(45, 100%, 70%);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.rot-warning p {
  color: var(--text-300);
  font-size: 0.9rem;
  margin: 0;
}

/* FAQ Section - Deck */
.faq-deck {
  max-width: 900px;
  margin: 0 auto;
}

.faq-deck .faq-tile {
  margin-bottom: 0.5rem;
}

.faq-deck .faq-q {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.faq-deck .faq-a>div {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
}

/* ===== DRYWALL / SHEETROCK REPAIR PAGE STYLES ===== */

/* Drywall Hero */
.drywall-hero {
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .drywall-hero {
    padding: 4rem 2rem 3rem;
  }
}

.drywall-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-100) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.drywall-hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-300);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-200);
  transition: all var(--t);
}

.stat-pill:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.stat-pill strong {
  color: var(--brand-light);
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}

.pricing-table th,
.pricing-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-650);
}

.pricing-table th {
  color: var(--brand-light);
  font-weight: 600;
  background: var(--bg-800);
  font-size: 0.85rem;
}

.pricing-table td {
  color: var(--text-300);
}

.pricing-table tr:hover td {
  background: var(--bg-800);
}

.pricing-table .price {
  color: var(--text-100);
  font-weight: 600;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 800px) {
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.process-step {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  transition: all var(--t);
}

.process-step:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
}

.process-step .step-num {
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.process-step h4 {
  font-size: 0.95rem;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.8rem;
  color: var(--text-300);
  margin: 0;
}

/* Warning Box */
.warning-box {
  background: hsla(45, 100%, 50%, 0.1);
  border: 1px solid hsla(45, 100%, 50%, 0.3);
  border-left: 4px solid hsl(45, 100%, 50%);
  border-radius: var(--r-8);
  padding: 1rem 1.25rem;
  margin: 1.5rem 0;
}

.warning-box h4 {
  color: hsl(45, 100%, 70%);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.warning-box p {
  font-size: 0.9rem;
  color: var(--text-300);
  margin: 0;
}

/* FAQ Enhanced */
.faq-enhanced {
  max-width: 900px;
  margin: 0 auto;
}

.faq-enhanced .faq-tile {
  margin-bottom: 0.75rem;
}

.faq-enhanced .faq-q {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.faq-enhanced .faq-a>div {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

/* Texture Gallery */
.texture-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .texture-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.texture-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1rem;
  text-align: center;
  transition: all var(--t);
}

.texture-card:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
  transform: translateY(-2px);
}

.texture-card .texture-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 0.75rem;
  background: var(--bg-800);
  border-radius: var(--r-8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.texture-card h4 {
  font-size: 0.9rem;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.texture-card p {
  font-size: 0.75rem;
  color: var(--text-400);
  margin: 0;
}

/* Timeline Cards */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.timeline-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--t);
}

.timeline-card:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
  transform: translateY(-3px);
}

.timeline-card .scope {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-400);
  margin-bottom: 0.5rem;
}

.timeline-card .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-light);
  margin-bottom: 0.25rem;
}

.timeline-card .detail {
  font-size: 0.85rem;
  color: var(--text-300);
}

/* Insurance Box */
.insurance-box {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  max-width: 800px;
  margin: 2rem auto 0;
}

.insurance-box h4 {
  color: var(--brand-light);
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.insurance-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .insurance-steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

.insurance-step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.insurance-step .num {
  width: 24px;
  height: 24px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

.insurance-step p {
  font-size: 0.9rem;
  color: var(--text-300);
  margin: 0;
}

/* ===== COMMERCIAL PAINTING PAGE STYLES ===== */

/* Commercial Hero */
.commercial-hero {
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .commercial-hero {
    padding: 4rem 2rem 3rem;
  }
}

.commercial-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 0.75rem;
  background: linear-gradient(135deg, var(--text-100) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.commercial-hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: var(--text-300);
  max-width: 700px;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

/* Property Type Selector */
.property-selector {
  max-width: 1000px;
  margin: 0 auto 2rem;
}

.property-tabs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.5rem 0;
  margin-bottom: 1.5rem;
  scrollbar-width: none;
}

.property-tabs::-webkit-scrollbar {
  display: none;
}

.property-tab {
  padding: 0.6rem 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-300);
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.property-tab:hover,
.property-tab[aria-selected="true"] {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--on-brand);
}

.property-tab[aria-selected="true"] {
  box-shadow: 0 4px 12px hsla(0, 100%, 58%, 0.3);
}

.property-content {
  display: none;
  animation: fadeSlide 0.3s ease;
}

.property-content.active {
  display: block;
}

.property-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}

@media (min-width: 700px) {
  .property-card {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2rem;
  }
}

.property-card h3 {
  font-size: 1.2rem;
  color: var(--brand-light);
  margin-bottom: 0.5rem;
}

.property-card .challenge {
  padding: 0.75rem 1rem;
  background: hsla(45, 100%, 50%, 0.08);
  border-left: 3px solid hsl(45, 100%, 50%);
  border-radius: 0 var(--r-8) var(--r-8) 0;
  margin: 0.75rem 0;
}

.property-card .challenge strong {
  color: hsl(45, 100%, 70%);
}

.property-card .solution {
  padding: 0.75rem 1rem;
  background: hsla(120, 60%, 40%, 0.08);
  border-left: 3px solid hsl(120, 60%, 50%);
  border-radius: 0 var(--r-8) var(--r-8) 0;
}

.property-card .solution strong {
  color: hsl(120, 60%, 70%);
}

/* Scheduling Options Grid */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .schedule-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.schedule-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  text-align: center;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.schedule-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

.schedule-card:hover::before {
  transform: scaleX(1);
}

.schedule-card:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px hsla(0, 0%, 0%, 0.2);
}

.schedule-card .icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.schedule-card h4 {
  font-size: 1rem;
  color: var(--brand-light);
  margin-bottom: 0.5rem;
}

.schedule-card p {
  font-size: 0.85rem;
  color: var(--text-300);
  margin: 0 0 0.75rem;
}

.schedule-card .tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.7rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Insurance Documentation Section */
.insurance-section {
  max-width: 900px;
  margin: 0 auto;
}

.doc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .doc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.doc-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  transition: all 0.2s ease;
}

.doc-card:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
}

.doc-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: var(--brand-light);
  margin-bottom: 0.5rem;
}

.doc-card .coverage {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.doc-card p {
  font-size: 0.85rem;
  color: var(--text-300);
  margin: 0;
}

.doc-card .turnaround {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.75rem;
  padding: 0.35rem 0.75rem;
  background: hsla(120, 60%, 40%, 0.15);
  border: 1px solid hsla(120, 60%, 40%, 0.3);
  border-radius: 999px;
  font-size: 0.75rem;
  color: hsl(120, 60%, 70%);
}

/* VOC Compliance Table */
.voc-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--r-12);
  border: 1px solid var(--line-650);
}

.voc-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 500px;
}

.voc-table th,
.voc-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-650);
}

.voc-table th {
  background: var(--bg-800);
  color: var(--brand-light);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.voc-table td {
  color: var(--text-300);
}

.voc-table tr:last-child td {
  border-bottom: none;
}

.voc-table tr:hover td {
  background: var(--bg-800);
}

.voc-badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  background: hsla(120, 60%, 40%, 0.2);
  border: 1px solid hsla(120, 60%, 40%, 0.3);
  border-radius: 4px;
  font-size: 0.75rem;
  color: hsl(120, 60%, 70%);
  font-weight: 600;
}

/* FAQ Commercial */
.faq-commercial {
  max-width: 900px;
  margin: 0 auto;
}

.faq-commercial .faq-tile {
  margin-bottom: 0.5rem;
}

.faq-commercial .faq-q {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.faq-commercial .faq-a>div {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9rem;
}

/* Scope Grid */
.scope-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .scope-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.scope-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
}

.scope-card.do h4 {
  color: hsl(120, 60%, 70%);
}

.scope-card.dont h4 {
  color: hsl(0, 70%, 70%);
}

.scope-card h4 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  margin-bottom: 0.75rem;
}

.scope-card ul {
  margin: 0;
}

.scope-card li {
  font-size: 0.85rem;
  padding-left: 0;
  margin-bottom: 0.4rem;
}

/* =========================================================
   INTERIOR PAINTING PAGE STYLES
   ========================================================= */

.interior-hero {
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .interior-hero {
    padding: 4rem 2rem 3rem;
  }
}

.interior-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-100) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.interior-hero .tagline {
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  color: var(--text-300);
  max-width: 650px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* Hero Stats Pills */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-200);
  transition: all var(--t);
}

.stat-pill:hover {
  border-color: var(--brand);
  transform: translateY(-2px);
}

.stat-pill strong {
  color: var(--brand-light);
}

/* Timeline Grid */
.timeline-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .timeline-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.timeline-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--t);
}

.timeline-card:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
  transform: translateY(-3px);
}

.timeline-card .scope {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-400);
  margin-bottom: 0.5rem;
}

.timeline-card .time {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-light);
  margin-bottom: 0.25rem;
}

.timeline-card .detail {
  font-size: 0.85rem;
  color: var(--text-300);
}

/* Protection Grid */
.protection-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 600px) {
  .protection-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

.protection-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-8);
}

.protection-item .icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--brand-light);
}

.protection-item h4 {
  font-size: 0.95rem;
  color: var(--text-100);
  margin-bottom: 0.25rem;
}

.protection-item p {
  font-size: 0.85rem;
  color: var(--text-300);
  margin: 0;
}

/* Color Steps */
.color-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 700px) {
  .color-steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.color-step {
  text-align: center;
  padding: 1.25rem 1rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  transition: all var(--t);
}

.color-step:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
}

.color-step .step-num {
  width: 32px;
  height: 32px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.color-step h4 {
  font-size: 0.9rem;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.color-step p {
  font-size: 0.8rem;
  color: var(--text-300);
  margin: 0;
}

/* Paint Grid */
.paint-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 500px) {
  .paint-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .paint-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.paint-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--t);
}

.paint-card:hover {
  transform: translateY(-3px);
  border-color: hsla(0, 100%, 58%, 0.4);
}

.paint-card .surface {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-400);
  margin-bottom: 0.5rem;
}

.paint-card .product {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-light);
  margin-bottom: 0.25rem;
}

.paint-card .sheen {
  font-size: 0.8rem;
  color: var(--text-200);
  margin-bottom: 0.5rem;
}

.paint-card .why {
  font-size: 0.8rem;
  color: var(--text-300);
  margin: 0;
}

/* FAQ Enhanced */
.faq-enhanced {
  max-width: 900px;
  margin: 0 auto;
}

.faq-enhanced .faq-tile {
  margin-bottom: 0.75rem;
}

.faq-enhanced .faq-q {
  padding: 1rem 1.25rem;
  font-size: 0.95rem;
}

.faq-enhanced .faq-a>div {
  padding: 0 1.25rem 1.25rem 1.25rem;
}

.faq-highlight {
  background: hsla(0, 100%, 58%, 0.08);
  border-left: 3px solid var(--brand);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--r-8) var(--r-8) 0;
  margin: 0.75rem 0;
  font-size: 0.9rem;
}

.faq-highlight strong {
  color: var(--brand-light);
}

.quick-answer {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.75rem;
  background: hsla(120, 60%, 40%, 0.1);
  border: 1px solid hsla(120, 60%, 40%, 0.3);
  border-radius: var(--r-8);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.quick-answer .icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.quick-answer strong {
  color: hsl(120, 60%, 70%);
}

/* Sheen Table */
.sheen-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.85rem;
}

.sheen-table th,
.sheen-table td {
  padding: 0.6rem 0.75rem;
  text-align: left;
  border-bottom: 1px solid var(--line-650);
}

.sheen-table th {
  color: var(--brand-light);
  font-weight: 600;
  background: var(--bg-800);
}

.sheen-table td {
  color: var(--text-300);
}

.sheen-table tr:hover td {
  background: var(--bg-800);
}

/* Compact Gallery */
.gallery-compact {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .gallery-compact {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

.gallery-compact img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-8);
  border: 1px solid var(--line-650);
  transition: all var(--t);
}

.gallery-compact img:hover {
  border-color: var(--brand);
  transform: scale(1.02);
}

/* Pricing Note */
.pricing-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 1.25rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
}

.pricing-note h4 {
  color: var(--brand-light);
  margin-bottom: 0.75rem;
  font-size: 1rem;
}

.pricing-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1rem;
}

.pricing-col h5 {
  font-size: 0.8rem;
  color: var(--text-400);
  margin-bottom: 0.5rem;
}

.pricing-col ul {
  margin: 0;
}

.pricing-col li {
  font-size: 0.85rem;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
}

/* =========================================================
   EXTERIOR PAINTING HUB PAGE STYLES
   ========================================================= */

.hub-hero {
  background: linear-gradient(135deg, var(--bg-900) 0%, hsl(0, 15%, 8%) 100%);
  padding: 3rem 1.5rem 4rem;
  text-align: center;
}

.hub-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-100) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hub-hero .tagline {
  font-size: 1.25rem;
  color: var(--text-200);
  margin-bottom: 2rem;
  font-weight: 500;
}

.hub-hero .problem-statement {
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text-300);
  line-height: 1.7;
}

.hub-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

/* Problem/Solution Section */
.problem-solution {
  display: grid;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .problem-solution {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.problem-box,
.solution-box {
  padding: 2rem;
  border-radius: 16px;
}

.problem-box {
  background: linear-gradient(135deg, hsl(0, 25%, 12%) 0%, hsl(0, 20%, 10%) 100%);
  border: 1px solid hsl(0, 30%, 20%);
}

.solution-box {
  background: linear-gradient(135deg, hsl(120, 20%, 12%) 0%, hsl(120, 15%, 10%) 100%);
  border: 1px solid hsl(120, 25%, 20%);
}

.problem-box h3,
.solution-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.problem-box h3 {
  color: hsl(0, 70%, 65%);
}

.solution-box h3 {
  color: hsl(120, 50%, 55%);
}

.problem-box ul,
.solution-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.problem-box li,
.solution-box li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-300);
  font-size: 0.95rem;
}

.problem-box li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: hsl(0, 60%, 55%);
}

.solution-box li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: hsl(120, 50%, 50%);
}

/* Service Hub Grid */
.service-hub-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .service-hub-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .service-hub-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1100px) {
  .service-hub-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-hub-card {
  background: var(--bg-800);
  border: 1px solid var(--line-700);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.service-hub-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-hub-card:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px hsla(0, 0%, 0%, 0.3);
}

.service-hub-card:hover::before {
  transform: scaleX(1);
}

.service-hub-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.service-hub-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--text-100);
}

.service-hub-card .pain-point {
  font-size: 0.85rem;
  color: hsl(0, 50%, 60%);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.service-hub-card .solution-brief {
  font-size: 0.9rem;
  color: var(--text-300);
  margin-bottom: 1rem;
  flex: 1;
}

.service-hub-card .lifespan-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: hsla(120, 40%, 25%, 0.3);
  border: 1px solid hsla(120, 40%, 35%, 0.5);
  border-radius: 20px;
  font-size: 0.75rem;
  color: hsl(120, 50%, 60%);
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-hub-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-light);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.service-hub-card .card-link:hover {
  gap: 0.75rem;
}

/* Diagnostic Section */
.diagnostic-section {
  background: var(--bg-850);
  border-radius: 20px;
  padding: 2.5rem 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.diagnostic-section h2 {
  text-align: center;
  margin-bottom: 0.5rem;
}

.diagnostic-subtitle {
  text-align: center;
  color: var(--text-300);
  margin-bottom: 2rem;
}

.symptom-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 600px) {
  .symptom-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.symptom-card {
  background: var(--bg-800);
  border: 1px solid var(--line-700);
  border-radius: 12px;
  padding: 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.symptom-card:hover {
  border-color: var(--brand);
  background: var(--bg-750);
}

.symptom-card .symptom-title {
  font-weight: 600;
  color: var(--text-100);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.symptom-card .symptom-list {
  font-size: 0.85rem;
  color: var(--text-400);
  margin-bottom: 0.75rem;
}

.symptom-card .symptom-route {
  font-size: 0.85rem;
  color: var(--brand-light);
  font-weight: 600;
}

.symptom-card .symptom-route a {
  color: inherit;
  text-decoration: none;
}

.symptom-card .symptom-route a:hover {
  text-decoration: underline;
}

/* Process Timeline (Exterior) */
.process-timeline {
  display: grid;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .process-timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0.5rem;
  }
}

.timeline-step {
  background: var(--bg-800);
  border: 1px solid var(--line-700);
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  position: relative;
}

@media (min-width: 768px) {
  .timeline-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--brand);
    font-size: 1.25rem;
    z-index: 1;
  }
}

.timeline-step .step-number {
  width: 36px;
  height: 36px;
  background: var(--brand);
  color: var(--on-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 0.75rem;
}

.timeline-step h4 {
  font-size: 0.9rem;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.timeline-step p {
  font-size: 0.8rem;
  color: var(--text-400);
}

/* Lifespan Table */
.lifespan-table-wrapper {
  overflow-x: auto;
  margin: 0 -1rem;
  padding: 0 1rem;
}

.lifespan-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  border-collapse: collapse;
  background: var(--bg-800);
  border-radius: 12px;
  overflow: hidden;
}

.lifespan-table th,
.lifespan-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line-700);
}

.lifespan-table th {
  background: var(--bg-850);
  color: var(--text-200);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lifespan-table td {
  color: var(--text-300);
  font-size: 0.95rem;
}

.lifespan-table tr:last-child td {
  border-bottom: none;
}

.lifespan-table .surface-name {
  color: var(--text-100);
  font-weight: 500;
}

.lifespan-table .lifespan-value {
  color: hsl(120, 50%, 55%);
  font-weight: 600;
}

/* Why Grid */
.why-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 600px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.why-item {
  text-align: center;
  padding: 1.5rem;
}

.why-item .why-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.why-item h4 {
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.why-item p {
  color: var(--text-400);
  font-size: 0.9rem;
}

/* Service Links Section */
.service-links-section {
  background: var(--bg-850);
  border-radius: 16px;
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.service-links-section h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: var(--text-200);
}

.service-links-grid {
  display: grid;
  gap: 0.75rem;
}

@media (min-width: 500px) {
  .service-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .service-links-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.service-links-grid a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--bg-800);
  border: 1px solid var(--line-700);
  border-radius: 8px;
  color: var(--text-200);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}

.service-links-grid a:hover {
  background: var(--bg-750);
  border-color: var(--brand);
  color: var(--text-100);
}

/* =========================================================
   CABINET PAINTING PAGE STYLES
   ========================================================= */

.cabinet-hero {
  padding: 2.5rem 1rem 2rem;
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .cabinet-hero {
    padding: 4rem 2rem 3rem;
  }
}

.cabinet-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--text-100) 0%, var(--brand-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cabinet-hero .tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--text-300);
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
}

/* Cabinet Process Timeline */
.cabinet-timeline .timeline-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}

@media (min-width: 600px) {
  .cabinet-timeline .timeline-item {
    gap: 2rem;
  }
}

.timeline-marker {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.timeline-day {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--on-brand);
  font-weight: 700;
  box-shadow: var(--shadow-red);
}

.timeline-day span:first-child {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
}

.timeline-day span:last-child {
  font-size: 1.5rem;
  line-height: 1;
}

.timeline-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(180deg, var(--brand) 0%, var(--line-650) 100%);
  min-height: 40px;
}

.timeline-content {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.25rem;
  transition: all var(--t);
}

@media (min-width: 600px) {
  .timeline-content {
    padding: 1.5rem;
  }
}

.timeline-content:hover {
  border-color: hsla(0, 100%, 58%, 0.4);
  transform: translateX(4px);
}

.timeline-content h3 {
  color: var(--brand-light);
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.timeline-content p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text-300);
}

.timeline-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: hsla(120, 60%, 40%, 0.2);
  border: 1px solid hsla(120, 60%, 40%, 0.4);
  border-radius: 999px;
  font-size: 0.75rem;
  color: hsl(120, 60%, 70%);
  margin-top: 0.75rem;
}

/* Comparison Section */
.comparison-section {
  max-width: 1000px;
  margin: 0 auto;
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

.comparison-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  transition: all var(--t);
}

.comparison-card.highlight {
  border-color: var(--brand);
  box-shadow: 0 0 30px hsla(0, 100%, 58%, 0.15);
}

.comparison-card h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.comparison-card h3 .icon {
  font-size: 1.5rem;
}

.comparison-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-100);
  margin-bottom: 0.5rem;
}

.comparison-card .price-note {
  font-size: 0.85rem;
  color: var(--text-400);
  margin-bottom: 1rem;
}

.comparison-list {
  margin: 0;
}

.comparison-list li {
  padding-left: 1.75rem;
  margin-bottom: 0.6rem;
  position: relative;
}

.comparison-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.comparison-card.highlight .comparison-list li::before {
  background: var(--brand);
}

.comparison-card:not(.highlight) .comparison-list li::before {
  background: var(--text-400);
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 500px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-card {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: all var(--t);
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: hsla(0, 100%, 58%, 0.4);
}

.product-card .product-name {
  color: var(--brand-light);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.product-card .product-type {
  font-size: 0.8rem;
  color: var(--text-400);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

.product-card .product-desc {
  font-size: 0.9rem;
  color: var(--text-300);
  margin: 0;
}

/* Inline Lists for FAQs */
.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0;
}

.inline-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.75rem;
  background: var(--bg-800);
  border: 1px solid var(--line-650);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-300);
}

.inline-list span.good {
  border-color: hsla(120, 60%, 40%, 0.4);
  color: hsl(120, 60%, 70%);
}

.inline-list span.bad {
  border-color: hsla(0, 60%, 40%, 0.4);
  color: hsl(0, 60%, 70%);
}

/* Warranty Section */
.warranty-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.warranty-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.warranty-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1.5rem 2rem;
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  min-width: 160px;
  transition: all var(--t);
}

.warranty-badge:hover {
  border-color: var(--brand);
  transform: translateY(-4px);
}

.warranty-badge .years {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--brand-light);
  line-height: 1;
}

.warranty-badge .label {
  font-size: 0.85rem;
  color: var(--text-300);
  margin-top: 0.5rem;
}

/* Honesty Box */
.honesty-box {
  background: var(--bg-750);
  border: 1px solid var(--line-650);
  border-radius: var(--r-12);
  padding: 1.5rem;
  margin: 2rem 0;
}

.honesty-box h4 {
  color: var(--brand-light);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.honesty-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 600px) {
  .honesty-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.honesty-list li {
  padding-left: 0;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.honesty-list li::before {
  display: none;
}

.honesty-list .icon {
  flex-shrink: 0;
  font-size: 1rem;
}

/* Mobile CTA bar adjustment for cabinet page */
@media (max-width: 599px) {
  [data-service="cabinet"] main {
    padding-bottom: 80px;
  }
}

/* ===== FAQ ACCORDION STYLES ===== */
.faq-item {
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 1.25rem;
  margin: 0;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
  position: relative;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1.25rem;
  line-height: 1.6;
  display: none;
}

.faq-answer p {
  margin: 0;
}

.gallery-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-tab {
  padding: 0.6rem 1.2rem;
  border: 2px solid var(--accent, #c41e1e);
  background: transparent;
  color: var(--text-primary, #fff);
  border-radius: 2rem;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.gallery-tab:hover {
  background: rgba(196, 30, 30, 0.15);
}

.gallery-tab.active {
  background: var(--accent, #c41e1e);
  color: #fff;
}

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

#gallery .gallery-grid[style*="display: none"] {
  display: none !important;
}

@media (max-width: 600px) {
  .gallery-tab {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}