:root {
  --navy: #0d1b2e;
  --navy-light: #152540;
  --blue: #4a90d9;
  --yellow: #f5c518;
  --red: #e03a3a;
  --white: #ffffff;
  --gray: #8a9bb0;
  --light-bg: #f0f4f8;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

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

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--yellow); color: var(--navy);
  padding: 12px 20px; font-weight: 800; text-decoration: none;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 2px;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 40px; height: 72px;
  background: rgba(13,27,46,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--yellow);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo-icon {
  width: 46px; height: 46px;
  border: 3px solid var(--yellow);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px; letter-spacing: 1px;
  background: var(--navy);
  flex-shrink: 0;
}
.nav-logo-icon span:first-child { color: var(--blue); }
.nav-logo-icon span:last-child  { color: var(--red); }
.nav-logo-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--white); line-height: 1.2;
}
.nav-logo-text small { color: var(--yellow); font-size: 11px; font-weight: 600; letter-spacing: 1px; display: block; }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a {
  color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 13px; letter-spacing: 1.5px;
  text-transform: uppercase; transition: color .2s;
}
.nav-links a:hover { color: var(--yellow); }
.nav-cta {
  background: var(--yellow); color: var(--navy);
  padding: 10px 22px; border-radius: 4px;
  font-weight: 800; font-size: 13px; letter-spacing: 1px;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #ffd94d; transform: translateY(-1px); }

/* dropdown for services */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 10px; }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: -16px;
  min-width: 300px; list-style: none;
  background: var(--navy-light);
  border: 1px solid rgba(245,197,24,.25);
  border-radius: 8px; padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .18s, transform .18s, visibility .18s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav-dropdown-menu li { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 10px 14px; border-radius: 6px;
  font-size: 13px; letter-spacing: .5px; text-transform: none;
  font-weight: 600; line-height: 1.4;
}
.nav-dropdown-menu a:hover { background: rgba(245,197,24,.12); color: var(--yellow); }

/* mobile nav */
.nav-toggle {
  display: none;
  background: transparent; border: 2px solid rgba(255,255,255,.25);
  color: var(--white); width: 44px; height: 44px;
  border-radius: 6px; font-size: 20px; line-height: 1;
  cursor: pointer;
}
.nav-toggle:hover { border-color: var(--yellow); color: var(--yellow); }
.mobile-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 99;
  background: var(--navy-light);
  border-bottom: 3px solid var(--yellow);
  max-height: calc(100vh - 72px); overflow-y: auto;
  padding: 12px 20px 24px;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { list-style: none; }
