/* ============================================================
   BASE STYLESHEET — Integrity Construction
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --color-primary:       #26262B;
  --color-primary-dark:  #1A1A1F;
  --color-primary-light: rgba(38, 38, 43, 0.08);
  --color-primary-rgb:   38, 38, 43;
  --color-secondary:     #E0BB00;
  --color-secondary-dark: #C9A600;
  --color-secondary-light: rgba(224, 187, 0, 0.12);
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F7F7F7;
  --color-text:          #26262B;
  --color-text-muted:    #6B6B6B;
  --color-heading:       #26262B;
  --color-border:        #E5E5E5;
  --color-card-bg:       #FFFFFF;
  --font-heading:        'Inter', sans-serif;
  --font-body:           'Inter', sans-serif;
  --font-size-base:      16px;
  --radius:              10px;
  --radius-lg:           16px;
  --shadow:              0 4px 20px rgba(0,0,0,0.08);
  --shadow-hover:        0 8px 32px rgba(0,0,0,0.16);
  --transition:          all 0.3s ease;
  --max-width:           1200px;
}

/* --- Base Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.7;
  color: var(--color-text);
  background: var(--color-bg);
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }
p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-heading);
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); }
h4 { font-size: clamp(1rem, 2vw, 1.2rem); }

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.bg-alt { background: var(--color-bg-alt); }
.text-center { text-align: center; }

/* Section header — centered */
.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 3rem;
}
/* Section header — left-aligned */
.section-header-left {
  text-align: left;
  max-width: 740px;
  margin: 0 0 3rem;
}
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.6rem;
}
.section-sub {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  line-height: 1.7;
  text-align: inherit;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  border-color: var(--color-secondary);
}
.btn-primary:hover {
  background: var(--color-secondary-dark);
  border-color: var(--color-secondary-dark);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(224, 187, 0, 0.40);
}
.btn-secondary {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-secondary:hover {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
  border-color: var(--color-secondary);
  transform: translateY(-2px);
}
/* Hero/CTA secondary — white on dark backgrounds */
.hero .btn-secondary,
.cta-section .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover,
.cta-section .btn-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}
.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-sm { padding: 9px 18px; font-size: 0.875rem; }

/* --- Site Header & Navbar --- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  border-bottom: 3px solid transparent;
  box-shadow: none;
  transition: background-color 0.6s ease, border-bottom 0.6s ease, box-shadow 0.3s ease;
}

/* Transparent state — white text over dark hero */
.site-header .nav-logo,
.site-header .nav-links > li > a,
.site-header .nav-phone,
.site-header .nav-dropdown > a,
.site-header .nav-toggle span {
  color: #ffffff;
}
.site-header .nav-logo:hover { color: rgba(255,255,255,0.8); }
.logo-wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  white-space: nowrap;
  color: inherit;
}
/* Footer: always white on dark bg */
.logo-wordmark--light {
  color: #ffffff;
}
.site-header .nav-links > li > a:hover {
  color: #ffffff;
  background: rgba(255,255,255,0.12);
}
.site-header .nav-phone:hover { color: rgba(255,255,255,0.8); }
.site-header .nav-cta {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}
.site-header .nav-cta:hover {
  background: var(--color-secondary-dark);
  color: var(--color-primary-dark);
}

/* Scrolled state — solid background */
.site-header.header-scrolled {
  position: fixed;
  background-color: var(--color-card-bg);
  border-bottom: 3px solid var(--color-secondary);
  box-shadow: 0 2px 16px rgba(0,0,0,0.10);
}
.site-header.header-scrolled .nav-logo,
.site-header.header-scrolled .nav-links > li > a,
.site-header.header-scrolled .nav-phone,
.site-header.header-scrolled .nav-dropdown > a {
  color: var(--color-heading);
}
.site-header.header-scrolled .nav-logo:hover { color: var(--color-secondary); }
.site-header.header-scrolled .nav-links > li > a:hover {
  color: var(--color-secondary);
  background: var(--color-secondary-light);
}
.site-header.header-scrolled .nav-phone:hover { color: var(--color-secondary); }
.site-header.header-scrolled .nav-cta {
  background: var(--color-primary);
  color: #ffffff;
}
.site-header.header-scrolled .nav-cta:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
}
.site-header.header-scrolled .nav-toggle span {
  background: var(--color-text);
}

/* Hero accounts for fixed header */
.hero { padding-top: 90px; }
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-heading);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo:hover { color: var(--color-primary); }
.logo-img { height: 40px; width: auto; }

/* Nav links — centered */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}
.nav-links > li > a {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--color-text);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-links > li > a:hover {
  color: var(--color-primary);
  background: var(--color-primary-light);
}

