/* ═══════════════════════════════════════════════════════════════
   GOT PLUMBING USA — SHARED STYLES v1.0
   GotPlumbingUSA.com
   ═══════════════════════════════════════════════════════════════ */

/* ─── Variables ─── */
:root {
  --teal: #0D9488;
  --teal-dark: #0A7B71;
  --teal-light: #CCFBF1;
  --teal-muted: #E6FAF7;
  --coral: #FF6B47;
  --coral-dark: #E55A38;
  --coral-light: #FFF0EC;
  --navy: #0F172A;
  --navy-light: #1E293B;
  --charcoal: #334155;
  --slate: #64748B;
  --gray-100: #F8FAFC;
  --gray-200: #E2E8F0;
  --gray-300: #CBD5E1;
  --white: #FFFFFF;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ─── Reset ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body); color: var(--charcoal);
  background: var(--white); line-height: 1.6; overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Typography ─── */
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--navy); }

/* ═══════════════════════════════════════
   HEADER
   ═══════════════════════════════════════ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.06); transition: all 0.3s ease;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; height: 72px;
}
.logo {
  display: flex; align-items: center; gap: 0;
  font-family: var(--font-display); font-weight: 800; font-size: 24px;
  color: var(--navy); letter-spacing: -0.3px;
}
.logo-got { color: var(--coral); font-style: italic; margin-right: 5px; }
.logo-plumbing { color: var(--navy); }
.logo-usa {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--teal); color: white; font-size: 11px;
  font-weight: 800; padding: 2px 7px; border-radius: 4px;
  letter-spacing: 1.5px; margin-left: 6px; transform: translateY(-1px);
}
.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: var(--font-body); font-weight: 500; font-size: 15px;
  color: var(--charcoal); transition: color 0.2s;
}
.nav a:hover { color: var(--teal); }
.header-phone {
  display: flex; align-items: center; gap: 8px;
  background: var(--coral); color: white; padding: 10px 20px;
  border-radius: 50px; font-family: var(--font-display);
  font-weight: 700; font-size: 16px; transition: all 0.2s; letter-spacing: 0.5px;
}
.header-phone:hover { background: var(--coral-dark); transform: scale(1.03); }
.header-phone svg { width: 18px; height: 18px; }
.mobile-menu-btn { display: none; background: none; border: none; cursor: pointer; }

/* ═══════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════ */
.btn-call {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--coral); color: white; padding: 18px 36px;
  border-radius: 60px; font-family: var(--font-display);
  font-weight: 700; font-size: 18px; transition: all 0.25s;
  box-shadow: 0 4px 24px rgba(255,107,71,0.3); letter-spacing: 0.3px;
}
.btn-call:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(255,107,71,0.4); }
.btn-call svg { width: 20px; height: 20px; animation: ring 2s infinite; }
.btn-call--sm { padding: 14px 28px; font-size: 16px; }
.btn-call--lg { font-size: 22px; padding: 22px 48px; }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid rgba(255,255,255,0.2); color: white;
  padding: 16px 32px; border-radius: 60px; font-weight: 600; font-size: 16px; transition: all 0.25s;
}
.btn-secondary:hover { border-color: var(--teal); color: var(--teal); }

.btn-teal {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal); color: white; padding: 14px 28px;
  border-radius: 60px; font-family: var(--font-display);
  font-weight: 700; font-size: 16px; transition: all 0.25s;
}
.btn-teal:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ═══════════════════════════════════════
   SECTION SHARED
   ═══════════════════════════════════════ */
.section-pad { padding: 100px 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block; font-family: var(--font-display);
  font-weight: 700; font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--teal); margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(32px, 4vw, 48px); color: var(--navy);
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px;
}
.section-sub { font-size: 17px; color: var(--slate); line-height: 1.7; }