.mobile-nav a {
  display: block; padding: 14px 4px;
  color: var(--white); text-decoration: none;
  font-weight: 600; font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:hover, .mobile-nav a:focus { color: var(--yellow); }
.mobile-nav .mn-head {
  font-size: 11px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
  padding: 16px 4px 6px;
}
.mobile-nav .mn-call {
  display: block; margin-top: 18px; text-align: center;
  background: var(--yellow); color: var(--navy);
  padding: 15px; border-radius: 8px;
  font-weight: 800; letter-spacing: 1px; text-transform: uppercase;
  border-bottom: none;
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  background: var(--navy);
  padding-top: 72px;
}
.hero-bg-stripes {
  position: absolute; inset: 0; opacity: .04;
  background: repeating-linear-gradient(
    -45deg, var(--yellow) 0, var(--yellow) 2px, transparent 2px, transparent 40px
  );
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,217,.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.3);
  padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 20px;
}
.hero-badge::before { content: '★'; font-size: 10px; }
h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7.5vw, 96px);
  line-height: .95;
  letter-spacing: 2px;
}
h1 .line-blue { color: var(--blue); }
h1 .line-yellow { color: var(--yellow); }
h1 .line-red { color: var(--red); }
.hero-sub {
  margin-top: 20px; font-size: 18px; color: var(--gray);
  font-weight: 500; line-height: 1.6; max-width: 480px;
}
.hero-sub strong { color: var(--white); }
.hero-btns { display: flex; gap: 16px; margin-top: 36px; flex-wrap: wrap; }
.btn-primary {
  background: var(--yellow); color: var(--navy);
  padding: 16px 32px; border-radius: 6px;
  font-weight: 800; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 4px 20px rgba(245,197,24,.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(245,197,24,.5); }
.btn-outline {
  border: 2px solid rgba(255,255,255,.25); color: var(--white);
  padding: 16px 32px; border-radius: 6px;
  font-weight: 700; font-size: 14px; letter-spacing: 1.5px;
  text-transform: uppercase; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

.hero-stats {
  display: flex; gap: 32px; margin-top: 48px; flex-wrap: wrap;
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px; line-height: 1; color: var(--yellow);
}
.stat-label { font-size: 12px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); }

.hero-logo-wrap {
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.hero-logo-ring {
  width: 280px; height: 280px; border-radius: 50%;
  border: 8px solid var(--yellow);
  display: flex; align-items: center; justify-content: center;
  background: var(--navy-light);
  position: relative;
  box-shadow: 0 0 60px rgba(245,197,24,.2), 0 0 120px rgba(74,144,217,.1);
  animation: pulse-ring 3s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%,100% { box-shadow: 0 0 60px rgba(245,197,24,.2), 0 0 120px rgba(74,144,217,.1); }
  50% { box-shadow: 0 0 80px rgba(245,197,24,.4), 0 0 150px rgba(74,144,217,.2); }
}
.hero-logo-letters {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 120px; line-height: 1; letter-spacing: -4px;
}
.hero-logo-letters .e { color: var(--blue); }
.hero-logo-letters .p { color: var(--red); }

/* ── INNER PAGE HERO ── */
.page-hero {
  background: var(--navy);
  position: relative; overflow: hidden;
  padding: 140px 40px 72px;
}
.page-hero .hero-bg-stripes { opacity: .04; }
.page-hero-inner { position: relative; z-index: 2; max-width: 1100px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(40px, 6vw, 72px);
  color: var(--white); margin-top: 14px;
}
.page-hero h1 .accent { color: var(--yellow); }
.page-hero-sub {
  margin-top: 18px; font-size: 18px; color: var(--gray);
  line-height: 1.65; max-width: 720px;
}
.page-hero-sub strong { color: var(--white); }
.page-hero-btns { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

.breadcrumbs { font-size: 13px; color: var(--gray); }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.breadcrumbs li:not(:last-child)::after { content: '›'; margin-left: 8px; color: rgba(255,255,255,.3); }
.breadcrumbs a { color: var(--blue); text-decoration: none; font-weight: 600; }
.breadcrumbs a:hover { color: var(--yellow); text-decoration: underline; }

/* ── SECTION HEADERS ── */
.section-header { text-align: center; margin-bottom: 64px; }
.section-tag {
  display: inline-block;
  font-size: 12px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 2px; line-height: 1;
  color: var(--navy);
}
.section-title .accent { color: var(--blue); }
.section-sub { font-size: 17px; color: #5a6a7e; margin-top: 12px; max-width: 620px; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ── SERVICES ── */
#services {
  background: var(--light-bg);
  color: var(--navy);
  padding: 100px 40px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; max-width: 1100px; margin: 0 auto;
}
.service-card {
  background: var(--navy);
  border-radius: 12px; padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform .2s, box-shadow .2s;
  border-top: 4px solid transparent;
  display: block; text-decoration: none;
  color: inherit;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 14px 40px rgba(0,0,0,.28); }
.service-card.c-blue { border-top-color: var(--blue); }
.service-card.c-red { border-top-color: var(--red); }
.service-card.c-yellow { border-top-color: var(--yellow); }
.service-card.c-blue2 { border-top-color: #6bb5f5; }
.service-icon { font-size: 42px; margin-bottom: 16px; }
.service-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 22px; color: var(--white);
  margin-bottom: 10px; letter-spacing: .5px;
}
.service-desc { color: var(--gray); font-size: 15px; line-height: 1.65; }
.service-link {
  display: inline-block; margin-top: 18px;
  color: var(--yellow); font-weight: 800;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
}
.service-card:hover .service-link { color: #ffd94d; }

/* ── BEFORE/AFTER ── */
#gallery { padding: 100px 40px; background: var(--navy); }
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; max-width: 1100px; margin: 0 auto;
}
.gallery-grid.cols-2 { grid-template-columns: repeat(2, 1fr); max-width: 780px; }
.ba-card {
  border-radius: 12px; overflow: hidden;
  position: relative; background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.08);
}
.ba-split {
  display: grid; grid-template-columns: 1fr 1fr;
  height: 220px;
}
.ba-side {
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.ba-side img { width: 100%; height: 100%; object-fit: cover; }
.ba-divider {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 3px; background: var(--yellow); z-index: 5;
  transform: translateX(-50%);
}
.ba-divider::before {
  content: '◄►'; position: absolute;
  top: 50%; transform: translate(-50%, -50%);
  color: var(--navy);
  background: var(--yellow); border-radius: 50%;
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  font-size: 8px; left: 50%;
}
.ba-labels { display: grid; grid-template-columns: 1fr 1fr; }
.ba-label {
  padding: 10px 14px; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.ba-label.before { background: rgba(224,58,58,.15); color: var(--red); }
.ba-label.after  { background: rgba(74,144,217,.15); color: var(--blue); }
.ba-title { padding: 14px 16px; font-weight: 700; font-size: 14px; color: var(--white); }
.gallery-note { text-align: center; margin-top: 36px; color: var(--gray); font-size: 14px; line-height: 1.7; }
.gallery-note a { font-weight: 700; text-decoration: none; }
.gallery-note a.fb-link { color: var(--blue); }
.gallery-note a.nd-link { color: var(--yellow); }
.gallery-note a:hover { text-decoration: underline; }

/* ── PROJECT GALLERY (variable-ratio, no crop, no layout shift) ──
   Images carry real width/height attributes and scale with width:100%;height:auto,
   so the browser reserves the correct box from the intrinsic ratio before load.
   Aspect ratios are preserved exactly; tiles are allowed to differ in height. */
.project-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px; max-width: 1100px; margin: 0 auto; align-items: start;
}
.pg-item {
  border-radius: 12px; overflow: hidden; background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.08);
}
.pg-media { position: relative; display: block; }
.pg-media img { width: 100%; height: auto; display: block; }
.pg-tag {
  position: absolute; top: 10px; left: 10px; z-index: 4;
  padding: 5px 10px; border-radius: 4px;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  background: rgba(13,27,46,.88); color: var(--white);
}
.pg-tag.before  { background: rgba(224,58,58,.92); }
.pg-tag.after   { background: rgba(74,144,217,.92); }
.pg-tag.project { background: rgba(245,197,24,.92); color: var(--navy); }
.pg-caption {
  padding: 13px 16px; font-size: 13.5px; line-height: 1.6; color: var(--gray);
}
.pg-caption strong { color: var(--white); font-size: 14px; display: block; margin-bottom: 3px; }
.pg-subhead {
  max-width: 1100px; margin: 0 auto 22px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.pg-subhead h3 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 24px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--white); margin-bottom: 8px;
}
.pg-subhead h3 .accent { color: var(--yellow); }
.pg-subhead p { font-size: 14px; line-height: 1.7; color: var(--gray); }

/* paired before/after panel — ratio preserved, no crop */
.pg-pair {
  border: 1px solid rgba(255,255,255,.1); border-radius: 12px; overflow: hidden;
  background: var(--navy-light); max-width: 1100px; margin: 0 auto 20px;
}
.pg-pair-imgs { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pg-pair-caption { padding: 15px 18px; font-size: 13.5px; line-height: 1.7; color: var(--gray); }
.pg-pair-caption strong { color: var(--white); font-size: 14px; display: block; margin-bottom: 4px; }
@media (max-width: 600px) { .pg-pair-imgs { grid-template-columns: 1fr; } }

/* ── SUPPLIED / BUSINESS-PROVIDED GRAPHICS ── */
.supplied-graphic {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  background: var(--white); border: 1px solid #dbe3ec; border-radius: 12px;
  padding: 20px; max-width: 420px; margin: 0 auto;
}
.supplied-graphic img { width: 100%; height: auto; display: block; border-radius: 8px; }
.supplied-graphic figcaption {
  font-size: 12.5px; line-height: 1.65; color: #4a5568; text-align: center;
}
.payment-graphic {
  background: var(--white); border: 1px solid #dbe3ec; border-radius: 12px;
  padding: 18px; margin: 22px 0 0;
}
.payment-graphic img { width: 100%; height: auto; display: block; border-radius: 6px; }
.payment-graphic figcaption {
  font-size: 12.5px; line-height: 1.7; color: #4a5568; margin-top: 12px;
}
@media (max-width: 600px) {
  .project-gallery { grid-template-columns: 1fr; gap: 16px; }
  .pg-subhead h3 { font-size: 20px; }
}

/* ── TRUST / PROOF ── */
#trust { background: var(--light-bg); color: var(--navy); padding: 100px 40px; }
.trust-badges-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; max-width: 1100px; margin: 0 auto 56px;
}
.trust-badge-card {
  background: var(--white); border-radius: 12px; padding: 30px 26px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  border-left: 4px solid var(--yellow);
}
.trust-badge-card.b-blue { border-left-color: var(--blue); }
.trust-badge-card.b-red { border-left-color: var(--red); }
.trust-badge-icon { font-size: 30px; margin-bottom: 12px; }
.trust-badge-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 21px; color: var(--navy);
  margin-bottom: 8px; letter-spacing: .5px;
}
.trust-badge-text { font-size: 14px; color: #4a5568; line-height: 1.7; }

.proof-panel {
  max-width: 1100px; margin: 0 auto;
  background: var(--navy); color: var(--white);
  border-radius: 16px; padding: 48px 44px;
  border-top: 4px solid var(--blue);
}
.proof-panel h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 42px); letter-spacing: 1.5px;
  color: var(--white); line-height: 1.05;
}
.proof-panel h3 .accent { color: var(--yellow); }
.proof-intro { color: var(--gray); font-size: 16px; line-height: 1.7; margin-top: 14px; max-width: 760px; }
.proof-list {
  list-style: none; margin-top: 30px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 14px 30px;
}
.proof-list li {
  padding-left: 30px; position: relative;
  font-size: 15px; line-height: 1.6; color: var(--white);
}
.proof-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--yellow); font-weight: 800;
}
.proof-note {
  margin-top: 30px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px; color: var(--gray); line-height: 1.7;
}
.reviews-cta-panel {
  max-width: 1100px; margin: 32px auto 0;
  background: var(--white); border-radius: 16px; padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  text-align: center;
}
.reviews-cta-panel h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; color: var(--navy); font-weight: 700;
}
.reviews-cta-panel p { color: #4a5568; font-size: 15px; line-height: 1.7; margin-top: 10px; max-width: 620px; margin-left: auto; margin-right: auto; }
.reviews-cta-panel .social-links { justify-content: center; }
.google-review-button {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: min(100%, 620px); min-height: 108px; margin: 26px auto 0; padding: 20px 28px;
  border: 3px solid var(--yellow); border-radius: 14px;
  background: var(--navy); color: var(--white); text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(24px, 4vw, 34px);
  font-weight: 800; line-height: 1.1; letter-spacing: .3px;
  box-shadow: 0 8px 22px rgba(13,27,46,.2);
  transition: transform .15s, box-shadow .15s, background .15s;
}
.google-review-button:hover,
.google-review-button:focus-visible {
  transform: translateY(-2px); background: #172b46;
  box-shadow: 0 12px 28px rgba(13,27,46,.28);
}
.google-review-button:focus-visible { outline: 3px solid #4285f4; outline-offset: 4px; }
.google-review-stars { color: var(--yellow); font-size: 23px; letter-spacing: 3px; margin-bottom: 8px; }

/* ── WHY US ── */
#why { background: var(--navy-light); padding: 100px 40px; }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  max-width: 1100px; margin: 0 auto; align-items: center;
}
.why-item { display: flex; gap: 20px; margin-bottom: 36px; }
.why-icon {
  min-width: 56px; height: 56px;
  background: rgba(245,197,24,.1); border: 1px solid rgba(245,197,24,.3);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 24px;
}
.why-title { font-weight: 700; font-size: 17px; margin-bottom: 6px; }
.why-desc { color: var(--gray); font-size: 14px; line-height: 1.65; }
.why-visual {
  background: var(--navy); border-radius: 16px; padding: 48px;
  text-align: center; border: 1px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden;
}
.why-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(245,197,24,.08), transparent 70%);
}
.big-years {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 130px; line-height: 1; color: var(--yellow);
  letter-spacing: -4px; position: relative; z-index: 1;
}
.big-years-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--white); position: relative; z-index: 1;
}
.big-years-sub { color: var(--gray); font-size: 14px; margin-top: 8px; position: relative; z-index: 1; }
.cert-badges { display: flex; justify-content: center; gap: 12px; margin-top: 28px; flex-wrap: wrap; position: relative; z-index: 1; }
.cert-badge {
  background: rgba(74,144,217,.15); border: 1px solid rgba(74,144,217,.3);
  color: var(--blue); padding: 6px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
}

