/* === Brad Stewart Construction | Premium One-Page | Smith Build === */

:root {
  --navy: #0a0a0f;
  --dark: #111118;
  --dark-2: #181820;
  --dark-3: #1e1e28;
  --gold: #c9a063;
  --gold-light: #dfb87a;
  --gold-dark: #a88342;
  --gold-glow: rgba(201, 160, 99, 0.12);
  --gold-soft: rgba(201, 160, 99, 0.06);
  --white: #f5f5f0;
  --text: #e0ddd5;
  --text-muted: #99958a;
  --radius: 12px;
  --max-w: 1200px;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--navy);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===================================================================
   NAVIGATION
=================================================================== */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201, 160, 99, 0.08);
  transition: all 0.3s;
}

.nav.scrolled {
  background: rgba(10, 10, 15, 0.98);
  border-bottom-color: rgba(201, 160, 99, 0.15);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text strong {
  font-size: 1.1rem;
  letter-spacing: 2px;
  font-weight: 700;
  color: var(--white);
}

.logo-text span {
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}

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

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
}

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--navy);
  font-weight: 600;
  margin-left: 8px;
  letter-spacing: 1px;
}

.nav-links .nav-cta:hover {
  background: var(--gold-light);
  color: var(--navy);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===================================================================
   HERO
=================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

/* Hero background image — real construction photo at golden hour */
.hero-sky {
  position: absolute;
  inset: 0;
  background: url('hero-bg.jpg') no-repeat center center / cover;
}

/* Architectural blueprint grid — extra subtle over a photo */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(201, 160, 99, 0.025) 59px,
      rgba(201, 160, 99, 0.025) 60px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 59px,
      rgba(201, 160, 99, 0.025) 59px,
      rgba(201, 160, 99, 0.025) 60px
    ),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 119px,
      rgba(201, 160, 99, 0.012) 119px,
      rgba(201, 160, 99, 0.012) 120px
    );
}

/* Warm work-light glow from ground level */
.hero-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 65%;
  background:
    radial-gradient(ellipse 90% 70% at 40% 100%, rgba(201, 160, 99, 0.13) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 75% 100%, rgba(180, 120, 50, 0.07) 0%, transparent 60%);
}

/* Structural framing silhouettes */
.hero-framing {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Left roof truss silhouette */
.hero-framing::before {
  content: '';
  position: absolute;
  bottom: 3%;
  left: 2%;
  width: 280px;
  height: 380px;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  background: linear-gradient(to top, rgba(201, 160, 99, 0.04) 0%, transparent 100%);
  border-left: 1px solid rgba(201, 160, 99, 0.05);
  border-right: 1px solid rgba(201, 160, 99, 0.05);
}

/* Right building frame grid */
.hero-framing::after {
  content: '';
  position: absolute;
  bottom: 6%;
  right: 4%;
  width: 180px;
  height: 320px;
  border: 1px solid rgba(201, 160, 99, 0.045);
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(201, 160, 99, 0.035) 39px,
      rgba(201, 160, 99, 0.035) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(201, 160, 99, 0.035) 39px,
      rgba(201, 160, 99, 0.035) 40px
    );
  opacity: 0.5;
}

/* Construction beam accents */
.hero-beam {
  position: absolute;
  background: rgba(201, 160, 99, 0.045);
}

.hero-beam-1 {
  bottom: 18%;
  left: 14%;
  width: 1px;
  height: 220px;
  opacity: 0.4;
}

.hero-beam-2 {
  bottom: 14%;
  right: 18%;
  width: 130px;
  height: 1px;
  opacity: 0.3;
}

.hero-beam-3 {
  bottom: 32%;
  left: 42%;
  width: 1px;
  height: 200px;
  opacity: 0.25;
  transform: rotate(12deg);
}

.hero-beam-4 {
  bottom: 22%;
  left: 60%;
  width: 80px;
  height: 1px;
  opacity: 0.2;
  transform: rotate(-8deg);
}