/* ═══════════════════════════════════════
   HERO (HOMEPAGE)
   ═══════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--navy); overflow: hidden; padding-top: 72px;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(13,148,136,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(255,107,71,0.08) 0%, transparent 50%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,1) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content {
  position: relative; z-index: 2; max-width: 1200px;
  margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-text { animation: fadeUp 0.8s ease-out; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(13,148,136,0.15); border: 1px solid rgba(13,148,136,0.3);
  color: var(--teal-light); padding: 6px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--teal);
  border-radius: 50%; animation: pulse 2s infinite;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(42px, 5.5vw, 72px); line-height: 1.05;
  color: var(--white); letter-spacing: -1.5px; margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic; color: var(--coral); position: relative;
}
.hero h1 em::after {
  content: ''; position: absolute; bottom: 2px; left: 0; right: 0;
  height: 4px; background: var(--coral); border-radius: 2px; opacity: 0.4;
}
.hero-sub {
  font-size: 18px; color: var(--gray-300); line-height: 1.7;
  max-width: 520px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust { display: flex; gap: 32px; align-items: center; }
.trust-item {
  display: flex; align-items: center; gap: 8px;
  color: var(--gray-300); font-size: 14px; font-weight: 500;
}
.trust-item svg { width: 20px; height: 20px; color: var(--teal); }

.hero-visual { position: relative; animation: fadeUp 0.8s ease-out 0.2s both; }
.hero-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px;
  padding: 40px; position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: -50%; right: -50%;
  width: 200%; height: 200%;
  background: conic-gradient(from 180deg, transparent, rgba(13,148,136,0.1), transparent);
  animation: rotate 20s linear infinite;
}
.hero-card-content { position: relative; z-index: 1; }
.hero-stat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.hero-stat {
  text-align: center; padding: 24px; border-radius: 16px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.hero-stat-num {
  font-family: var(--font-display); font-weight: 800;
  font-size: 42px; color: var(--teal); letter-spacing: -1px;
}
.hero-stat-label {
  font-size: 13px; color: var(--gray-300); margin-top: 4px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 600;
}

/* ═══════════════════════════════════════
   PAGE HERO (INTERIOR PAGES)
   ═══════════════════════════════════════ */
.page-hero {
  background: var(--navy); padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(13,148,136,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(255,107,71,0.06) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .breadcrumb {
  font-size: 14px; color: var(--slate); margin-bottom: 16px;
}
.page-hero .breadcrumb a { color: var(--teal); transition: color 0.2s; }
.page-hero .breadcrumb a:hover { color: var(--teal-light); }
.page-hero .breadcrumb span { color: var(--gray-300); }
.page-hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 56px); color: var(--white);
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 16px; max-width: 800px;
}
.page-hero .hero-desc {
  font-size: 18px; color: var(--gray-300); max-width: 600px; line-height: 1.7; margin-bottom: 32px;
}

/* ═══════════════════════════════════════
   CTA BANNER (inline call-to-action)
   ═══════════════════════════════════════ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border: 1px solid rgba(13,148,136,0.2); border-radius: 20px;
  padding: 40px; display: flex; align-items: center;
  justify-content: space-between; gap: 24px; margin: 48px 0;
}
.cta-banner--teal {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  border-color: transparent;
}
.cta-banner h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 24px; color: var(--white); margin-bottom: 4px;
}
.cta-banner p { font-size: 15px; color: var(--gray-300); }
.cta-banner--teal p { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════
   CONTENT AREA (articles, services, etc)
   ═══════════════════════════════════════ */
.content-area {
  padding: 80px 0; max-width: 800px; margin: 0 auto;
}
.content-area h2 {
  font-size: clamp(24px, 3vw, 32px); font-weight: 800;
  color: var(--navy); margin: 48px 0 16px; letter-spacing: -0.5px;
  line-height: 1.2;
}
.content-area h2:first-child { margin-top: 0; }
.content-area h3 {
  font-size: 20px; font-weight: 700; color: var(--navy);
  margin: 32px 0 12px;
}
.content-area p {
  font-size: 17px; color: var(--charcoal); line-height: 1.8; margin-bottom: 20px;
}
.content-area ul, .content-area ol {
  margin: 16px 0 24px 24px; font-size: 17px; color: var(--charcoal); line-height: 1.8;
}
.content-area li { margin-bottom: 8px; }
.content-area a { color: var(--teal); font-weight: 500; border-bottom: 1px solid transparent; transition: border-color 0.2s; }
.content-area a:hover { border-color: var(--teal); }