/* ── CONTENT SECTIONS (service pages) ── */
.content-section { background: var(--light-bg); color: var(--navy); padding: 90px 40px; }
.content-section.on-navy { background: var(--navy); color: var(--white); }
.content-section.on-navy-light { background: var(--navy-light); color: var(--white); }
.content-wrap { max-width: 860px; margin: 0 auto; }
.content-wrap.wide { max-width: 1100px; }
.content-wrap h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px); letter-spacing: 1.5px;
  line-height: 1.02; margin-bottom: 20px;
}
.content-section.on-navy .content-wrap h2,
.content-section.on-navy-light .content-wrap h2 { color: var(--white); }
.content-wrap h2 .accent { color: var(--blue); }
.content-section.on-navy .content-wrap h2 .accent,
.content-section.on-navy-light .content-wrap h2 .accent { color: var(--yellow); }
.content-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px; font-weight: 700; letter-spacing: .5px;
  margin: 36px 0 12px;
}
.content-section.on-navy .content-wrap h3,
.content-section.on-navy-light .content-wrap h3 { color: var(--yellow); }
.content-wrap p { font-size: 16.5px; line-height: 1.8; color: #43536b; margin-bottom: 18px; }
.content-section.on-navy .content-wrap p,
.content-section.on-navy-light .content-wrap p { color: var(--gray); }
.content-wrap p strong { color: var(--navy); }
.content-section.on-navy .content-wrap p strong,
.content-section.on-navy-light .content-wrap p strong { color: var(--white); }
.content-wrap a { color: #1e63a8; font-weight: 600; }
.content-section.on-navy .content-wrap a,
.content-section.on-navy-light .content-wrap a { color: var(--blue); }
.content-wrap a:hover { color: var(--red); }
.content-section.on-navy .content-wrap a:hover,
.content-section.on-navy-light .content-wrap a:hover { color: var(--yellow); }

.check-list { list-style: none; margin: 20px 0 26px; }
.check-list li {
  padding-left: 32px; position: relative;
  font-size: 16px; line-height: 1.7; margin-bottom: 12px; color: #43536b;
}
.content-section.on-navy .check-list li,
.content-section.on-navy-light .check-list li { color: var(--gray); }
.check-list li::before {
  content: '✓'; position: absolute; left: 0; top: 0;
  color: var(--blue); font-weight: 800; font-size: 17px;
}
.content-section.on-navy .check-list li::before,
.content-section.on-navy-light .check-list li::before { color: var(--yellow); }
.check-list li strong { color: var(--navy); }
.content-section.on-navy .check-list li strong,
.content-section.on-navy-light .check-list li strong { color: var(--white); }

/* ── PRICING ── */
.pricing-table {
  background: var(--white); border-radius: 14px; overflow: hidden;
  box-shadow: 0 6px 30px rgba(0,0,0,.09);
  margin: 26px 0;
}
.content-section.on-navy .pricing-table,
.content-section.on-navy-light .pricing-table {
  background: var(--navy-light); box-shadow: none;
  border: 1px solid rgba(255,255,255,.1);
}
.pricing-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 20px;
  padding: 20px 26px; border-bottom: 1px solid rgba(0,0,0,.07);
  flex-wrap: wrap;
}
.content-section.on-navy .pricing-row,
.content-section.on-navy-light .pricing-row { border-bottom-color: rgba(255,255,255,.08); }
.pricing-row:last-child { border-bottom: none; }
.pricing-row .label { font-weight: 700; font-size: 16px; color: var(--navy); }
.content-section.on-navy .pricing-row .label,
.content-section.on-navy-light .pricing-row .label { color: var(--white); }
.pricing-row .label small { display: block; font-weight: 500; font-size: 13.5px; color: #6b7a90; margin-top: 4px; line-height: 1.5; }
.content-section.on-navy .pricing-row .label small,
.content-section.on-navy-light .pricing-row .label small { color: var(--gray); }
.pricing-row .value {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800; font-size: 22px; color: var(--blue);
  white-space: nowrap;
}
.content-section.on-navy .pricing-row .value,
.content-section.on-navy-light .pricing-row .value { color: var(--yellow); }
.pricing-row.highlight { background: rgba(245,197,24,.1); }
.pricing-note {
  background: rgba(224,58,58,.07);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px; margin: 24px 0;
  font-size: 14.5px; line-height: 1.75; color: #43536b;
}
.content-section.on-navy .pricing-note,
.content-section.on-navy-light .pricing-note {
  background: rgba(224,58,58,.12); color: var(--gray);
}
.pricing-note strong { color: var(--navy); }
.content-section.on-navy .pricing-note strong,
.content-section.on-navy-light .pricing-note strong { color: var(--white); }

/* ── POLICY CARDS ── */
.policy-section { background: var(--navy); padding: 90px 40px; }
.policy-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px; max-width: 1100px; margin: 0 auto;
}
.policy-card {
  background: var(--navy-light); border-radius: 12px;
  padding: 30px 28px; border: 1px solid rgba(255,255,255,.08);
  border-top: 3px solid var(--yellow);
}
.policy-card.p-blue { border-top-color: var(--blue); }
.policy-card.p-red { border-top-color: var(--red); }
.policy-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--white);
  margin-bottom: 10px; letter-spacing: .5px;
}
.policy-card p { color: var(--gray); font-size: 14.5px; line-height: 1.7; }
.policy-card p strong { color: var(--white); }

