/* Any Plumbing Charlotte - CSS */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;0,700;1,400&display=swap');

:root {
  --navy: #0d1f3c;
  --navy-light: #1a3460;
  --orange: #f26522;
  --orange-dark: #d9540e;
  --white: #ffffff;
  --off-white: #f7f8fa;
  --gray-light: #e8eaed;
  --gray: #6b7280;
  --text: #1a202c;
  --shadow: 0 4px 24px rgba(13,31,60,0.12);
  --shadow-lg: 0 12px 48px rgba(13,31,60,0.18);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Source Sans 3', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 1rem;
}

/* Skip Link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--orange);
  color: var(--white);
  padding: .5rem 1rem;
  border-radius: .25rem;
  font-weight: 700;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--navy);
  box-shadow: 0 2px 16px rgba(0,0,0,.25);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 40px; height: 40px;
  background: var(--orange);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-logo-icon svg { width: 22px; height: 22px; }
.nav-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: .02em;
}
.nav-logo-text span { color: var(--orange); }
.nav-logo-sub {
  font-family: 'Source Sans 3', sans-serif;
  font-size: .7rem;
  font-weight: 300;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: .5rem .85rem;
  border-radius: .25rem;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--white); background: var(--navy-light); }
.nav-links a.active { color: var(--orange); }
.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: .5rem 1.2rem !important;
  border-radius: .35rem !important;
}
.nav-cta:hover { background: var(--orange-dark) !important; }

/* Hamburger */
.nav-toggle {
  display: none;
  background: none; border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1620009822127-9a1ff5dd5fc0?w=1400&h=900&fit=crop&auto=format');
  background-size: cover;
  background-position: center;
  opacity: .25;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,31,60,.95) 0%, rgba(13,31,60,.75) 60%, rgba(242,101,34,.15) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(242,101,34,.15);
  border: 1px solid rgba(242,101,34,.4);
  color: var(--orange);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  animation: fadeUp .6s ease both;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}
.hero h1 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: -.01em;
  animation: fadeUp .7s .1s ease both;
  max-width: 800px;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,.8);
  margin-top: 1.25rem;
  max-width: 560px;
  animation: fadeUp .7s .2s ease both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.25rem;
  animation: fadeUp .7s .3s ease both;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: .4rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(242,101,34,.45);
}
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 6px 28px rgba(242,101,34,.6); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1.15rem; }

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 3rem;
  animation: fadeUp .7s .4s ease both;
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.75);
  font-size: .9rem;
}
.hero-trust-item svg { color: var(--orange); width: 18px; height: 18px; }

/* STATS BAND */
.stats-band {
  background: var(--orange);
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 300px; height: 100%;
  background: rgba(0,0,0,.08);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.stats-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
  position: relative;
  z-index: 1;
}
.stat-item { color: var(--white); }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
  margin-top: .25rem;
  display: block;
}
.stat-divider {
  border-left: 1px solid rgba(255,255,255,.3);
}

/* SECTION BASICS */
.section { padding: 5rem 1.5rem; }
.section-alt { background: var(--off-white); }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .75rem;
}
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -.01em;
}
.section-title span { color: var(--orange); }
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  max-width: 580px;
  margin-top: .75rem;
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: .75rem;
  padding: 1.75rem;
  border: 1px solid var(--gray-light);
  transition: transform .3s, box-shadow .3s, border-color .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px;
  background: rgba(242,101,34,.1);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  color: var(--orange);
}
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .5rem;
  letter-spacing: .02em;
}
.service-card p { color: var(--gray); font-size: .95rem; line-height: 1.6; }
.services-cta { text-align: center; margin-top: 3rem; }

/* ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 1rem;
}
.about-image-wrap {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}
.about-image-wrap img {
  width: 100%; height: 480px;
  object-fit: cover;
  display: block;
}
.about-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--orange);
  color: var(--white);
  padding: 1rem 1.25rem;
  border-radius: .5rem;
  text-align: center;
  font-family: 'Oswald', sans-serif;
}
.about-badge-num { font-size: 2rem; font-weight: 700; line-height: 1; display: block; }
.about-badge-text { font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; opacity: .9; }
.about-text p { color: var(--gray); line-height: 1.75; margin-bottom: 1.25rem; }
.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin-top: 1.5rem;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
}
.highlight-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--orange);
  border-radius: 50%;
  flex-shrink: 0;
}

/* WHY US */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.why-card {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border-radius: .75rem;
  border: 1px solid var(--gray-light);
  transition: box-shadow .3s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-num {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: rgba(242,101,34,.2);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.why-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
.why-card p { color: var(--gray); font-size: .9rem; line-height: 1.55; }

/* SERVICE AREA MAP */
.map-section { background: var(--navy); padding: 5rem 1.5rem; }
.map-section .section-title { color: var(--white); }
.map-section .section-subtitle { color: rgba(255,255,255,.65); }
.map-section .section-tag { color: rgba(242,101,34,.9); }
.map-wrap {
  margin-top: 2.5rem;
  border-radius: 1rem;
  overflow: hidden;
  border: 3px solid rgba(242,101,34,.35);
}
#service-area-map { height: 380px; }

/* BEFORE/AFTER SLIDER */
.ba-section { padding: 5rem 1.5rem; }
.ba-wrapper { max-width: 800px; margin: 2.5rem auto 0; }
.ba-label {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem .75rem;
  border-radius: .25rem;
  margin-bottom: 1rem;
}
.ba-label.after { background: var(--orange); }

/* FAQ */
.faq-section { padding: 5rem 1.5rem; }
.faq-list { max-width: 720px; margin: 2.5rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--gray-light);
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  padding: 1.25rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
  transition: color .2s;
}
.faq-item summary::-webkit-details-marker, .faq-item summary::marker { display: none; content: ''; }
.faq-item[open] summary { color: var(--orange); }
.faq-chevron { transition: transform .3s; flex-shrink: 0; margin-left: 1rem; }
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer { padding: 0 0 1.25rem; color: var(--gray); line-height: 1.7; }
.faq-item summary:focus-visible { outline: 2px solid var(--orange); outline-offset: 2px; border-radius: .2rem; }

/* CONTACT FORM */
.contact-section { padding: 5rem 1.5rem; background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 2.5rem;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.75rem;
}
.contact-info-icon {
  width: 46px; height: 46px;
  background: var(--orange);
  border-radius: .5rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-info-label { font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); margin-bottom: .2rem; }
.contact-info-value { font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.contact-info-value a { color: var(--navy); text-decoration: none; }
.contact-info-value a:hover { color: var(--orange); }

.form-card {
  background: var(--white);
  border-radius: 1rem;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}
.form-title { font-family: 'Oswald', sans-serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: .875rem; font-weight: 600; color: var(--navy); margin-bottom: .4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: .75rem 1rem;
  border: 2px solid var(--gray-light);
  border-radius: .4rem;
  font-family: 'Source Sans 3', sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%;
  padding: .9rem;
  font-size: 1.1rem;
  margin-top: .5rem;
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--navy);
}
.form-success svg { color: var(--orange); margin-bottom: .75rem; }

/* TESTIMONIALS (trust signals) */
.trust-section { padding: 5rem 1.5rem; background: var(--navy); }
.trust-section .section-title { color: var(--white); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}
.trust-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .75rem;
  padding: 1.75rem;
  color: var(--white);
}
.trust-card h3 { font-family: 'Oswald', sans-serif; font-size: 1.15rem; margin-bottom: .5rem; color: var(--orange); }
.trust-card p { color: rgba(255,255,255,.7); font-size: .95rem; line-height: 1.6; }