/* Image placeholder */
.img-placeholder {
  background: var(--gray-100); border: 2px dashed var(--gray-200);
  border-radius: 16px; display: flex; align-items: center;
  justify-content: center; color: var(--slate); font-size: 14px;
  font-weight: 600; text-transform: uppercase; letter-spacing: 1px;
  margin: 32px 0; overflow: hidden; position: relative;
  min-height: 300px;
}
.img-placeholder--hero { min-height: 400px; border-radius: 0; margin: 0; }
.img-placeholder--sm { min-height: 200px; }
.img-placeholder span { position: relative; z-index: 1; padding: 20px; text-align: center; }
.img-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--teal-muted) 100%);
  opacity: 0.5;
}

/* Video placeholder */
.video-placeholder {
  background: var(--navy); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-300); font-size: 14px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 1px;
  min-height: 400px; margin: 32px 0; position: relative; overflow: hidden;
}
.video-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(13,148,136,0.15) 0%, transparent 70%);
}
.video-placeholder span { position: relative; z-index: 1; text-align: center; }

/* ═══════════════════════════════════════
   VALUE CARDS
   ═══════════════════════════════════════ */
.values { background: var(--white); padding: 100px 0; position: relative; }
.values::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  padding: 36px 28px; border-radius: 20px; border: 1px solid var(--gray-200);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.value-card:hover {
  border-color: var(--teal); transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(13,148,136,0.1);
}
.value-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--teal); transform: scaleX(0); transition: transform 0.3s;
}
.value-card:hover::after { transform: scaleX(1); }
.value-icon {
  width: 52px; height: 52px; border-radius: 14px; background: var(--teal-muted);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; color: var(--teal);
}
.value-card h3 { font-weight: 700; font-size: 18px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--slate); line-height: 1.6; }

/* ═══════════════════════════════════════
   SERVICE CARDS (grid)
   ═══════════════════════════════════════ */
.services-section { background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; }
.services-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(13,148,136,0.08) 0%, transparent 60%);
}
.services-section .section-tag { color: var(--teal); }
.services-section .section-title { color: var(--white); }
.services-section .section-sub { color: var(--gray-300); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative; z-index: 1;
}
.service-card {
  display: block; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 32px; transition: all 0.3s ease; cursor: pointer;
}
.service-card:hover {
  background: rgba(13,148,136,0.1); border-color: rgba(13,148,136,0.3);
  transform: translateY(-3px);
}
.service-card-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(13,148,136,0.15); display: flex; align-items: center;
  justify-content: center; margin-bottom: 16px; font-size: 22px;
}
.service-card h3 { font-weight: 700; font-size: 17px; color: var(--white); margin-bottom: 8px; }
.service-card p { font-size: 14px; color: var(--gray-300); line-height: 1.5; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--teal); font-weight: 600; font-size: 14px; margin-top: 16px; transition: gap 0.2s;
}
.service-card:hover .card-link { gap: 10px; }

/* Service cards for light backgrounds */
.services-grid--light { }
.services-grid--light .service-card {
  background: var(--white); border: 1px solid var(--gray-200);
}
.services-grid--light .service-card:hover {
  border-color: var(--teal); background: var(--teal-muted);
}
.services-grid--light .service-card h3 { color: var(--navy); }
.services-grid--light .service-card p { color: var(--slate); }