/* ── FAQ ── */
.faq-section { background: var(--light-bg); color: var(--navy); padding: 90px 40px; }
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item {
  background: var(--white); border-radius: 10px;
  margin-bottom: 14px; overflow: hidden;
  box-shadow: 0 3px 16px rgba(0,0,0,.06);
}
.faq-item summary {
  cursor: pointer; list-style: none;
  padding: 22px 26px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 19px; color: var(--navy);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+'; color: var(--blue); font-size: 26px;
  font-family: 'Barlow', sans-serif; line-height: 1; flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item[open] summary { color: var(--blue); }
.faq-answer { padding: 0 26px 24px; }
.faq-answer p { font-size: 15.5px; line-height: 1.8; color: #43536b; margin: 0; }

/* ── SERVICE AREAS ── */
.areas-section { background: var(--navy-light); padding: 90px 40px; }
.areas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px; max-width: 1100px; margin: 0 auto;
}
.area-card {
  background: var(--navy); border-radius: 12px;
  padding: 28px 26px; border: 1px solid rgba(255,255,255,.08);
}
.area-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 21px; font-weight: 700; color: var(--yellow);
  margin-bottom: 10px; letter-spacing: .5px;
}
.area-card p { color: var(--gray); font-size: 14.5px; line-height: 1.7; }