/* Readability vignette */
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.35) 35%, transparent 50%),
    linear-gradient(0deg, rgba(10, 10, 15, 0.7) 0%, rgba(10, 10, 15, 0.2) 40%, transparent 60%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 130px 24px 90px;
  width: 100%;
}

.hero-badge {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 2px;
  color: var(--gold);
  border: 1px solid rgba(201, 160, 99, 0.3);
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  font-weight: 500;
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  white-space: nowrap;
}

.hero-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(3rem, 8vw, 5.8rem);
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 400;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
  max-width: 780px;
}

.hero-title .gold {
  color: var(--gold);
  text-shadow: 0 0 40px rgba(201, 160, 99, 0.18);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: #ccc8be;
  max-width: 680px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 44px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--gold);
  font-family: 'DM Serif Display', Georgia, serif;
  text-shadow: 0 0 24px rgba(201, 160, 99, 0.12);
  line-height: 1.1;
}

.stat-label {
  font-size: 0.72rem;
  color: #b0ada3;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.stat-divider {
  width: 1px;
  height: 42px;
  background: rgba(201, 160, 99, 0.2);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

/* FUD busters */
.fud-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.fud-centered {
  justify-content: center;
  margin-top: 20px;
}

.fud-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.fud-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===================================================================
   BUTTONS
=================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201, 160, 99, 0.28);
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201, 160, 99, 0.38);
}

.btn-outline {
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 160, 99, 0.08);
}

.btn-full {
  width: 100%;
}

.btn-large {
  padding: 20px 48px;
  font-size: 1rem;
}

/* ===================================================================
   TRUST BAR
=================================================================== */

.trust-bar {
  position: relative;
  background: var(--dark-2);
  border-top: 1px solid rgba(201, 160, 99, 0.07);
  border-bottom: 1px solid rgba(201, 160, 99, 0.07);
  padding: 22px 0;
  text-align: center;
  overflow: hidden;
}

.trust-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse 60% 100% at 50% 0%, rgba(201, 160, 99, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.trust-label {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-item {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

.trust-dot {
  color: var(--gold);
  opacity: 0.35;
  font-size: 0.8rem;
}

/* ===================================================================
   SECTIONS GENERAL
=================================================================== */

.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gold-label {
  color: var(--gold);
}

.section-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.15;
  font-weight: 400;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.75;
}

/* ===================================================================
   PROBLEM AGITATION
=================================================================== */

.agitation {
  background: var(--dark);
  background-image:
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(201, 160, 99, 0.04) 0%, transparent 70%);
}

.agitation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.1), transparent);
}

.agitation-inner {
  max-width: 900px;
}

.agitation-body p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 18px;
}

.agitation-body p:nth-child(2) {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 500;
}

.pain-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 40px 0;
}

.pain-card {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.08);
  border-top: 3px solid rgba(201, 160, 99, 0.3);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.pain-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.5rem;
  color: rgba(201, 160, 99, 0.15);
  line-height: 1;
  margin-bottom: 12px;
}

.pain-card h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pain-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.agitation-bridge {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin: 32px 0 24px;
  font-style: italic;
}

/* ===================================================================
   ABOUT
=================================================================== */

.about {
  background: var(--dark);
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 49px, rgba(201, 160, 99, 0.018) 49px, rgba(201, 160, 99, 0.018) 50px),
    repeating-linear-gradient(-45deg, transparent, transparent 49px, rgba(201, 160, 99, 0.013) 49px, rgba(201, 160, 99, 0.013) 50px);
}

.about::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -8%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(201, 160, 99, 0.035) 0%, transparent 65%);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.08), transparent);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  margin-top: 40px;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.85;
}

.about-certs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 32px;
}

.cert-badge {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.15);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
}

.cert-badge strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  margin-bottom: 4px;
}

.cert-badge span {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card {
  background: rgba(24, 24, 32, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.07);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-check {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 160, 99, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
}

.value-check svg {
  width: 10px;
  height: 10px;
}

.value-card h3 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ===================================================================
   RESIDENTIAL
=================================================================== */

.residential {
  background: linear-gradient(180deg, var(--dark-2) 0%, var(--dark) 100%);
}

.residential::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.14), transparent);
}