/* Nav right — MUST be flex horizontal */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--color-heading);
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.nav-phone:hover { color: var(--color-primary); }
.nav-phone svg { flex-shrink: 0; }
.nav-cta {
  background: var(--color-primary);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  text-decoration: none;
  transition: var(--transition);
}
.nav-cta:hover {
  background: var(--color-primary-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

/* Dropdown — CRITICAL: top: 100% with NO gap */
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 210px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 8px 6px 6px;
  z-index: 200;
}
/* Invisible hover bridge — prevents mouse from leaving nav-dropdown before reaching menu */
.dropdown-menu::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li a {
  display: block;
  padding: 10px 14px;
  color: var(--color-text);
  font-size: 0.9rem;
  border-radius: 6px;
}
.dropdown-menu li a:hover {
  background: var(--color-bg-alt);
  color: var(--color-primary);
}

/* Mobile-only elements */
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: block; } }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  border-radius: 2px;
  transition: var(--transition);
  /* background set by .site-header or .site-header.header-scrolled */
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-right { display: none; }
  .site-header .nav-toggle span {
    background: #ffffff;
  }
  .site-header.header-scrolled .nav-toggle span {
    background: var(--color-text);
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-card-bg);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 16px 20px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
    gap: 2px;
    flex: none;
  }
  .nav-links.open { display: flex; }
  .site-header .nav-links.open > li > a,
  .site-header .nav-links.open .nav-dropdown > a,
  .site-header .nav-links.open .mobile-phone {
    color: var(--color-heading);
  }
  .site-header .nav-links.open > li > a:hover,
  .site-header .nav-links.open .nav-dropdown > a:hover,
  .site-header .nav-links.open .mobile-phone:hover {
    color: var(--color-primary);
    background: var(--color-primary-light);
  }
  .nav-links > li > a { padding: 12px 14px; border-radius: 8px; }
  .nav-links .mobile-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 14px;
    font-weight: 600;
    color: var(--color-heading);
    font-size: 0.95rem;
    border-radius: 8px;
  }
  .nav-links .mobile-cta {
    display: block;
    background: var(--color-primary);
    color: #ffffff;
    text-align: center;
    padding: 12px 14px;
    border-radius: 8px;
    font-weight: 600;
    margin-top: 4px;
  }
  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    background: var(--color-bg-alt);
    border-radius: 8px;
    display: none;
    padding: 4px 8px;
    margin-top: 4px;
  }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .container { padding: 0 16px; }
  .section-pad { padding: 48px 0; }
}

/* --- FAQ (native details/summary) --- */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: var(--color-primary); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-heading);
  text-align: left;
  gap: 16px;
  transition: color 0.2s ease;
  list-style: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question:hover { color: var(--color-primary); }
.faq-icon {
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-icon,
.faq-item[open] .faq-toggle { transform: rotate(45deg); }
/* CRITICAL: max-height animation, never display:none */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 24px;
  color: var(--color-text-muted);
  line-height: 1.7;
  text-align: left;
}
.faq-item[open] .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* --- Scroll Animations --- */
.fade-in, .fade-in-left, .fade-in-right {
  opacity: 0;
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in { transform: translateY(20px); }
.fade-in-left { transform: translateX(-28px); }
.fade-in-right { transform: translateX(28px); }
.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible { opacity: 1; transform: none; }

/* --- Trust Bar — slim ribbon, NOT a section. Never apply .section-pad --- */
.trust-bar {
  background: var(--color-card-bg);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 16px 0;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}
.trust-signals {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item, .trust-reviews-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
}
.trust-num {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-primary);
}
.trust-desc {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--color-border);
}
.trust-reviews-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 28px;
  text-decoration: none;
  transition: var(--transition);
}
.trust-reviews-link:hover { opacity: 0.8; }

@media (max-width: 600px) {
  .trust-signals { gap: 12px; }
  .trust-item, .trust-reviews-link { padding: 0 14px; }
  .trust-num { font-size: 1.1rem; }
}

/* ============================================================
   HERO — Overlay Image
   ============================================================ */
.hero {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.60);
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 auto;
  padding: 120px 24px;
  text-align: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}
.hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.hero .btn-primary {
  background: #ffffff;
  color: var(--color-heading);
  border-color: #ffffff;
}
.hero .btn-primary:hover {
  background: rgba(255,255,255,0.9);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: rgba(255,255,255,0.7);
}
.hero .btn-secondary:hover {
  background: #ffffff;
  color: var(--color-primary);
  border-color: #ffffff;
}
.hero-trust-line {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-trust-line span { white-space: nowrap; }
.hero-trust-line .dot::before {
  content: '·';
  margin: 0 4px;
}

@media (max-width: 768px) {
  .hero { min-height: 460px; }
  .hero-inner { padding: 80px 20px; }
  .hero-buttons { flex-direction: column; gap: 10px; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
}

/* ============================================================
   DIVIDER — Slant
   ============================================================ */
.ocd-divider {
  --divider-color-1: #FFFFFF;
  --divider-height: 80px;
  --divider-height-sm: 48px;
  position: relative;
  display: block;
  width: 100%;
  height: var(--divider-height);
  overflow: hidden;
  line-height: 0;
  margin: 0;
  padding: 0;
  pointer-events: none;
  z-index: 2;
  flex-shrink: 0;
}
.ocd-divider svg {
  display: block;
  width: 100%;
  height: 100%;
}
.ocd-divider--slant svg {
  fill: var(--divider-color-1);
}
.ocd-divider--flip {
  transform: scaleY(-1);
}
@media (max-width: 768px) {
  .ocd-divider { height: var(--divider-height-sm); }
}

/* ============================================================
   DIVIDER — Wave
   ============================================================ */
.ocd-divider--wave svg {
  fill: var(--divider-color-1);
}

/* ============================================================
   PROBLEM SECTION — Left-Aligned Bold Statement
   ============================================================ */
.problem-section {
  background-color: var(--color-bg-alt);
  padding: 5rem 0;
}
.problem-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.problem-content {
  display: flex;
  gap: 1.5rem;
}
.accent-bar {
  width: 4px;
  flex-shrink: 0;
  background-color: var(--color-primary);
  border-radius: 2px;
  align-self: stretch;
}
.problem-section .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.problem-section .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-heading);
  margin: 0 auto 1rem;
  text-align: center;
  max-width: 800px;
}
.problem-section .section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem 0;
  text-align: left;
}
.problem-section .pain-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.problem-section .pain-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.problem-section .pain-item i {
  width: 18px;
  height: 18px;
  color: #dc3545;
  flex-shrink: 0;
}
.problem-section .pain-item span {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}
.problem-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 380px;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .problem-section { padding: 3.5rem 0; }
  .problem-grid { grid-template-columns: 1fr; gap: 2rem; }
  .problem-image { order: -1; }
  .problem-image img { min-height: 220px; aspect-ratio: 16 / 9; }
}

/* ============================================================
   BENTO GRID — Features / Why Us
   ============================================================ */
.bento-section {
  /* background-color: var(--color-bg); */  /* removed — .bg-alt handles this */
  padding: 5rem 0;
}
.bento-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bento-card {
  min-height: 160px;
  overflow: visible;
  border-radius: var(--radius-lg);
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.bento-card-large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 320px;
}
/* Large card — image background treatment */
.bento-card-large.img-card {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.bento-card-large .img-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
}
.bento-card-large .img-card-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  color: #fff;
}
.bento-card-large .img-card-content h3 {
  color: #fff;
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin-bottom: 0.75rem;
}
.bento-card-large .img-card-content p {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}
/* Feature cards */
.bento-card .card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--color-primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}
.bento-card .card-icon i {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
}
.bento-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.4rem;
}
.bento-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}
/* Stat cards */
.bento-stat {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-secondary);
  line-height: 1;
  margin-bottom: 0.25rem;
}
.bento-stat-label {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
/* Content padding for non-image cards */
.bento-card-inner {
  padding: 1.5rem;
}
@media (max-width: 768px) {
  .bento-section { padding: 3.5rem 0; }
  .bento-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto !important;
  }
  .bento-grid > .bento-card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: auto;
  }
  .bento-card-large { min-height: 240px; }
}

/* ============================================================
   SERVICES — Image Background Cards
   ============================================================ */