/* ═══════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════ */
.how-it-works { background: var(--white); padding: 100px 0; }
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative;
}
.steps::before {
  content: ''; position: absolute; top: 48px; left: 15%; right: 15%;
  height: 2px; background: linear-gradient(90deg, var(--teal), var(--coral)); opacity: 0.2;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 96px; height: 96px; border-radius: 50%; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 36px;
  color: var(--white); position: relative; z-index: 1;
}
.step:nth-child(1) .step-num { background: var(--teal); }
.step:nth-child(2) .step-num { background: var(--navy); }
.step:nth-child(3) .step-num { background: var(--coral); }
.step h3 { font-weight: 700; font-size: 20px; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--slate); max-width: 280px; margin: 0 auto; line-height: 1.6; }

/* ═══════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════ */
.stats-bar {
  background: var(--teal); padding: 60px 0; position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 20px,
    rgba(255,255,255,0.03) 20px, rgba(255,255,255,0.03) 40px);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 1; text-align: center;
}
.stat-item h4 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 4vw, 52px); color: var(--white); letter-spacing: -1px;
}
.stat-item p {
  font-size: 14px; color: rgba(255,255,255,0.75);
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600; margin-top: 4px;
}

/* ═══════════════════════════════════════
   STATE CHIPS / COVERAGE
   ═══════════════════════════════════════ */
.coverage { background: var(--gray-100); padding: 100px 0; }
.coverage-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.coverage-text h2 {
  font-weight: 800; font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 16px;
}
.coverage-text p { font-size: 17px; color: var(--slate); line-height: 1.7; margin-bottom: 32px; }
.state-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.state-chip {
  padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600;
  background: var(--white); border: 1px solid var(--gray-200); color: var(--charcoal); transition: all 0.2s;
}
.state-chip:hover { border-color: var(--teal); color: var(--teal); }
.state-chip.featured { background: var(--teal); color: white; border-color: var(--teal); }

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials { background: var(--white); padding: 100px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: var(--gray-100); border-radius: 20px; padding: 32px;
  border: 1px solid transparent; transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--teal); }
.testimonial-stars { color: var(--coral); font-size: 18px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--charcoal); line-height: 1.7; margin-bottom: 20px; font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%; background: var(--teal-muted);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; color: var(--teal); font-size: 16px;
}
.testimonial-meta .name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--navy); }
.testimonial-meta .loc { font-size: 13px; color: var(--slate); }

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq-section { background: var(--gray-100); padding: 100px 0; }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 16px; margin-bottom: 12px;
  border: 1px solid var(--gray-200); overflow: hidden; transition: border-color 0.2s;
}
.faq-item.active { border-color: var(--teal); }
.faq-question {
  padding: 20px 24px; display: flex; justify-content: space-between;
  align-items: center; cursor: pointer; gap: 16px;
  font-family: var(--font-display); font-weight: 600;
  font-size: 16px; color: var(--navy); transition: color 0.2s;
}
.faq-question:hover { color: var(--teal); }
.faq-toggle {
  width: 32px; height: 32px; border-radius: 50%; background: var(--gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.3s; font-size: 18px; color: var(--slate);
}
.faq-item.active .faq-toggle { background: var(--teal); color: white; transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 24px 20px; font-size: 15px; color: var(--slate); line-height: 1.7; }

/* ═══════════════════════════════════════
   FINAL CTA
   ═══════════════════════════════════════ */
.final-cta {
  background: var(--navy); padding: 100px 0; position: relative; overflow: hidden; text-align: center;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,107,71,0.1) 0%, transparent 60%);
}
.final-cta-content { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(36px, 5vw, 60px); color: var(--white);
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 20px;
}
.final-cta h2 em { font-style: italic; color: var(--coral); }
.final-cta p {
  font-size: 18px; color: var(--gray-300); max-width: 500px;
  margin: 0 auto 40px; line-height: 1.6;
}

/* ═══════════════════════════════════════
   RELATED SERVICES SIDEBAR/GRID
   ═══════════════════════════════════════ */