/* HERO EMERGENCY BAND */
.emergency-band {
  background: var(--orange);
  padding: 1.1rem 1.5rem;
  text-align: center;
}
.emergency-band-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
}
.emergency-band-inner a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.3rem;
}
.emergency-band-inner a:hover { text-decoration: underline; }

/* FOOTER */
.footer {
  background: #060d1a;
  color: rgba(255,255,255,.7);
  padding: 3.5rem 1.5rem 1.5rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand h2 { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: var(--white); margin-bottom: .5rem; }
.footer-brand h2 span { color: var(--orange); }
.footer-brand p { font-size: .9rem; line-height: 1.65; max-width: 300px; margin-bottom: 1rem; }
.footer-license {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: .35rem;
  padding: .4rem .75rem;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.footer-links h3 { font-family: 'Oswald', sans-serif; color: var(--white); font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links ul { list-style: none; }
.footer-links ul li { margin-bottom: .5rem; }
.footer-links ul li a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .9rem; transition: color .2s; }
.footer-links ul li a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .8rem;
  flex-wrap: wrap;
  gap: .5rem;
}
.footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--orange); }

/* FLOATING CTA */
.floating-cta {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  z-index: 50;
  background: var(--orange);
  color: white;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(242,101,34,.5);
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.floating-cta:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(242,101,34,.65); }

/* REVEAL ANIMATIONS */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: .1s; }
.reveal:nth-child(3) { transition-delay: .2s; }
.reveal:nth-child(4) { transition-delay: .3s; }
.reveal:nth-child(5) { transition-delay: .4s; }
.reveal:nth-child(6) { transition-delay: .5s; }

/* Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: none; }
}

/* SERVICES PAGE */
.services-hero {
  background: var(--navy);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.services-hero h1 { font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; color: var(--white); }
.services-hero h1 span { color: var(--orange); }
.services-hero p { color: rgba(255,255,255,.7); font-size: 1.1rem; margin-top: .75rem; }
.breadcrumb { display: flex; gap: .5rem; align-items: center; justify-content: center; margin-bottom: 1rem; font-size: .85rem; }
.breadcrumb a { color: rgba(255,255,255,.5); text-decoration: none; }
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.3); }
.breadcrumb-current { color: var(--orange); }

/* ABOUT PAGE */
.about-hero { background: var(--navy); padding: 8rem 1.5rem 4rem; }
.about-page-content { padding: 5rem 1.5rem; }
.owner-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
  background: var(--off-white);
  border-radius: 1rem;
  overflow: hidden;
}
.owner-img { height: 100%; min-height: 420px; object-fit: cover; width: 100%; }
.owner-info { padding: 2.5rem 2.5rem 2.5rem 0; }
.owner-name { font-family: 'Oswald', sans-serif; font-size: 2rem; font-weight: 700; color: var(--navy); }
.owner-title { color: var(--orange); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; font-size: .9rem; margin-top: .25rem; }
.owner-divider { width: 50px; height: 3px; background: var(--orange); margin: 1rem 0; }
.owner-bio { color: var(--gray); line-height: 1.75; }
.creds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2.5rem; }
.cred-item { background: var(--white); border-radius: .5rem; padding: 1.1rem; border-left: 3px solid var(--orange); }
.cred-label { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.cred-value { font-weight: 700; color: var(--navy); font-size: 1rem; margin-top: .2rem; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-divider:nth-child(4) { border-left: none; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image-wrap img { height: 320px; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > *:first-child { grid-column: 1 / -1; }
  .owner-card { grid-template-columns: 1fr; }
  .owner-img { min-height: 280px; }
  .owner-info { padding: 1.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--navy); padding: 1rem 1.5rem; gap: 0; border-top: 1px solid rgba(255,255,255,.1); }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: .875rem; border-radius: .25rem; }
  .nav-toggle { display: flex; }
  .hero-trust { gap: 1rem; }
  .form-row { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .creds-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .why-grid, .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-divider { border-left: none; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* Focus styles */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: .2rem;
}
img { max-width: 100%; height: auto; }