.residential::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background:
    repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(201, 160, 99, 0.018) 79px, rgba(201, 160, 99, 0.018) 80px),
    repeating-linear-gradient(0deg, transparent, transparent 79px, rgba(201, 160, 99, 0.018) 79px, rgba(201, 160, 99, 0.018) 80px);
  opacity: 0.6;
  pointer-events: none;
}

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

.service-card {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.07);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  border-color: rgba(201, 160, 99, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
}

.service-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
}

.service-icon svg {
  width: 100%;
  height: 100%;
}

.service-card h3 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ===================================================================
   COMMERCIAL
=================================================================== */

.commercial {
  background: linear-gradient(180deg, var(--dark-3) 0%, #181825 100%);
}

.commercial::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(100, 140, 180, 0.12), transparent);
}

.commercial::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 59px,
      rgba(100, 140, 180, 0.018) 59px,
      rgba(100, 140, 180, 0.018) 60px
    );
  pointer-events: none;
}

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

.commercial-card {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.07);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  transition: border-color 0.3s;
}

.commercial-card:hover {
  border-color: rgba(201, 160, 99, 0.2);
}

.commercial-num {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 3.2rem;
  color: rgba(201, 160, 99, 0.12);
  line-height: 1;
  margin-bottom: 14px;
}

.commercial-card h3 {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.commercial-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* ===================================================================
   TESTIMONIALS
=================================================================== */

.testimonials {
  background: var(--dark);
  background-image: radial-gradient(circle at 20% 20%, rgba(201, 160, 99, 0.03) 0%, transparent 50%);
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.1), transparent);
}

.testimonials::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 39px,
    rgba(201, 160, 99, 0.011) 39px,
    rgba(201, 160, 99, 0.011) 40px
  );
  pointer-events: none;
}

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

.testimonial-card {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.08);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
}

.testimonial-highlight {
  border-color: rgba(201, 160, 99, 0.2);
  background: linear-gradient(135deg, rgba(24, 24, 32, 0.9), rgba(201, 160, 99, 0.06));
}

.stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.review-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.72rem;
}

.review-source {
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.review-rating {
  color: var(--text-muted);
}

.testimonial-card blockquote {
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.85;
  flex: 1;
  font-style: italic;
  opacity: 0.92;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.82rem;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
}

.testimonial-author span {
  font-size: 0.76rem;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ===================================================================
   WHY US
=================================================================== */

.why-us {
  background: linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%);
  background-image:
    linear-gradient(180deg, var(--dark-3) 0%, var(--dark) 100%),
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(201, 160, 99, 0.04) 0%, transparent 70%);
}

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.why-list {
  margin-top: 32px;
  list-style: none;
}

.why-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.why-list li:last-child {
  border: none;
}

.why-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 160, 99, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.why-icon svg {
  width: 14px;
  height: 14px;
}

.why-list strong {
  display: block;
  color: var(--white);
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.why-list span {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.callout-card {
  background: linear-gradient(135deg, rgba(201, 160, 99, 0.08), rgba(201, 160, 99, 0.02));
  border: 1px solid rgba(201, 160, 99, 0.22);
  border-radius: var(--radius);
  padding: 40px 36px;
}

.callout-phone {
  margin-bottom: 16px;
}

.callout-label {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-weight: 600;
}

.callout-number {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  font-family: 'DM Serif Display', Georgia, serif;
  display: block;
}

.callout-number:hover {
  color: var(--gold-light);
}

.callout-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ===================================================================
   FAQ
=================================================================== */

.faq {
  background: var(--dark-2);
  background-image:
    repeating-linear-gradient(90deg, transparent, transparent 59px, rgba(201, 160, 99, 0.015) 59px, rgba(201, 160, 99, 0.015) 60px),
    repeating-linear-gradient(0deg, transparent, transparent 59px, rgba(201, 160, 99, 0.015) 59px, rgba(201, 160, 99, 0.015) 60px);
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.1), transparent);
}

.faq-list {
  max-width: 820px;
  margin-top: 40px;
}