/* ── RELATED SERVICES ── */
.related-services { background: var(--navy); padding: 80px 40px; }
.related-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px; max-width: 1100px; margin: 0 auto;
}
.related-grid a {
  display: block; background: var(--navy-light);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 22px 24px;
  text-decoration: none; transition: transform .18s, border-color .18s;
}
.related-grid a:hover { transform: translateY(-3px); border-color: var(--yellow); }
.related-grid .rel-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 18px; color: var(--white);
  margin-bottom: 6px; letter-spacing: .5px;
}
.related-grid .rel-desc { color: var(--gray); font-size: 13.5px; line-height: 1.6; }

/* ── FINAL CTA ── */
.final-cta {
  background: var(--navy-light);
  border-top: 3px solid var(--yellow);
  padding: 76px 40px; text-align: center;
}
.final-cta h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(34px, 5vw, 56px); letter-spacing: 2px;
  color: var(--white); line-height: 1.02;
}
.final-cta h2 .accent { color: var(--yellow); }
.final-cta p { color: var(--gray); font-size: 17px; line-height: 1.7; margin: 16px auto 0; max-width: 620px; }
.final-cta .hero-btns { justify-content: center; }

/* ── CONTACT ── */
#contact { padding: 100px 40px; background: var(--navy); }
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  max-width: 1100px; margin: 0 auto; align-items: start;
}
.contact-info-block { margin-bottom: 32px; display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  min-width: 48px; height: 48px; border-radius: 10px;
  background: rgba(245,197,24,.12); border: 1px solid rgba(245,197,24,.25);
  display: flex; align-items: center; justify-content: center; font-size: 22px;
}
.contact-info-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); margin-bottom: 4px; }
.contact-info-val { font-size: 17px; font-weight: 600; color: var(--white); }
.contact-info-val a { color: var(--white); text-decoration: none; }
.contact-info-val a:hover { color: var(--yellow); text-decoration: underline; }