.services-section {
  background-color: var(--color-bg-alt);
  padding: 5rem 0;
}
.services-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  transition: background 0.3s ease;
}
.img-card:hover .img-card-overlay {
  background: rgba(0,0,0,0.38);
}
.img-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.img-card-placeholder {
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
}
.img-card-content {
  position: relative;
  z-index: 1;
  padding: 1.5rem;
  width: 100%;
}
.img-card-content h3 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.img-card-content p {
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.img-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}
.img-card-link:hover { color: var(--color-secondary); }
.img-card-link i { width: 14px; height: 14px; }
@media (max-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services-section { padding: 3.5rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .img-card { min-height: 220px; }
}

/* ============================================================
   PROCESS — Steps
   ============================================================ */
.process-section {
  /* background-color: var(--color-bg); */  /* removed — .bg-alt handles this */
  padding: 5rem 0;
}
.process-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 0 8px;
}
.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-secondary);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 12px;
}
.process-step h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}
@media (max-width: 768px) {
  .process-section { padding: 3.5rem 0; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
}
@media (max-width: 480px) {
  .process-steps { grid-template-columns: 1fr; }
}

/* ============================================================
   TESTIMONIALS — GHL Wrapper
   ============================================================ */
.testimonials-section {
  background-color: var(--color-bg-alt);
  padding: 5rem 0;
}
.testimonials-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.ghl-reviews-wrap {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 768px) {
  .testimonials-section { padding: 3.5rem 0; }
}

/* ============================================================
   SERVICE AREA — Map + Tags
   ============================================================ */
.service-area-section {
  background-color: var(--color-bg);
  padding: 5rem 0;
}
.service-area-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.service-area-section .section-header {
  text-align: center;
  margin-bottom: 2rem;
}
.service-area-section .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0;
}
.service-area-section .section-sub {
  text-align: left;
  max-width: 800px;
  margin: 0 auto;
}
.area-map-wide {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 350px;
  margin-bottom: 2rem;
  border: 1px solid var(--color-border);
  background: var(--color-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}
.area-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}
.area-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.9rem;
  background-color: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  transition: var(--transition);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
}
.area-tag:hover {
  border-color: var(--color-primary);
  background-color: rgba(var(--color-primary-rgb), 0.05);
  color: var(--color-primary);
}
.area-tag i {
  width: 14px;
  height: 14px;
  color: var(--color-primary);
  flex-shrink: 0;
}
.area-tag-primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
  font-weight: 600;
}
.area-cta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  text-align: center;
}
.area-cta-note i { width: 16px; height: 16px; color: var(--color-primary); }
@media (max-width: 768px) {
  .service-area-section { padding: 3.5rem 0; }
  .area-map-wide { height: 250px; }
}

/* ============================================================
   FAQ — Standard Accordion
   ============================================================ */
.faq-section {
  background-color: var(--color-bg);
  padding: 5rem 0;
}
.contact-faq-section {
  padding-top: 3rem;
}
.faq-section .section-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-section .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.faq-section .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 0.75rem 0;
}
.faq-section .section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 768px) {
  .faq-section { padding: 3.5rem 0; }
}

/* ============================================================
   FINAL CTA — Raised Card
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
  padding: 5rem 0;
}
.cta-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.cta-card {
  max-width: 580px;
  margin: 0 auto;
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.cta-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(38, 38, 43, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.cta-card-icon i { width: 26px; height: 26px; color: var(--color-secondary); }
.cta-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 0.75rem 0;
}
.cta-sub {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem 0;
}
.cta-phone-display {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: var(--transition);
}
.cta-phone-display:hover { color: var(--color-secondary-dark); }
.cta-phone-display i { width: 22px; height: 22px; }
.cta-buttons { margin-bottom: 1.25rem; }
.cta-card .btn-primary {
  background: var(--color-secondary);
  color: var(--color-primary-dark);
}
.cta-card .btn-primary:hover {
  background: var(--color-secondary-dark);
  color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(224, 187, 0, 0.4);
}
.cta-note {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin: 0;
}
.cta-note i { width: 14px; height: 14px; }
@media (max-width: 768px) {
  .cta-section { padding: 3.5rem 0; }
  .cta-card { padding: 2rem 1.5rem; }
  .cta-phone-display { font-size: 1.25rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.55);
  padding: 60px 24px 0;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 12px;
}
.footer-logo .logo-img { height: 38px; }
.footer-logo .logo-wordmark,
.footer-logo .logo-text,
.footer-brand .logo-wordmark,
.footer-brand .logo-text,
.site-footer .logo-wordmark,
.site-footer .logo-text {
  color: #fff !important;
  font-size: 1.3rem;
  font-weight: 700;
}
.footer-tagline {
  margin: 12px 0 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.55);
}
.footer-contact-inline {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-inline a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-contact-inline a:hover { color: var(--color-secondary); }
.footer-links h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--color-secondary); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
}

/* ============================================================
   GRADIENT TEXT EFFECT
   ============================================================ */