.faq-item {
  border-bottom: 1px solid rgba(201, 160, 99, 0.07);
}

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

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-align: left;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding-bottom: 22px;
}

.faq-answer.open {
  display: block;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.8;
}

/* ===================================================================
   CTA RECAP
=================================================================== */

.cta-recap {
  background: linear-gradient(180deg, var(--dark) 0%, var(--navy) 100%);
  background-image:
    linear-gradient(180deg, var(--dark) 0%, var(--navy) 100%),
    radial-gradient(ellipse 70% 60% at 50% 50%, rgba(201, 160, 99, 0.06) 0%, transparent 65%);
}

.cta-recap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.1), transparent);
}

.cta-recap-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-recap-title {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
  font-weight: 400;
}

.cta-recap-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ===================================================================
   CONTACT
=================================================================== */

.contact {
  background: linear-gradient(180deg, var(--navy) 0%, #07070e 100%);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 160, 99, 0.08), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
  margin-top: 40px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-card {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.08);
  border-radius: var(--radius);
  padding: 24px;
}

.contact-card h3 {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

.contact-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
}

.contact-card p + p {
  margin-top: 6px;
}

.contact-card strong {
  color: var(--white);
}

.contact-phone {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  font-family: 'DM Serif Display', Georgia, serif;
  display: block;
}

.contact-phone:hover {
  color: var(--gold-light);
}

.contact-form {
  background: rgba(24, 24, 32, 0.85);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(201, 160, 99, 0.08);
  border-radius: var(--radius);
  padding: 36px;
}

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

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(10, 10, 15, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-row input::placeholder,
.form-row textarea::placeholder {
  color: var(--text-muted);
}

.form-row select {
  cursor: pointer;
  appearance: auto;
}

.form-row select option {
  background: var(--dark);
  color: var(--white);
}

.form-disclaimer {
  margin-top: 12px;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
}

/* ===================================================================
   P.S. SECTION
=================================================================== */

.ps-section {
  background: var(--navy);
  border-top: 1px solid rgba(201, 160, 99, 0.06);
  padding: 40px 0;
}

.ps-inner {
  max-width: 760px;
}

.ps-inner p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
  font-style: italic;
}

.ps-inner strong {
  color: var(--gold);
  font-style: normal;
}

.ps-inner a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ps-inner a:hover {
  color: var(--gold-light);
}

/* ===================================================================
   FOOTER
=================================================================== */

.footer {
  background: var(--navy);
  border-top: 1px solid rgba(201, 160, 99, 0.08);
  padding: 60px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-logo {
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.65;
}

.footer-license {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 8px;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
  display: block;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--gold);
}

.footer-contact p {
  color: var(--text-muted);
  font-size: 0.85rem;
  padding: 4px 0;
}

.footer-bottom {
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ===================================================================
   RESPONSIVE
=================================================================== */

@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

  .pain-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 4px;
    border-bottom: 1px solid rgba(201, 160, 99, 0.1);
  }

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

  .nav-links a {
    width: 100%;
    text-align: center;
    padding: 14px;
  }

  .nav-links .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-sky {
    background-position: center 30%;
  }

  .hero-content {
    padding-top: 100px;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 8px;
    align-items: center;
    width: 100%;
  }

  .stat-divider {
    display: none;
  }

  .fud-row {
    gap: 16px;
  }

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

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

  .about-certs {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 64px 0;
  }

  .pain-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-sky {
    background-position: center 25%;
  }

  .hide-mobile {
    display: none;
  }

  .hero-stats {
    gap: 4px;
  }

  .stat {
    flex: 1;
    text-align: center;
  }

  .stat-num {
    font-size: 1.1rem;
  }

  .stat-label {
    font-size: 0.6rem;
    letter-spacing: 0.5px;
  }

  .stat-divider {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

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

  .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .btn-large {
    padding: 18px 32px;
  }

  .hero-badge {
    font-size: 0.52rem;
    letter-spacing: 1px;
    padding: 5px 12px;
  }

  .callout-number {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 24px;
  }
}