.related-services { background: var(--gray-100); padding: 80px 0; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.related-card {
  background: var(--white); border: 1px solid var(--gray-200);
  border-radius: 16px; padding: 28px; transition: all 0.3s;
}
.related-card:hover { border-color: var(--teal); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.related-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.related-card p { font-size: 14px; color: var(--slate); line-height: 1.5; margin-bottom: 12px; }
.related-card .card-link { color: var(--teal); font-weight: 600; font-size: 14px; }

/* ═══════════════════════════════════════
   COST TABLE
   ═══════════════════════════════════════ */
.cost-table { width: 100%; border-collapse: collapse; margin: 32px 0; border-radius: 12px; overflow: hidden; }
.cost-table thead { background: var(--navy); }
.cost-table th {
  padding: 14px 20px; text-align: left; color: white;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  text-transform: uppercase; letter-spacing: 1px;
}
.cost-table td { padding: 14px 20px; border-bottom: 1px solid var(--gray-200); font-size: 15px; }
.cost-table tbody tr:nth-child(even) { background: var(--gray-100); }
.cost-table tbody tr:hover { background: var(--teal-muted); }
.cost-table .price { font-family: var(--font-display); font-weight: 700; color: var(--teal); }

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer { background: #0A1120; padding: 64px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 14px; color: var(--slate); line-height: 1.7; max-width: 300px; margin-top: 16px; }
.footer-col h4 {
  font-family: var(--font-display); font-weight: 700;
  font-size: 14px; text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--gray-300); margin-bottom: 20px;
}
.footer-col a { display: block; font-size: 14px; color: var(--slate); padding: 4px 0; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom { padding: 24px 0; text-align: center; }
.footer-disclaimer {
  font-size: 12px; color: var(--slate); line-height: 1.7;
  max-width: 800px; margin: 0 auto 16px;
  padding: 16px 20px; background: rgba(255,255,255,0.03); border-radius: 8px;
}
.footer-legal { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer-legal a { color: var(--slate); }
.footer-legal a:hover { color: var(--teal); }

/* ═══════════════════════════════════════
   FLOATING MOBILE CTA
   ═══════════════════════════════════════ */
.floating-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999;
  background: var(--coral); padding: 12px 24px; text-align: center;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
}
.floating-cta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: white; font-family: var(--font-display); font-weight: 700;
  font-size: 18px; letter-spacing: 0.3px;
}
.floating-cta svg { width: 20px; height: 20px; animation: ring 2s infinite; }

/* ═══════════════════════════════════════
   LEGAL PAGES
   ═══════════════════════════════════════ */
.legal-content { padding: 80px 0; }
.legal-content h2 { font-size: 24px; margin: 40px 0 16px; }
.legal-content h3 { font-size: 18px; margin: 28px 0 12px; }
.legal-content p { font-size: 15px; color: var(--charcoal); line-height: 1.8; margin-bottom: 16px; }
.legal-content ul { margin: 12px 0 20px 24px; font-size: 15px; line-height: 1.8; }
.legal-content li { margin-bottom: 6px; }
.legal-content .updated { font-size: 13px; color: var(--slate); font-style: italic; margin-bottom: 32px; }

/* ═══════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
@keyframes ring {
  0% { transform: rotate(0); }
  5% { transform: rotate(15deg); }
  10% { transform: rotate(-15deg); }
  15% { transform: rotate(10deg); }
  20% { transform: rotate(-5deg); }
  25%, 100% { transform: rotate(0); }
}
@keyframes rotate { from { transform: rotate(0); } to { transform: rotate(360deg); } }

.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; flex-wrap: wrap; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .header-phone span { display: none; }
  .header-phone { padding: 10px 14px; }
  .logo { font-size: 20px; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
  .steps::before { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .floating-cta { display: block; }
  .footer { padding-bottom: 64px; }
  body { padding-bottom: 56px; }
  .section-pad { padding: 64px 0; }
  .hero { min-height: auto; padding: 120px 0 80px; }
  .btn-secondary { display: none; }
  .page-hero { padding: 120px 0 60px; }
  .content-area { padding: 48px 0; }
  .related-grid { grid-template-columns: 1fr; }
  .page-hero h1 { font-size: clamp(28px, 7vw, 42px); }
}