h1.gradient-text strong,
h2.gradient-text strong,
h3.gradient-text strong,
p.gradient-text strong {
  background: linear-gradient(135deg, var(--color-secondary), #FFD700);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Section label also gets gold treatment */
.section-label { color: var(--color-secondary); }

/* ============================================================
   LEGAL PAGES (Privacy / Terms)
   ============================================================ */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}
.legal-page h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 0.5rem;
}
.legal-page h2 {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 700;
  color: var(--color-heading);
  margin: 2.5rem 0 0.75rem;
}
.legal-page p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}
.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1.25rem;
}
.legal-page ul li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.legal-page ul li strong {
  color: var(--color-heading);
  font-weight: 600;
}
.legal-page ul li a {
  color: var(--color-secondary);
  text-decoration: none;
  font-weight: 500;
}
.legal-page ul li a:hover {
  color: var(--color-secondary-dark);
  text-decoration: underline;
}
.legal-page .legal-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .legal-page { padding: 90px 20px 60px; }
}

/* ============================================================
   GHL EMBED ZONE
   ============================================================ */
.ghl-embed-zone {
  background: var(--color-bg-alt);
  border: 2px dashed var(--color-border);
  border-radius: var(--radius);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 32px;
}

.ghl-embed-zone--form {
  min-height: 580px;
  padding: 0;
  border: none;
  overflow: hidden;
  background: transparent;
  display: block;
}

.ghl-embed-zone--form iframe {
  width: 100%;
  height: 580px;
  min-height: 580px;
  border: none;
  display: block;
}

/* ============================================================
   ABOUT PAGE — Stats-Infused Story
   ============================================================ */
.about-section {
  background-color: var(--color-bg);
  padding: 5rem 0;
}
.about-section .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.about-section .story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.about-section .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.about-section .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--color-heading);
  margin: 0 0 1.25rem 0;
}
.about-section .story-para {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin: 0 0 1.5rem 0;
}
.about-section .story-highlight {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 1.15em;
}
.about-section .story-certs {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.about-section .cert-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem 0.8rem;
  background-color: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.about-section .cert-badge i {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}
.about-section .cert-badge span {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
}
.about-section .story-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-section .story-photo img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
@media (max-width: 768px) {
  .about-section { padding: 3.5rem 0; }
  .about-section .story-grid { grid-template-columns: 1fr; }
  .about-section .story-photo { order: -1; }
}

/* ============================================================
   TWO-COLUMN LAYOUTS
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-info-column {
  align-self: start;
}
.contact-grid-section {
  padding-bottom: 0;
}
.two-col-reverse > *:first-child { order: 2; }
.two-col-reverse > *:last-child { order: 1; }
@media (max-width: 768px) {
  .two-col,
  .two-col-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .two-col-reverse > * { order: unset; }
}
/* Text inside two-col is always left-aligned */
.two-col h2, .two-col p, .two-col-reverse h2, .two-col-reverse p { text-align: left; }
.col-visual img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; }
.col-visual iframe { width: 100%; border: none; display: block; }

/* ============================================================
   CONTACT PAGE — Contact Info
   ============================================================ */
.contact-info-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i {
  width: 22px;
  height: 22px;
  color: var(--color-secondary);
}
.contact-info-item h4 {
  margin-bottom: 4px;
  font-size: 0.9rem;
  text-align: left;
  font-weight: 600;
  color: var(--color-heading);
}
.contact-info-item p,
.contact-info-item a {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  text-align: left;
  margin: 0;
  line-height: 1.5;
}
.contact-info-item a:hover { color: var(--color-primary); }

/* ============================================================
   PROBLEM PAIN CARDS — Signs You Need Service
   ============================================================ */
.problem-pain-cards {
  background-color: var(--color-bg-alt);
  padding: 5rem 0;
}
.problem-pain-cards .section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.problem-pain-cards .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.problem-pain-cards .section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
}
.problem-pain-cards .section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-heading);
  margin: 0 0 0.75rem 0;
}
.problem-pain-cards .section-sub {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.problem-pain-cards .pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.problem-pain-cards .pain-card {
  background-color: var(--color-card-bg);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  border: 1px solid var(--color-border);
  min-height: auto;
  transition: var(--transition);
}
.problem-pain-cards .pain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(220, 53, 69, 0.3);
}
.problem-pain-cards .pain-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  background-color: rgba(220, 53, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.problem-pain-cards .pain-card-icon i {
  width: 22px;
  height: 22px;
  color: #dc3545;
}
.problem-pain-cards .pain-card-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 0 0 0.5rem 0;
}
.problem-pain-cards .pain-card-desc {
  font-family: var(--font-body);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-muted);
  margin: 0;
}
@media (max-width: 768px) {
  .problem-pain-cards { padding: 3.5rem 0; }
  .problem-pain-cards .pain-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .problem-pain-cards .pain-card { padding: 1.25rem; }
}
@media (max-width: 480px) {
  .problem-pain-cards .pain-grid { grid-template-columns: 1fr; }
}