.social-links { display: flex; gap: 12px; margin-top: 32px; flex-wrap: wrap; }
.social-link {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 700; text-decoration: none;
  transition: transform .15s, opacity .15s;
}
.social-link:hover { transform: translateY(-2px); opacity: .85; }
.social-link.fb { background: #1877f2; color: var(--white); }
.social-link.nd { background: #8ed500; color: #17300a; }
.social-link.tt { background: #010101; color: var(--white); border: 1px solid rgba(255,255,255,.15); }

/* Form */
.contact-form { background: var(--navy-light); border-radius: 16px; padding: 40px; border: 1px solid rgba(255,255,255,.08); }
.form-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--white);
  margin-bottom: 6px;
}
.form-sub { color: var(--gray); font-size: 14px; margin-bottom: 28px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-bottom: 8px; }
input, textarea, select {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.06); border: 1.5px solid rgba(255,255,255,.12);
  border-radius: 8px; color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 15px; transition: border-color .2s;
  outline: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.42); }
input:focus, textarea:focus, select:focus { border-color: var(--yellow); }
select option { background: var(--navy); }
textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; padding: 16px;
  background: var(--yellow); color: var(--navy);
  border: none; border-radius: 8px;
  font-family: 'Barlow', sans-serif; font-weight: 800;
  font-size: 15px; letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; margin-top: 8px;
  transition: background .2s, transform .15s;
}
.form-submit:hover { background: #ffd94d; transform: translateY(-1px); }
.form-success {
  display: none; text-align: center; padding: 24px;
  background: rgba(74,144,217,.15); border-radius: 8px;
  border: 1px solid rgba(74,144,217,.3);
  color: var(--blue); font-weight: 600; font-size: 16px; line-height: 1.6;
}
.form-legal { color: var(--gray); font-size: 12.5px; line-height: 1.6; margin-top: 14px; }

/* ── FOOTER ── */
footer {
  background: #050d18;
  border-top: 3px solid var(--yellow);
  padding: 56px 40px 32px;
}
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-brand { text-align: center; margin-bottom: 44px; }
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px; letter-spacing: 3px;
}
.footer-logo .e { color: var(--blue); }
.footer-logo .dash { color: var(--yellow); }
.footer-logo .p { color: var(--red); }
.footer-logo .rest { color: var(--white); }
.footer-tagline { color: var(--gray); font-size: 13px; margin-top: 6px; }
.footer-cols {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px; text-align: left;
}
.footer-col h2, .footer-col .fc-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 800; color: var(--yellow);
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a { color: var(--gray); text-decoration: none; font-size: 14px; line-height: 1.5; transition: color .2s; }
.footer-col a:hover { color: var(--yellow); text-decoration: underline; }
.footer-col p { color: var(--gray); font-size: 14px; line-height: 1.7; }
.footer-legal {
  margin-top: 44px; padding-top: 26px;
  border-top: 1px solid rgba(255,255,255,.09);
  text-align: center;
}
.footer-legal p { color: #56687f; font-size: 12.5px; line-height: 1.75; max-width: 900px; margin: 0 auto 10px; }
.footer-copy { color: #3a4a5e; font-size: 12px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.anim { opacity: 0; animation: fadeUp .7s ease forwards; }
.d1 { animation-delay: .1s; }
.d2 { animation-delay: .25s; }
.d3 { animation-delay: .4s; }
.d4 { animation-delay: .55s; }
.d5 { animation-delay: .7s; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-logo-wrap { order: -1; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .form-row { grid-template-columns: 1fr; }
  .proof-panel { padding: 36px 26px; }
}
@media (max-width: 600px) {
  nav { padding: 0 16px; gap: 10px; }
  .nav-logo-text { font-size: 15px; }
  .nav-cta { display: none; }
  .gallery-grid, .gallery-grid.cols-2 { grid-template-columns: 1fr; }
  #services, #gallery, #trust, #why, #contact,
  .content-section, .faq-section, .policy-section,
  .areas-section, .related-services, .final-cta { padding-left: 20px; padding-right: 20px; }
  #services, #gallery, #trust, #why, #contact { padding-top: 64px; padding-bottom: 64px; }
  .content-section, .faq-section, .policy-section, .areas-section { padding-top: 60px; padding-bottom: 60px; }
  .page-hero { padding: 112px 20px 56px; }
  .hero-logo-ring { width: 200px; height: 200px; }
  .hero-logo-letters { font-size: 84px; }
  .contact-form { padding: 28px 20px; }
  .reviews-cta-panel { padding: 30px 22px; }
  .google-review-button { min-height: 96px; padding: 18px 16px; }
  footer { padding: 44px 20px 28px; }
  .ba-split { height: 180px; }
  .pricing-row { padding: 18px 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim, .reveal {
    animation: none !important; transition: none !important;
    opacity: 1 !important; transform: none !important;
  }
  .hero-logo-ring { animation: none !important; }
  .service-card:hover, .related-grid a:hover, .btn-primary:hover,
  .social-link:hover, .trust-badge-card:hover { transform: none !important; }
}
