:root {
  color-scheme: light;
  --white: #ffffff;
  --paper: #f7f9ff;
  --ink: #102033;
  --muted: #5b6b82;
  --royal: #0F4C81;
  --royal-2: #2563EB;
  --blue-soft: #eaf1ff;
  --gold: #d8a72f;
  --gold-2: #f4d47a;
  --line: rgba(16, 32, 51, 0.12);
  --shadow: 0 18px 50px rgba(7, 38, 93, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  scrollbar-gutter: stable;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
  overscroll-behavior-y: contain;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

a,
button {
  -webkit-tap-highlight-color: transparent;
}

svg {
  width: 1.1em;
  height: 1.1em;
  fill: currentColor;
  flex: 0 0 auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 100;
  background: var(--gold);
  color: #111;
  padding: .75rem 1rem;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: .75rem;
  padding: .7rem clamp(1rem, 3vw, 2rem);
  background: color-mix(in srgb, var(--white) 88%, transparent);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--royal), var(--royal-2));
  color: #fff;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(11, 79, 216, .24);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand small {
  color: var(--muted);
  font-size: .77rem;
  margin-top: .15rem;
}

.site-nav {
  position: fixed;
  inset: 72px 0 auto 0;
  display: none;
  grid-template-columns: 1fr;
  gap: .25rem;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: grid;
}

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 800;
  padding: .8rem .9rem;
  border-radius: var(--radius);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--royal);
  background: var(--blue-soft);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
}

.icon-btn,
.nav-call,
.btn {
  min-height: 44px;
}

.icon-btn {
  display: inline-grid;
  place-items: center;
  width: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.nav-call {
  display: none;
  align-items: center;
  gap: .4rem;
  padding: 0 .9rem;
  border-radius: var(--radius);
  background: var(--royal);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-overlay,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 900ms ease, transform 2800ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay,
.inner-hero-overlay {
  background: linear-gradient(90deg, rgba(4, 20, 54, .86), rgba(4, 20, 54, .48) 46%, rgba(4, 20, 54, .18));
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 9rem) 0 2rem;
  display: grid;
  gap: 1rem;
}

.hero-copy {
  color: #fff;
  max-width: 760px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  color: var(--gold-2);
  font-weight: 900;
  text-transform: uppercase;
  font-size: .76rem;
  letter-spacing: .08em;
}

.hero h1,
.inner-hero h1,
.page-title h1 {
  margin: .6rem 0 1rem;
  font-size: 2.45rem;
  line-height: .96;
  letter-spacing: 0;
  max-width: 980px;
}

.hero p,
.inner-hero p,
.page-title p {
  color: rgba(255, 255, 255, .86);
  font-size: 1.04rem;
  line-height: 1.72;
  max-width: 780px;
}

.hero-actions,
.cta-actions,
.center-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .85rem 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 900;
  cursor: pointer;
}

.btn-primary {
  background: var(--gold);
  color: #111;
}

.btn-glass,
.btn-light {
  background: rgba(255, 255, 255, .14);
  border-color: rgba(255, 255, 255, .34);
  color: #fff;
  backdrop-filter: blur(12px);
}

.btn-secondary {
  background: var(--royal);
  color: #fff;
}

.btn-gold {
  background: var(--gold);
  color: #111;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.1rem;
}

.hero-badges span,
.tag-cloud span,
.industry-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: .45rem .65rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-weight: 800;
}

.lead-form {
  display: grid;
  gap: .85rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--white) 94%, transparent);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero .lead-form {
  background: rgba(255, 255, 255, .92);
  color: #102033;
  backdrop-filter: blur(18px);
}

.lead-form h2,
.section-head h2,
.deep-card h2,
.latest-blog h2,
.contact-card h2,
.article-content h2 {
  margin: .35rem 0 .45rem;
  font-size: 1.82rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.lead-form p,
.section-head p,
.deep-card p,
.article-content p,
.service-card p,
.feature-grid p,
.area-card p,
.blog-card p {
  color: var(--muted);
  line-height: 1.72;
}

.hero .lead-form p,
.hero .lead-form .eyebrow,
.hero .lead-form a {
  color: #0F4C81;
}

.lead-form label {
  display: grid;
  gap: .35rem;
  font-weight: 900;
  color: var(--ink);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  min-height: 46px;
  padding: .75rem .8rem;
  font: inherit;
}

.lead-form textarea {
  resize: vertical;
}

.form-note {
  margin: 0;
  font-size: .9rem;
}

.stats-strip,
.split-section,
.section-band,
.deep-grid,
.process-section,
.industries-section,
.reviews-section,
.map-section,
.service-layout,
.page-title,
.contact-grid,
.cta-band {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
}

.stats-strip {
  transform: translateY(-1.2rem);
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .7rem;
}

.stats-strip div {
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.stats-strip strong {
  display: block;
  color: var(--royal);
  font-size: 1.7rem;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 800;
  font-size: .9rem;
}

.split-section,
.process-section,
.service-layout,
.contact-grid {
  display: grid;
  gap: 1.2rem;
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-band,
.deep-grid,
.industries-section,
.reviews-section,
.map-section {
  padding: clamp(3rem, 8vw, 6rem) 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 1.4rem;
}

.section-head .eyebrow,
.page-title .eyebrow,
.article-content .eyebrow,
.lead-form:not(.hero .lead-form) .eyebrow {
  color: var(--royal);
}

.section-head h2 {
  margin-top: .55rem;
}

.feature-grid,
.services-grid,
.review-grid,
.cert-grid,
.area-card-grid,
.blog-grid,
.gallery-grid {
  display: grid;
  gap: 1rem;
}

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

.feature-grid.compact {
  grid-template-columns: 1fr;
  margin: 1.2rem 0;
}

.feature-grid article,
.service-card,
.deep-card,
.review-grid article,
.cert-grid div,
.latest-blog,
.contact-card,
.aside-card,
.area-card,
.blog-card,
.gallery-grid figure,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.feature-grid article {
  padding: 1rem;
}

.feature-grid article svg {
  color: var(--gold);
  font-size: 1.55rem;
}

.feature-grid article h3,
.deep-card h3,
.service-card h3,
.service-card h2,
.area-card h2,
.blog-card h2 {
  margin: .7rem 0 .4rem;
  font-size: 1.18rem;
  line-height: 1.18;
}

.feature-pill {
  display: flex;
  align-items: center;
  gap: .55rem;
  min-height: 44px;
  padding: .7rem .8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-weight: 850;
}

.feature-pill svg {
  color: var(--royal);
}

.image-panel {
  min-height: 320px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  background: var(--blue-soft);
}

.panel-img,
.inner-hero-img,
.service-card-img,
.deep-img,
.gallery-img,
.blog-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.service-card {
  overflow: hidden;
}

.service-card-img {
  aspect-ratio: 16 / 10;
}

.service-card div {
  padding: 1rem;
}

.service-card span,
.blog-card span {
  color: var(--royal);
  font-weight: 900;
  font-size: .82rem;
  text-transform: uppercase;
}

.service-card a,
.area-card a,
.blog-card a,
.latest-blog a {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  color: var(--royal);
  font-weight: 900;
  text-decoration: none;
}

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

.deep-card {
  overflow: hidden;
}

.deep-card > :not(img) {
  margin-left: 1rem;
  margin-right: 1rem;
}

.deep-card ul,
.article-content ul,
.aside-card ul,
.footer-grid ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

.deep-img {
  aspect-ratio: 16 / 10;
}

.process-list {
  display: grid;
  gap: .8rem;
  padding: 0;
  margin: 1rem 0 0;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .8rem;
  padding: .9rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--paper);
}

.process-list span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  background: var(--royal);
  color: #fff;
  font-weight: 900;
}

.process-list h3 {
  margin: 0 0 .25rem;
}

.process-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.industry-list,
.location-chip-grid,
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.industry-list span,
.tag-cloud span {
  color: var(--ink);
  background: var(--paper);
  border-color: var(--line);
}

.location-chip-grid a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 40px;
  padding: .55rem .7rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--royal);
  text-decoration: none;
  font-weight: 850;
}

.location-chip-grid.compact a {
  font-size: .92rem;
}

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

.gallery-grid figure {
  margin: 0;
  overflow: hidden;
}

.gallery-img {
  aspect-ratio: 1 / 1;
  transition: transform 300ms ease;
}

.gallery-grid figure:hover .gallery-img {
  transform: scale(1.04);
}

.gallery-grid figcaption {
  padding: .65rem .75rem;
  color: var(--muted);
  font-weight: 850;
}

.center-actions {
  justify-content: center;
  margin-top: 1.2rem;
}

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

.review-grid article {
  padding: 1rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0;
}

.google-review-card {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-radius: var(--radius);
  background: var(--blue-soft);
  border: 1px solid var(--line);
}

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

.cert-grid div {
  padding: 1rem;
}

.cert-grid svg {
  color: var(--gold);
  font-size: 1.4rem;
}

.latest-blog {
  padding: 1rem;
}

.latest-blog a {
  display: grid;
  align-items: start;
  padding: .85rem 0;
  border-top: 1px solid var(--line);
}

.latest-blog a span {
  color: var(--muted);
  font-size: .9rem;
}

.faq-list {
  display: grid;
  gap: .7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.faq-list summary {
  cursor: pointer;
  padding: 1rem;
  font-weight: 900;
}

.faq-list p {
  margin: 0;
  padding: 0 1rem 1rem;
  color: var(--muted);
  line-height: 1.7;
}

.cta-band {
  display: grid;
  gap: 1rem;
  padding: clamp(1.4rem, 4vw, 2.2rem);
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--royal), var(--royal-2));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin: .4rem 0;
  font-size: 2rem;
  line-height: 1.02;
}

.cta-band p {
  color: rgba(255, 255, 255, .84);
  line-height: 1.7;
}

.map-frame {
  width: 100%;
  min-height: 360px;
  border: 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--blue-soft);
}

.inner-hero {
  position: relative;
  min-height: 68svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
}

.inner-hero.soft {
  min-height: 58svh;
}

.inner-hero-img,
.inner-hero-overlay {
  position: absolute;
  inset: 0;
}

.inner-hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  padding: 6rem 0 3rem;
  color: #fff;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  align-items: center;
  color: rgba(255, 255, 255, .8);
  font-weight: 800;
  margin-bottom: 1rem;
}

.page-title .breadcrumbs {
  color: var(--muted);
}

.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.page-title {
  padding: clamp(3rem, 8vw, 6rem) 0 1rem;
}

.page-title h1,
.page-title p {
  color: var(--ink);
}

.page-title p {
  color: var(--muted);
}

.service-layout {
  align-items: start;
}

.article-content {
  min-width: 0;
}

.article-content h2 {
  margin-top: 2rem;
}

.article-content p {
  font-size: 1.02rem;
}

.service-aside {
  display: grid;
  gap: 1rem;
}

.aside-card {
  padding: 1rem;
}

.area-card-grid {
  grid-template-columns: 1fr;
}

.area-card {
  padding: 1rem;
}

.area-card > span {
  color: var(--gold);
  font-size: 1.45rem;
}

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

.blog-card {
  overflow: hidden;
}

.blog-img {
  aspect-ratio: 16 / 9;
}

.blog-card div {
  padding: 1rem;
}

.contact-grid {
  align-items: stretch;
}

.contact-card {
  padding: 1rem;
  display: grid;
  align-content: start;
  gap: .75rem;
}

.contact-card a {
  display: flex;
  gap: .55rem;
  align-items: center;
  color: var(--royal);
  font-weight: 900;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 3rem clamp(1rem, 3vw, 2rem) 6rem;
  background: #071B33;
  color: #fff;
}

.footer-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.4rem;
}

.footer-brand small {
  color: rgba(255, 255, 255, .72);
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
  color: rgba(255, 255, 255, .74);
}

.footer-grid h2 {
  font-size: 1rem;
  margin: 0 0 .6rem;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin: .35rem 0;
}

.footer-grid a {
  color: inherit;
  text-decoration: none;
}

.footer-actions {
  display: grid;
  gap: .45rem;
}

.footer-actions a {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.footer-bottom {
  width: min(var(--max), 100%);
  margin: 2rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: space-between;
}

.floating-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  display: grid;
  gap: .55rem;
}

.floating-actions a {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow);
}

.float-whatsapp {
  background: #19a765;
}

.float-call {
  background: var(--royal);
}

@media (min-width: 700px) {
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lead-form .form-head,
  .lead-form .span-2,
  .lead-form .form-note {
    grid-column: 1 / -1;
  }

  .stats-strip {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .feature-grid.compact,
  .cert-grid,
  .gallery-grid,
  .area-card-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review-grid,
  .deep-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
  }
}

@media (min-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .site-nav a {
    padding: .65rem .55rem;
    font-size: .92rem;
  }

  .nav-call {
    display: inline-flex;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 420px);
    align-items: end;
    padding-bottom: 4rem;
  }

  .split-section,
  .process-section,
  .service-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  }

  .process-section {
    grid-template-columns: minmax(320px, .85fr) minmax(0, 1.15fr);
  }

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

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .area-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .cta-band {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .service-aside {
    position: sticky;
    top: 92px;
  }
}

@media (min-width: 1160px) {
  .site-nav a {
    padding-left: .75rem;
    padding-right: .75rem;
  }
}

/* Official visual system override */
:root {
  color-scheme: light;
  --white: #fbfdfb;
  --paper: #edf5f2;
  --ink: #15262c;
  --muted: #5d6b69;
  --royal: #0F4C81;
  --royal-2: #2563EB;
  --blue-soft: #e2f1ee;
  --gold: #c99428;
  --gold-2: #f0cf75;
  --line: rgba(21, 38, 44, 0.14);
  --shadow: 0 18px 42px rgba(18, 50, 63, 0.12);
  --radius: 8px;
  --max: 1180px;
  --surface: #ffffff;
  --surface-2: #f6faf8;
  --field: #fffefa;
  --teal: #16817f;
  --deep: #0f2732;
  --success: #168f63;
  --warning: #e5aa35;
  --ring: rgba(22, 129, 127, 0.28);
  --shadow-soft: 0 10px 28px rgba(18, 50, 63, 0.09);
}

body {
  min-width: 320px;
  color: var(--ink);
  background:
    linear-gradient(180deg, var(--surface-2) 0%, var(--white) 34%, var(--paper) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--gold-2);
  color: #102026;
}

a {
  text-underline-offset: .22em;
}

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

svg {
  width: 1.08em;
  height: 1.08em;
}

.skip-link {
  background: var(--deep);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.site-header {
  min-height: 76px;
  padding: .8rem max(1rem, env(safe-area-inset-left)) .8rem max(1rem, env(safe-area-inset-left));
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--line) 82%, var(--gold) 18%);
  box-shadow: 0 10px 32px rgba(18, 50, 63, 0.08);
  backdrop-filter: blur(16px) saturate(150%);
}

.brand {
  gap: .72rem;
  color: var(--ink);
}

.brand-mark {
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--gold) 55%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--deep), var(--royal) 62%, var(--gold));
  color: #fff;
  font-size: .95rem;
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(18, 50, 63, 0.18);
}

.brand strong {
  font-size: 1.02rem;
  font-weight: 920;
}

.brand small {
  color: var(--muted);
  font-size: .78rem;
  font-weight: 750;
}

.site-nav {
  inset: 76px 0 auto 0;
  gap: .35rem;
  padding: .8rem;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.site-nav a {
  color: color-mix(in srgb, var(--muted) 82%, var(--ink) 18%);
  font-size: .94rem;
  font-weight: 850;
  padding: .78rem .9rem;
  border: 1px solid transparent;
  border-radius: 8px;
  white-space: normal;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
  background: linear-gradient(180deg, color-mix(in srgb, var(--blue-soft) 86%, #fff 14%), var(--surface));
  border-color: color-mix(in srgb, var(--royal) 22%, transparent);
}

.icon-btn,
.nav-call,
.btn {
  min-height: 46px;
}

.icon-btn {
  width: 46px;
  background: var(--surface);
  border-color: color-mix(in srgb, var(--line) 84%, var(--royal) 16%);
  box-shadow: 0 6px 18px rgba(18, 50, 63, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.icon-btn:hover {
  transform: translateY(-1px);
  border-color: color-mix(in srgb, var(--royal) 48%, var(--line) 52%);
  background: var(--blue-soft);
}

.nav-call {
  padding: 0 1rem;
  background: var(--deep);
  color: #fff;
  border: 1px solid color-mix(in srgb, var(--gold) 35%, transparent);
  box-shadow: 0 12px 24px rgba(15, 39, 50, 0.18);
}

.hero {
  min-height: calc(90svh - 76px);
  background: var(--deep);
}

.hero-slide,
.inner-hero-img,
.panel-img,
.service-card-img,
.deep-img,
.gallery-img,
.blog-img {
  filter: saturate(1.04) contrast(1.04);
}

.hero-slide {
  transform: scale(1.03);
}

.hero-overlay,
.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 17, 21, .88), rgba(18, 50, 63, .64) 48%, rgba(22, 129, 127, .2)),
    linear-gradient(0deg, rgba(7, 17, 21, .62), rgba(7, 17, 21, .08) 46%, rgba(7, 17, 21, .34));
}

.hero-content,
.inner-hero-content,
.stats-strip,
.split-section,
.section-band,
.deep-grid,
.process-section,
.industries-section,
.reviews-section,
.map-section,
.service-layout,
.page-title,
.contact-grid,
.cta-band,
.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 2rem));
}

.hero-content {
  gap: 1.25rem;
  padding: 4.5rem 0 2.25rem;
}

.hero-copy {
  max-width: 800px;
}

.eyebrow {
  gap: .42rem;
  color: var(--gold-2);
  font-size: .76rem;
  font-weight: 920;
  letter-spacing: 0;
}

.eyebrow::before {
  content: "";
  width: 2.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.hero h1,
.inner-hero h1,
.page-title h1 {
  margin: .75rem 0 1rem;
  max-width: 970px;
  font-size: 2.45rem;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero p,
.inner-hero p,
.page-title p {
  max-width: 790px;
  font-size: 1.04rem;
  line-height: 1.76;
}

.hero p,
.inner-hero p {
  color: rgba(255, 255, 255, .9);
}

.hero-actions,
.cta-actions,
.center-actions {
  gap: .7rem;
}

.btn {
  max-width: 100%;
  min-width: 0;
  padding: .86rem 1.05rem;
  border-radius: 8px;
  font-weight: 920;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary,
.btn-gold {
  background: linear-gradient(180deg, var(--gold-2), var(--gold));
  color: #142026;
  border-color: color-mix(in srgb, var(--gold) 80%, #6f4d0c 20%);
  box-shadow: 0 13px 24px rgba(201, 148, 40, 0.24);
}

.btn-secondary {
  background: linear-gradient(180deg, var(--royal), var(--deep));
  color: #fff;
  border-color: color-mix(in srgb, var(--royal) 70%, var(--deep) 30%);
  box-shadow: 0 13px 24px rgba(18, 50, 63, 0.18);
}

.btn-glass,
.btn-light {
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .42);
  color: #fff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.hero-badges {
  gap: .6rem;
  margin-top: 1.2rem;
}

.hero-badges span,
.tag-cloud span,
.industry-list span {
  min-height: 36px;
  padding: .46rem .7rem;
  border-radius: 8px;
  font-weight: 850;
}

.hero-badges span {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
}

.lead-form {
  gap: .9rem;
  padding: 1.05rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--royal) 20%);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
}

.hero .lead-form {
  background: rgba(251, 253, 251, .95);
  color: #15262c;
  border-color: rgba(255, 255, 255, .55);
  border-top-color: var(--gold-2);
}

.lead-form h2,
.section-head h2,
.deep-card h2,
.latest-blog h2,
.contact-card h2,
.article-content h2,
.cta-band h2 {
  margin: .35rem 0 .5rem;
  color: var(--ink);
  font-size: 1.82rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.hero .lead-form h2 {
  color: #15262c;
}

.lead-form p,
.section-head p,
.deep-card p,
.article-content p,
.service-card p,
.feature-grid p,
.area-card p,
.blog-card p,
.contact-card p {
  color: var(--muted);
  line-height: 1.74;
}

.hero .lead-form p,
.hero .lead-form .eyebrow,
.hero .lead-form a {
  color: var(--royal);
}

.lead-form label {
  gap: .4rem;
  color: var(--ink);
  font-size: .92rem;
  font-weight: 860;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 48px;
  padding: .78rem .85rem;
  border: 1px solid color-mix(in srgb, var(--line) 86%, var(--royal) 14%);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.lead-form textarea {
  min-height: 110px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--royal);
  box-shadow: 0 0 0 4px var(--ring);
  outline: 0;
}

.form-note {
  color: var(--muted);
}

.stats-strip {
  transform: translateY(-1rem);
  gap: .85rem;
}

.stats-strip div {
  position: relative;
  overflow: hidden;
  padding: 1.05rem;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--gold) 22%);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.stats-strip div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--royal), var(--gold));
}

.stats-strip strong {
  color: var(--royal-2);
  font-size: 1.75rem;
  line-height: 1;
}

.stats-strip span {
  color: var(--muted);
  font-weight: 820;
}

.split-section,
.process-section,
.service-layout,
.contact-grid {
  gap: 1.35rem;
  padding: 4rem 0;
}

.section-band,
.deep-grid,
.industries-section,
.reviews-section,
.map-section {
  padding: 4rem 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: 1.55rem;
}

.section-head .eyebrow,
.page-title .eyebrow,
.article-content .eyebrow,
.lead-form .eyebrow,
.latest-blog .eyebrow {
  color: var(--royal);
}

.section-head h2 {
  margin-top: .65rem;
  font-size: 2.05rem;
}

.feature-grid,
.services-grid,
.review-grid,
.cert-grid,
.area-card-grid,
.blog-grid,
.gallery-grid {
  gap: 1rem;
}

.feature-grid article,
.service-card,
.deep-card,
.review-grid article,
.cert-grid div,
.latest-blog,
.contact-card,
.aside-card,
.area-card,
.blog-card,
.gallery-grid figure,
.map-card {
  position: relative;
  border: 1px solid color-mix(in srgb, var(--line) 86%, var(--royal) 14%);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.feature-grid article,
.review-grid article,
.cert-grid div,
.latest-blog,
.contact-card,
.aside-card,
.area-card {
  padding: 1.05rem;
}

.service-card,
.deep-card,
.blog-card,
.gallery-grid figure,
.image-panel {
  overflow: hidden;
}

.service-card,
.deep-card,
.blog-card,
.feature-grid article,
.review-grid article,
.area-card,
.contact-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover,
.deep-card:hover,
.blog-card:hover,
.feature-grid article:hover,
.review-grid article:hover,
.area-card:hover {
  transform: translateY(-3px);
  border-color: color-mix(in srgb, var(--royal) 42%, var(--line) 58%);
  box-shadow: var(--shadow);
}

.feature-grid article svg,
.cert-grid svg,
.area-card > span {
  color: var(--gold);
}

.feature-grid article h3,
.deep-card h3,
.service-card h3,
.service-card h2,
.area-card h2,
.blog-card h2 {
  margin: .78rem 0 .45rem;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.22;
}

.feature-pill {
  gap: .6rem;
  min-height: 48px;
  padding: .72rem .85rem;
  background: linear-gradient(180deg, var(--surface), var(--surface-2));
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--royal) 20%);
  border-radius: 8px;
  color: var(--ink);
  font-weight: 850;
}

.feature-pill svg {
  color: var(--success);
}

.image-panel {
  min-height: 340px;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 74%, var(--gold) 26%);
  background: var(--blue-soft);
  box-shadow: var(--shadow);
}

.service-card-img,
.deep-img {
  aspect-ratio: 16 / 10;
}

.service-card div,
.blog-card div {
  padding: 1.1rem;
}

.service-card span,
.blog-card span {
  color: var(--royal);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: 0;
}

.service-card a,
.area-card a,
.blog-card a,
.latest-blog a,
.contact-card a {
  color: var(--royal);
  font-weight: 900;
  text-decoration: none;
}

.service-card a:hover,
.area-card a:hover,
.blog-card a:hover,
.latest-blog a:hover,
.contact-card a:hover {
  color: var(--ink);
}

.deep-card > :not(img) {
  margin-left: 1.1rem;
  margin-right: 1.1rem;
}

.deep-card ul,
.article-content ul,
.aside-card ul,
.footer-grid ul {
  color: var(--muted);
  line-height: 1.85;
}

.process-list {
  gap: .9rem;
}

.process-list li {
  gap: .9rem;
  padding: 1rem;
  border-radius: 8px;
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 80%, var(--royal) 20%);
  box-shadow: var(--shadow-soft);
}

.process-list span {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--royal), var(--deep));
}

.industry-list,
.location-chip-grid,
.tag-cloud {
  gap: .58rem;
}

.industry-list span,
.tag-cloud span,
.location-chip-grid a {
  background: var(--surface);
  border: 1px solid color-mix(in srgb, var(--line) 82%, var(--royal) 18%);
  color: var(--ink);
  box-shadow: 0 7px 18px rgba(18, 50, 63, 0.06);
}

.location-chip-grid a {
  min-height: 42px;
  padding: .58rem .72rem;
  color: var(--royal);
  font-weight: 850;
}

.location-chip-grid a:hover {
  background: var(--blue-soft);
  border-color: color-mix(in srgb, var(--royal) 44%, var(--line) 56%);
}

.gallery-grid figure {
  margin: 0;
}

.gallery-img {
  aspect-ratio: 1 / 1;
  transition: transform 350ms ease, filter 350ms ease;
}

.gallery-grid figure:hover .gallery-img {
  transform: scale(1.035);
  filter: saturate(1.1) contrast(1.06);
}

.gallery-grid figcaption {
  padding: .75rem .85rem;
  color: var(--muted);
  font-weight: 850;
}

.review-grid article {
  display: grid;
  gap: .55rem;
}

.review-grid article p {
  margin: 0;
  color: var(--muted);
}

.review-grid article strong {
  color: var(--ink);
}

.stars {
  color: var(--gold);
  font-size: 1.1rem;
}

.google-review-card {
  margin-top: 1.05rem;
  padding: 1.05rem;
  background: linear-gradient(180deg, var(--blue-soft), var(--surface));
  border: 1px solid color-mix(in srgb, var(--line) 78%, var(--royal) 22%);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.cert-grid div {
  min-height: 124px;
}

.latest-blog a {
  padding: .95rem 0;
  border-top: 1px solid var(--line);
}

.latest-blog a span {
  color: var(--muted);
}

.faq-list {
  gap: .8rem;
}

.faq-list details {
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--line) 84%, var(--royal) 16%);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.faq-list summary {
  padding: 1rem 1.05rem;
  color: var(--ink);
  font-weight: 900;
}

.faq-list summary:hover {
  background: var(--surface-2);
}

.faq-list p {
  padding: 0 1.05rem 1.05rem;
  color: var(--muted);
}

.cta-band {
  gap: 1rem;
  padding: 1.55rem;
  margin-top: 2rem;
  margin-bottom: 2.25rem;
  border: 1px solid color-mix(in srgb, var(--gold) 45%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(135deg, var(--deep), #174653 58%, var(--royal));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band .eyebrow,
.cta-band h2,
.cta-band p {
  color: #fff;
}

.cta-band h2 {
  font-size: 2rem;
}

.cta-band p {
  color: rgba(255, 255, 255, .86);
}

.map-frame {
  min-height: 380px;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--blue-soft);
}

.inner-hero {
  min-height: 66svh;
  background: var(--deep);
}

.inner-hero.soft {
  min-height: 56svh;
}

.inner-hero-content {
  padding: 5.8rem 0 3.2rem;
}

.breadcrumbs {
  gap: .45rem;
  color: rgba(255, 255, 255, .84);
  font-size: .94rem;
  font-weight: 820;
}

.breadcrumbs a:hover {
  color: var(--gold-2);
}

.page-title {
  padding: 4rem 0 1.2rem;
}

.page-title .breadcrumbs {
  color: var(--muted);
}

.page-title h1,
.page-title p {
  color: var(--ink);
}

.page-title p {
  color: var(--muted);
}

.contact-title {
  border-bottom: 1px solid var(--line);
}

.article-content {
  max-width: 100%;
}

.article-content h2 {
  margin-top: 2.2rem;
  padding-top: .3rem;
  border-top: 1px solid color-mix(in srgb, var(--line) 72%, transparent);
}

.article-content h2:first-child {
  margin-top: 0;
  border-top: 0;
}

.article-content p {
  font-size: 1.03rem;
}

.service-aside {
  gap: 1rem;
}

.contact-card {
  gap: .85rem;
}

.contact-card a {
  gap: .6rem;
  padding: .2rem 0;
  overflow-wrap: anywhere;
}

.site-footer {
  padding: 3.2rem clamp(1rem, 3vw, 2rem) 6rem;
  background:
    linear-gradient(180deg, #102f3b, #071115);
  color: #fff;
}

.site-footer .brand {
  color: #fff;
}

.site-footer .brand-mark {
  box-shadow: none;
}

.footer-grid {
  gap: 1.5rem;
}

.footer-brand small,
.footer-grid p,
.footer-grid li,
.footer-bottom {
  color: rgba(255, 255, 255, .74);
}

.footer-grid h2 {
  color: #fff;
  font-size: 1rem;
  font-weight: 900;
}

.footer-grid a:hover {
  color: var(--gold-2);
}

.footer-actions {
  gap: .5rem;
}

.footer-bottom {
  border-top-color: rgba(255, 255, 255, .16);
}

.floating-actions {
  right: 1rem;
  bottom: 1rem;
  gap: .6rem;
}

.floating-actions a {
  width: 54px;
  height: 54px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .18);
  box-shadow: 0 14px 30px rgba(7, 17, 21, .24);
  transition: transform 180ms ease;
}

.floating-actions a:hover {
  transform: translateY(-2px);
}

.float-whatsapp {
  background: linear-gradient(180deg, #22b978, #118257);
}

.float-call {
  background: linear-gradient(180deg, var(--royal), var(--deep));
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: .45rem;
  }

  .brand {
    gap: .55rem;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: .94rem;
  }

  .brand small {
    font-size: .7rem;
  }

  .hero-content {
    width: min(var(--max), calc(100% - 1.25rem));
    padding-top: 3.6rem;
  }

  .hero h1,
  .inner-hero h1,
  .page-title h1 {
    font-size: 2.05rem;
  }

  .lead-form,
  .service-card div,
  .blog-card div,
  .feature-grid article,
  .review-grid article,
  .cert-grid div,
  .latest-blog,
  .contact-card,
  .aside-card,
  .area-card {
    padding: .9rem;
  }

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

  .floating-actions {
    right: .75rem;
    bottom: .75rem;
  }
}

@media (min-width: 700px) {
  .hero h1,
  .inner-hero h1,
  .page-title h1 {
    font-size: 3.45rem;
  }

  .hero p,
  .inner-hero p,
  .page-title p {
    font-size: 1.12rem;
  }

  .section-head h2,
  .lead-form h2,
  .deep-card h2,
  .latest-blog h2,
  .contact-card h2,
  .article-content h2 {
    font-size: 2.12rem;
  }

  .cta-band h2 {
    font-size: 2.28rem;
  }
}

@media (min-width: 940px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
    padding-left: clamp(1rem, 2.5vw, 2rem);
    padding-right: clamp(1rem, 2.5vw, 2rem);
  }

  .site-nav {
    gap: .12rem;
  }

  .site-nav a {
    padding: .62rem .58rem;
    font-size: .9rem;
  }

  .hero {
    min-height: calc(88svh - 76px);
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 430px);
    align-items: end;
    padding-bottom: 3.6rem;
  }

  .hero h1 {
    font-size: 4.85rem;
  }

  .inner-hero h1,
  .page-title h1 {
    font-size: 4.15rem;
  }

  .split-section,
  .process-section,
  .service-layout,
  .contact-grid {
    gap: 1.7rem;
  }

  .service-aside {
    top: 96px;
  }

  .cta-band {
    padding: 1.75rem 2rem;
  }
}

@media (min-width: 1160px) {
  .site-nav a {
    padding-left: .72rem;
    padding-right: .72rem;
  }
}

/* Premium conversion UI system */
:root {
  --primary: #0F4C81;
  --secondary: #2563EB;
  --accent: #F4B400;
  --accent-hover: #FFC107;
  --success: #16A34A;
  --error: #DC2626;
  --background: #FFFFFF;
  --section: #F8FAFC;
  --card: #FFFFFF;
  --heading: #111827;
  --text: #4B5563;
  --border: #E5E7EB;
  --gradient: linear-gradient(135deg, #0F4C81, #2563EB);
  --glass: rgba(255, 255, 255, .65);
  --glass-border: rgba(255, 255, 255, .25);
  --radius: 24px;
  --button-radius: 14px;
  --section-radius: 40px;
  --shadow: 0 15px 40px rgba(0, 0, 0, .08);
  --hover-shadow: 0 30px 80px rgba(0, 0, 0, .12);
  --glass-shadow: 0 20px 60px rgba(0, 0, 0, .15);
  --transition: all .35s ease;
  --max: 1400px;
  --white: var(--background);
  --paper: var(--section);
  --ink: var(--heading);
  --muted: var(--text);
  --royal: var(--primary);
  --royal-2: var(--secondary);
  --blue-soft: #EFF6FF;
  --gold: var(--accent);
  --gold-2: var(--accent-hover);
  --line: var(--border);
  --surface: var(--card);
  --surface-2: var(--section);
  --field: #FFFFFF;
  --deep: #071B33;
  --ring: rgba(37, 99, 235, .22);
  --shadow-soft: var(--shadow);
}

html {
  scroll-padding-top: 96px;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: "Plus Jakarta Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0;
}

body::selection {
  background: var(--accent-hover);
  color: var(--heading);
}

a,
button,
summary,
input,
select,
textarea {
  transition: var(--transition);
}

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

.site-header {
  min-height: 88px;
  grid-template-columns: 1fr auto auto;
  padding: 16px clamp(16px, 4vw, 48px);
  background: var(--glass);
  border-bottom: 1px solid rgba(255, 255, 255, .35);
  box-shadow: none;
  backdrop-filter: blur(16px);
}

.site-header.is-scrolled {
  box-shadow: 0 18px 50px rgba(15, 76, 129, .12);
  border-bottom-color: var(--border);
}

.brand {
  gap: 14px;
}

.brand-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: var(--gradient);
  border: 1px solid rgba(255, 255, 255, .35);
  box-shadow: 0 18px 40px rgba(15, 76, 129, .24);
  font-size: 1rem;
}

.brand strong {
  color: var(--heading);
  font-size: 1.08rem;
  font-weight: 800;
}

.brand small {
  color: var(--text);
  font-size: .83rem;
  font-weight: 600;
}

.site-nav {
  inset: 88px 16px auto 16px;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
}

.site-nav a {
  position: relative;
  overflow: hidden;
  padding: 12px 14px;
  border: 0;
  border-radius: 14px;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--primary);
  background: rgba(37, 99, 235, .07);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.icon-btn {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .82);
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(15, 76, 129, .08);
}

.icon-btn:hover {
  transform: translateY(-2px) rotate(4deg);
  background: #FFFFFF;
  border-color: rgba(15, 76, 129, .24);
}

.nav-call,
.btn {
  border-radius: var(--button-radius);
}

.nav-call {
  padding: 0 22px;
  background: var(--gradient);
  box-shadow: 0 15px 35px rgba(15, 76, 129, .22);
}

.hero {
  min-height: calc(100svh - 88px);
  background: #071B33;
}

.hero::before,
.inner-hero::before,
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .75), transparent 72%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 16px;
  transform: translateX(-50%);
  opacity: .85;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 18% 24%, rgba(244, 180, 0, .18), transparent 22%),
    linear-gradient(135deg, rgba(15, 76, 129, .9), rgba(37, 99, 235, .42) 46%, rgba(7, 27, 51, .18));
}

.hero-overlay,
.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 27, 51, .88), rgba(15, 76, 129, .62) 48%, rgba(37, 99, 235, .22)),
    linear-gradient(0deg, rgba(7, 27, 51, .72), rgba(7, 27, 51, .08) 58%);
}

.hero-content {
  width: min(var(--max), calc(100% - 32px));
  gap: 48px;
  padding: 96px 0 80px;
}

.hero-copy {
  max-width: 850px;
}

.eyebrow {
  color: var(--accent);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.hero h1,
.inner-hero h1,
.page-title h1 {
  max-width: 1060px;
  margin: 16px 0 24px;
  color: var(--heading);
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero h1,
.inner-hero h1 {
  color: #FFFFFF;
}

.hero p,
.inner-hero p,
.page-title p {
  max-width: 820px;
  color: var(--text);
  font-size: 18px;
  line-height: 1.7;
}

.hero p,
.inner-hero p {
  color: rgba(255, 255, 255, .86);
}

.hero-actions,
.cta-actions,
.center-actions {
  gap: 16px;
}

.btn {
  min-height: 58px;
  padding: 18px 40px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: none;
}

.btn:hover {
  transform: translateY(-2px) scale(1.05);
}

.btn-primary,
.btn-secondary {
  color: #FFFFFF;
  background: var(--gradient);
  border-color: rgba(255, 255, 255, .18);
  box-shadow: 0 20px 45px rgba(15, 76, 129, .26);
}

.btn-primary:hover,
.btn-secondary:hover {
  box-shadow: 0 0 0 6px rgba(244, 180, 0, .16), 0 30px 70px rgba(15, 76, 129, .34);
}

.btn-gold {
  color: #111827;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  border-color: rgba(255, 193, 7, .5);
  box-shadow: 0 20px 45px rgba(244, 180, 0, .24);
}

.btn-glass,
.btn-light {
  color: #FFFFFF;
  background: rgba(255, 255, 255, .13);
  border-color: rgba(255, 255, 255, .34);
  backdrop-filter: blur(16px);
}

.hero-badges span,
.industry-list span,
.tag-cloud span {
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
}

.hero-badges span {
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .12);
  backdrop-filter: blur(16px);
}

.lead-form {
  gap: 16px;
  padding: 32px;
  border-radius: var(--radius);
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 0;
  box-shadow: var(--shadow);
}

.hero .lead-form {
  background: var(--glass);
  color: var(--heading);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
}

.lead-form h2,
.section-head h2,
.deep-card h2,
.latest-blog h2,
.contact-card h2,
.article-content h2 {
  color: var(--heading);
  font-size: 48px;
  line-height: 1.12;
  letter-spacing: 0;
}

.lead-form h2,
.deep-card h2,
.latest-blog h2,
.contact-card h2,
.article-content h2 {
  font-size: 28px;
}

.lead-form p,
.section-head p,
.deep-card p,
.article-content p,
.service-card p,
.feature-grid p,
.area-card p,
.blog-card p,
.contact-card p,
.process-list p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.7;
}

.hero .lead-form p,
.hero .lead-form .eyebrow,
.hero .lead-form a {
  color: var(--primary);
}

.lead-form label {
  gap: 8px;
  color: var(--heading);
  font-size: 15px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  min-height: 56px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--field);
  color: var(--heading);
  font-size: 16px;
}

.lead-form textarea {
  min-height: 128px;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 0 5px var(--ring);
}

.stats-strip,
.split-section,
.section-band,
.deep-grid,
.process-section,
.industries-section,
.reviews-section,
.map-section,
.service-layout,
.page-title,
.contact-grid,
.cta-band,
.footer-grid,
.footer-bottom {
  width: min(var(--max), calc(100% - 32px));
}

.stats-strip {
  gap: 24px;
  transform: translateY(-48px);
}

.stats-strip div {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .82);
  border: 1px solid rgba(255, 255, 255, .55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.stats-strip strong {
  color: var(--primary);
  font-size: 34px;
  font-weight: 800;
}

.stats-strip span {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
}

.split-section,
.process-section,
.service-layout,
.contact-grid {
  gap: 64px;
  padding: 140px 0;
}

.section-band,
.deep-grid,
.industries-section,
.reviews-section,
.map-section {
  padding: 140px 0;
}

.section-band:nth-of-type(even),
.reviews-section,
.industries-section {
  position: relative;
}

.section-head {
  max-width: 840px;
  margin-bottom: 48px;
}

.section-head h2 {
  margin-top: 16px;
}

.feature-grid,
.services-grid,
.review-grid,
.cert-grid,
.area-card-grid,
.blog-grid,
.gallery-grid {
  gap: 32px;
}

.feature-grid article,
.service-card,
.deep-card,
.review-grid article,
.cert-grid div,
.latest-blog,
.contact-card,
.aside-card,
.area-card,
.blog-card,
.gallery-grid figure,
.map-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.feature-grid article:hover,
.service-card:hover,
.deep-card:hover,
.review-grid article:hover,
.cert-grid div:hover,
.latest-blog:hover,
.contact-card:hover,
.aside-card:hover,
.area-card:hover,
.blog-card:hover,
.gallery-grid figure:hover {
  transform: translateY(-12px);
  box-shadow: var(--hover-shadow);
  border-color: rgba(37, 99, 235, .24);
}

.feature-grid article,
.review-grid article,
.cert-grid div,
.latest-blog,
.contact-card,
.aside-card,
.area-card {
  padding: 32px;
}

.service-card-img,
.deep-img,
.gallery-img,
.blog-img,
.panel-img,
.inner-hero-img {
  border-radius: 0;
  transition: transform .55s ease, filter .55s ease;
}

.service-card:hover .service-card-img,
.deep-card:hover .deep-img,
.gallery-grid figure:hover .gallery-img,
.blog-card:hover .blog-img {
  transform: scale(1.08);
}

.image-panel {
  min-height: 520px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--hover-shadow);
}

.service-card div,
.blog-card div {
  padding: 28px;
}

.service-card span,
.blog-card span {
  color: var(--primary);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.feature-grid article h3,
.deep-card h3,
.service-card h3,
.service-card h2,
.area-card h2,
.blog-card h2 {
  color: var(--heading);
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0;
}

.service-card a,
.area-card a,
.blog-card a,
.latest-blog a,
.contact-card a {
  color: var(--primary);
  font-weight: 800;
}

.service-card a:hover,
.area-card a:hover,
.blog-card a:hover,
.latest-blog a:hover,
.contact-card a:hover {
  color: var(--secondary);
}

.feature-pill {
  min-height: 60px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 10px 25px rgba(15, 76, 129, .06);
}

.feature-pill:hover {
  transform: translateY(-4px);
  border-color: rgba(37, 99, 235, .25);
}

.feature-pill svg,
.cert-grid svg {
  color: var(--success);
  transition: transform .35s ease;
}

.feature-pill:hover svg,
.cert-grid div:hover svg {
  transform: rotate(8deg) scale(1.08);
}

.deep-card > :not(img) {
  margin-left: 32px;
  margin-right: 32px;
}

.deep-card ul,
.article-content ul,
.aside-card ul {
  color: var(--text);
  line-height: 1.8;
}

.process-list {
  position: relative;
  gap: 24px;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 22px;
  bottom: 22px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary), var(--accent));
}

.process-list li {
  position: relative;
  gap: 24px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.process-list span {
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 14px 30px rgba(15, 76, 129, .25);
}

.location-chip-grid,
.industry-list,
.tag-cloud {
  gap: 12px;
}

.location-chip-grid a,
.industry-list span,
.tag-cloud span {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 14px;
  background: #FFFFFF;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px rgba(15, 76, 129, .06);
}

.location-chip-grid a:hover {
  color: #FFFFFF;
  background: var(--gradient);
  transform: translateY(-3px);
}

.gallery-grid {
  grid-auto-flow: dense;
}

.gallery-grid figure {
  position: relative;
}

.gallery-grid figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(7, 27, 51, .72));
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.gallery-grid figure:hover::after {
  opacity: 1;
}

.gallery-img {
  aspect-ratio: 4 / 3;
}

.gallery-grid figure:nth-child(3n + 1) .gallery-img {
  aspect-ratio: 4 / 5;
}

.gallery-grid figure:nth-child(4n) .gallery-img {
  aspect-ratio: 16 / 10;
}

.gallery-grid figcaption {
  position: relative;
  z-index: 1;
  padding: 18px 20px;
  color: var(--heading);
  font-weight: 800;
}

.review-grid article {
  background: var(--glass);
  border-color: rgba(255, 255, 255, .45);
  box-shadow: var(--glass-shadow);
  backdrop-filter: blur(16px);
}

.review-grid article p {
  color: var(--text);
}

.stars {
  color: var(--accent);
  font-size: 1.25rem;
}

.google-review-card {
  margin-top: 32px;
  padding: 24px 32px;
  border-radius: var(--radius);
  background: var(--gradient);
  color: #FFFFFF;
  box-shadow: var(--hover-shadow);
}

.google-review-card span {
  color: rgba(255, 255, 255, .82);
}

.faq-list {
  gap: 16px;
}

.faq-list details {
  border-radius: 20px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow);
}

.faq-list summary {
  position: relative;
  padding: 24px 64px 24px 24px;
  color: var(--heading);
  font-size: 18px;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  color: var(--primary);
  font-size: 28px;
  font-weight: 400;
  transform: translateY(-50%) rotate(0);
}

.faq-list details[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-list p {
  padding: 0 24px 24px;
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 64px;
  margin-top: 64px;
  margin-bottom: 64px;
  border-radius: var(--section-radius);
  background:
    linear-gradient(135deg, #071B33, #0F4C81 58%, #2563EB);
  box-shadow: var(--hover-shadow);
}

.cta-band h2 {
  color: #FFFFFF;
  font-size: 48px;
}

.cta-band p {
  color: rgba(255, 255, 255, .82);
}

.map-frame {
  min-height: 480px;
  border-radius: var(--radius);
}

.inner-hero {
  min-height: 72svh;
}

.inner-hero-content {
  width: min(var(--max), calc(100% - 32px));
  padding: 128px 0 96px;
}

.page-title {
  padding: 128px 0 48px;
}

.article-content h2 {
  margin-top: 56px;
  padding-top: 0;
  border-top: 0;
}

.contact-card a {
  min-height: 48px;
  padding: 10px 0;
}

.site-footer {
  padding: 96px clamp(16px, 4vw, 48px) 112px;
  background: #071B33;
}

.site-footer .brand strong,
.footer-grid h2 {
  color: #FFFFFF;
}

.footer-grid {
  gap: 48px;
}

.footer-grid p,
.footer-grid li,
.footer-bottom,
.footer-brand small {
  color: rgba(255, 255, 255, .72);
}

.footer-grid a:hover {
  color: var(--accent-hover);
}

.floating-actions {
  right: 24px;
  bottom: 24px;
  gap: 12px;
}

.floating-actions a {
  width: 60px;
  height: 60px;
  border-radius: 18px;
}

.float-whatsapp {
  background: linear-gradient(135deg, #16A34A, #22C55E);
}

.float-call {
  background: var(--gradient);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .65s ease, transform .65s ease;
}

@media (min-width: 700px) {
  .lead-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-grid,
  .feature-grid.compact,
  .cert-grid,
  .gallery-grid,
  .area-card-grid,
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .site-nav {
    position: static;
    display: flex;
    justify-content: center;
    padding: 6px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .58);
    box-shadow: none;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 470px);
    align-items: center;
  }

  .split-section,
  .process-section,
  .service-layout,
  .contact-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(360px, .88fr);
  }

  .review-grid,
  .deep-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .services-grid,
  .area-card-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .nav-open .site-nav {
    display: grid;
  }

  .nav-call {
    display: none;
  }

  .hero h1,
  .inner-hero h1,
  .page-title h1 {
    font-size: 48px;
  }

  .lead-form h2,
  .section-head h2,
  .cta-band h2 {
    font-size: 40px;
  }

  .split-section,
  .process-section,
  .service-layout,
  .contact-grid,
  .section-band,
  .deep-grid,
  .industries-section,
  .reviews-section,
  .map-section {
    padding: 96px 0;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .site-header {
    min-height: 76px;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .brand strong {
    font-size: .96rem;
  }

  .brand small {
    font-size: .72rem;
  }

  .site-nav {
    inset: 76px 12px auto 12px;
  }

  .hero {
    min-height: calc(100svh - 76px);
  }

  .hero-content,
  .inner-hero-content,
  .stats-strip,
  .split-section,
  .section-band,
  .deep-grid,
  .process-section,
  .industries-section,
  .reviews-section,
  .map-section,
  .service-layout,
  .page-title,
  .contact-grid,
  .cta-band {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero-content {
    gap: 32px;
    padding: 72px 0 64px;
  }

  .hero h1,
  .inner-hero h1,
  .page-title h1 {
    font-size: 40px;
  }

  .hero p,
  .inner-hero p,
  .page-title p {
    font-size: 16px;
  }

  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .hero-actions,
  .cta-actions {
    width: 100%;
  }

  .stats-strip {
    transform: none;
    margin-top: 24px;
  }

  .lead-form,
  .feature-grid article,
  .review-grid article,
  .cert-grid div,
  .latest-blog,
  .contact-card,
  .aside-card,
  .area-card {
    padding: 24px;
  }

  .service-card div,
  .blog-card div {
    padding: 24px;
  }

  .lead-form h2,
  .section-head h2,
  .cta-band h2 {
    font-size: 34px;
  }

  .feature-grid article h3,
  .deep-card h3,
  .service-card h3,
  .service-card h2,
  .area-card h2,
  .blog-card h2 {
    font-size: 24px;
  }

  .split-section,
  .process-section,
  .service-layout,
  .contact-grid,
  .section-band,
  .deep-grid,
  .industries-section,
  .reviews-section,
  .map-section {
    padding: 72px 0;
  }

  .cta-band {
    padding: 40px 24px;
    border-radius: 28px;
  }

  .image-panel {
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .hero h1,
  .inner-hero h1,
  .page-title h1 {
    font-size: 34px;
  }

  .lead-form h2,
  .section-head h2,
  .cta-band h2 {
    font-size: 30px;
  }

  .stats-strip {
    grid-template-columns: 1fr;
  }

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

  .floating-actions {
    right: 14px;
    bottom: 14px;
  }

  .floating-actions a {
    width: 54px;
    height: 54px;
  }
}

.services-section .service-card-img {
  display: block;
  width: 100%;
  height: clamp(178px, 45vw, 232px);
  aspect-ratio: 16 / 9;
  padding: clamp(8px, 2vw, 14px);
  background:
    radial-gradient(circle at 20% 15%, rgba(244, 180, 0, .14), transparent 34%),
    linear-gradient(135deg, #F8FAFC, #EEF6FF);
  object-fit: contain;
  object-position: center;
}

.services-section .service-card:hover .service-card-img {
  transform: scale(1.035);
}

.deep-img,
.blog-img,
.panel-img {
  object-position: center;
}

.gallery-grid .gallery-img {
  display: block;
  width: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 768px) {
  .services-section .service-card-img {
    height: clamp(170px, 49vw, 214px);
  }

  .gallery-grid figure .gallery-img,
  .gallery-grid figure:nth-child(3n + 1) .gallery-img,
  .gallery-grid figure:nth-child(4n) .gallery-img {
    aspect-ratio: 4 / 3;
  }

  .image-panel {
    min-height: 0;
    aspect-ratio: 16 / 10;
  }
}

.all-project-images .gallery-grid figure .gallery-img {
  aspect-ratio: 4 / 3;
}

.mini-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 18px 0 22px;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: 0 0 0 4px rgba(244, 180, 0, .12);
}

.subservice-grid,
.checklist-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 28px;
}

.subservice-card,
.checklist-grid article {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(248, 250, 252, .92));
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.subservice-card::before,
.checklist-grid article::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: var(--gradient);
}

.subservice-card:hover,
.checklist-grid article:hover {
  transform: translateY(-10px);
  border-color: rgba(37, 99, 235, .24);
  box-shadow: var(--hover-shadow);
}

.subservice-card span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15, 76, 129, .08);
  color: var(--primary);
  font-size: 13px;
  font-weight: 800;
}

.subservice-card h3,
.checklist-grid h3 {
  margin: 18px 0 10px;
  color: var(--heading);
  font-size: 24px;
  line-height: 1.22;
  letter-spacing: 0;
}

.subservice-card p,
.checklist-grid p {
  margin: 0 0 18px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.7;
}

.subservice-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 850;
  text-decoration: none;
}

.subservice-card-body {
  display: grid;
  height: 100%;
}

.subservice-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: auto;
}

.subservice-actions a {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  line-height: 1;
}

.subservice-actions .subservice-link {
  border: 1px solid rgba(15, 76, 129, .16);
  background: rgba(15, 76, 129, .07);
}

.subservice-actions .subservice-whatsapp {
  color: #FFFFFF;
  background: linear-gradient(135deg, #16A34A, #22C55E);
  box-shadow: 0 14px 28px rgba(22, 163, 74, .22);
}

.subservice-actions .subservice-whatsapp:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(22, 163, 74, .28);
}

.visual-subservices {
  gap: clamp(18px, 2.4vw, 32px);
}

.visual-subservices .subservice-card {
  display: grid;
  padding: 0;
  border-color: rgba(15, 76, 129, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .88)),
    radial-gradient(circle at 16% 0%, rgba(244, 180, 0, .16), transparent 34%);
  backdrop-filter: blur(16px);
}

.visual-subservices .subservice-card::before {
  z-index: 2;
}

.subservice-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid rgba(15, 76, 129, .1);
  background:
    radial-gradient(circle at 82% 18%, rgba(37, 99, 235, .22), transparent 34%),
    linear-gradient(135deg, #EFF6FF, #F8FAFC);
}

.subservice-img {
  display: block;
  width: 100%;
  height: 100%;
  padding: clamp(10px, 2vw, 18px);
  object-fit: contain;
  object-position: center;
  transition: transform .55s ease, filter .55s ease;
}

.visual-subservices .subservice-card:hover .subservice-img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.04);
}

.visual-subservices .subservice-card-body {
  padding: 24px;
}

.visual-subservices .subservice-card p {
  margin-bottom: 22px;
}

.checklist-grid svg {
  color: var(--success);
  font-size: 1.35rem;
}

.article-content .subservice-grid,
.article-content .checklist-grid {
  margin-bottom: 32px;
}

@media (min-width: 700px) {
  .subservice-grid,
  .checklist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 992px) {
  .subservice-grid,
  .checklist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .subservices-preview .subservice-grid,
  .services-grid + .subservice-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 480px) {
  .subservice-card,
  .checklist-grid article {
    padding: 22px;
  }

  .subservice-card h3,
  .checklist-grid h3 {
    font-size: 21px;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

.section-band,
.split-section,
.process-section,
.industries-section,
.reviews-section,
.map-section,
.deep-grid,
.service-layout,
.contact-grid,
.cta-band {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

.gallery-grid figure,
.service-card,
.subservice-card,
.blog-card,
.area-card {
  content-visibility: auto;
  contain-intrinsic-size: 1px 360px;
}

.subservice-img,
.service-card-img,
.gallery-img,
.blog-img,
.panel-img,
.deep-img {
  backface-visibility: hidden;
}

@media (min-width: 992px) {
  .site-nav {
    flex-wrap: wrap;
    row-gap: 4px;
  }

  .site-nav a {
    padding: 9px 10px;
    font-size: 14px;
  }
}

@media (min-width: 1280px) {
  .site-nav a {
    padding: 10px 12px;
  }
}

.site-nav .nav-item {
  position: relative;
  min-width: 0;
}

.site-nav .nav-item > a {
  display: flex;
  align-items: center;
}

.service-mega {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px 14px;
  max-height: 52vh;
  overflow: auto;
  padding: 12px;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 18px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 16px 40px rgba(15, 76, 129, .1);
  backdrop-filter: blur(16px);
}

.mega-intro {
  display: none;
}

.mega-group {
  display: grid;
  gap: 5px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(248, 250, 252, .92);
}

.site-nav .service-mega a {
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.35;
  white-space: normal;
}

.site-nav .service-mega a::after {
  display: none;
}

.site-nav .service-mega .mega-title {
  color: var(--heading);
  font-size: 14px;
  font-weight: 800;
  background: #FFFFFF;
  border: 1px solid rgba(15, 76, 129, .12);
}

.site-nav .service-mega .mega-link {
  color: var(--text);
  font-weight: 650;
}

.location-mega-grid {
  display: grid;
  gap: 5px;
}

.site-nav .location-mega-grid .mega-link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.location-mega-grid .mega-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  fill: var(--accent);
}

.site-nav .location-mega-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--accent);
  font-weight: 800;
  background: rgba(15, 76, 129, .07);
}

.location-mega-all svg {
  width: 17px;
  height: 17px;
  fill: currentColor;
}

@media (min-width: 992px) {
  .site-nav .nav-item {
    display: flex;
    align-items: center;
  }

  .service-mega {
    position: absolute;
    top: calc(100% + 16px);
    left: 50%;
    z-index: 80;
    width: min(920px, calc(100vw - 48px));
    max-height: min(72vh, 620px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 22px;
    border-left: 1px solid rgba(255, 255, 255, .25);
    border-radius: 24px;
    background: rgba(255, 255, 255, .86);
    box-shadow: var(--hover-shadow);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .25s ease, transform .25s ease;
  }

  .has-mega:hover .service-mega,
  .has-mega:focus-within .service-mega {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }

  .mega-intro {
    display: grid;
    grid-column: 1 / -1;
    gap: 4px;
    padding: 0 4px 8px;
  }

  .mega-intro strong {
    color: var(--heading);
    font-size: 20px;
  }

  .mega-intro span {
    color: var(--text);
    font-size: 14px;
  }

  .service-mega.location-mega {
    width: min(960px, calc(100vw - 48px));
    grid-template-columns: 1fr;
  }

  .location-mega-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 6px 10px;
  }

  .site-nav .location-mega-all {
    justify-self: end;
    padding-inline: 14px;
  }
}

/* Human service-business design pass */
:root {
  --radius: 14px;
  --shadow: 0 8px 24px rgba(17, 24, 39, .07);
  --hover-shadow: 0 14px 34px rgba(17, 24, 39, .11);
  --card: #FFFFFF;
  --section: #F7F8F5;
  --field: #FFFFFF;
}

body {
  background: #FBFBF8;
}

.site-header {
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #E8E3DA;
  box-shadow: 0 5px 22px rgba(17, 24, 39, .06);
}

.brand-mark {
  border-radius: 10px;
  background: #0F4C81;
  box-shadow: none;
}

.hero,
.inner-hero {
  background: #111827;
}

.hero::before,
.hero::after,
.inner-hero::before,
.hero-media::after {
  display: none;
}

.hero-overlay,
.inner-hero-overlay {
  background:
    linear-gradient(90deg, rgba(17, 24, 39, .76) 0%, rgba(17, 24, 39, .48) 38%, rgba(17, 24, 39, .12) 68%, transparent 100%),
    linear-gradient(0deg, rgba(17, 24, 39, .38), transparent 48%);
}

.hero-slide,
.inner-hero-img {
  filter: saturate(1.08) contrast(1.05);
}

.hero-content {
  padding-top: clamp(72px, 9vw, 128px);
  padding-bottom: clamp(64px, 8vw, 112px);
}

.hero .lead-form,
.lead-form,
.latest-blog,
.contact-card,
.aside-card {
  background: rgba(255, 255, 255, .96);
  border: 1px solid #E8E3DA;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.btn-primary,
.nav-call {
  background: #0F4C81;
  box-shadow: none;
}

.btn-primary:hover,
.nav-call:hover {
  background: #0B3E69;
  box-shadow: 0 10px 24px rgba(15, 76, 129, .18);
}

.btn-glass,
.btn-secondary {
  background: #FFFFFF;
  color: #0F4C81;
  border: 1px solid #D7DFEA;
  box-shadow: none;
}

.hero-badges span,
.stats-strip div,
.feature-pill,
.location-chip-grid a,
.industry-list span,
.tag-cloud span {
  background: #FFFFFF;
  border: 1px solid #E8E3DA;
  box-shadow: none;
  backdrop-filter: none;
}

.stats-strip {
  transform: none;
  margin: 28px auto 0;
}

.local-proof {
  width: min(var(--max), calc(100% - 32px));
  display: grid;
  gap: 16px;
  margin: 32px auto 0;
}

.local-proof article {
  padding: 22px;
  border: 1px solid #E8E3DA;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.local-proof strong,
.local-proof span {
  display: block;
}

.local-proof strong {
  color: var(--heading);
  font-size: 17px;
  line-height: 1.35;
}

.local-proof span {
  margin-top: 8px;
  color: var(--text);
  line-height: 1.65;
}

.section-band,
.split-section,
.process-section,
.service-layout,
.contact-grid,
.deep-grid,
.reviews-section,
.map-section {
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.feature-grid article,
.service-card,
.deep-card,
.review-grid article,
.cert-grid div,
.latest-blog,
.contact-card,
.aside-card,
.area-card,
.blog-card,
.gallery-grid figure,
.map-card,
.subservice-card,
.checklist-grid article {
  border-color: #E8E3DA;
  border-radius: var(--radius);
  background: #FFFFFF;
  box-shadow: var(--shadow);
}

.feature-grid article:hover,
.service-card:hover,
.deep-card:hover,
.review-grid article:hover,
.cert-grid div:hover,
.latest-blog:hover,
.contact-card:hover,
.aside-card:hover,
.area-card:hover,
.blog-card:hover,
.gallery-grid figure:hover,
.subservice-card:hover,
.checklist-grid article:hover {
  transform: translateY(-4px);
  box-shadow: var(--hover-shadow);
  border-color: #D6DEE8;
}

.services-section .service-card-img,
.subservice-img,
.deep-img,
.panel-img {
  padding: 0;
  background: #ECEBE6;
  object-fit: cover;
}

.services-section .service-card:hover .service-card-img,
.visual-subservices .subservice-card:hover .subservice-img,
.deep-card:hover .deep-img,
.gallery-grid figure:hover .gallery-img,
.blog-card:hover .blog-img {
  transform: scale(1.025);
  filter: none;
}

.visual-subservices .subservice-card {
  background: #FFFFFF;
  border-color: #E8E3DA;
  backdrop-filter: none;
}

.subservice-media {
  background: #ECEBE6;
  border-bottom-color: #E8E3DA;
}

.subservice-card::before,
.checklist-grid article::before {
  height: 3px;
  background: #0F4C81;
}

.process-list::before {
  background: #D7DFEA;
}

.process-list li {
  background: #FFFFFF;
  border-color: #E8E3DA;
  box-shadow: var(--shadow);
  backdrop-filter: none;
}

.process-list span {
  background: #0F4C81;
  box-shadow: none;
}

.reviews-section,
.industries-section {
  background: transparent;
}

.google-review-card,
.cta-band {
  background: #0F4C81;
  box-shadow: var(--shadow);
}

.site-footer {
  background: #111827;
}

.js .reveal {
  transform: translateY(14px);
  transition: opacity .42s ease, transform .42s ease;
}

@media (min-width: 760px) {
  .local-proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .hero-content {
    padding-top: 56px;
  }

  .stats-strip,
  .local-proof {
    width: min(var(--max), calc(100% - 24px));
  }
}

/* Brand and mobile hero refinement */
body {
  font-family: "Segoe UI Variable Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

h1,
h2,
h3,
.brand strong,
.site-nav,
.btn {
  font-family: "Segoe UI Variable Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.brand-logo {
  width: 72px;
  height: 54px;
  flex: 0 0 auto;
  object-fit: contain;
  border-radius: 9px;
  background: #FFFFFF;
}

.footer-brand .brand-logo {
  padding: 3px;
}

.hero-brand-line {
  display: block;
  margin-bottom: 14px;
  color: #F4B400;
  font-size: .25em;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-badges span {
  color: #0F4C81;
}

@media (max-width: 768px) {
  .site-header {
    min-height: 80px;
    padding: 10px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 64px;
    height: 48px;
    border-radius: 8px;
  }

  .brand strong {
    font-size: .98rem;
    line-height: 1.08;
  }

  .brand small {
    margin-top: 3px;
    font-size: .69rem;
    line-height: 1.1;
  }

  .site-nav {
    inset: 80px 12px auto 12px;
  }

  .hero {
    min-height: 0;
    display: block;
    align-items: initial;
    overflow: hidden;
    background: #F7F8F5;
  }

  .hero-media,
  .hero > .hero-overlay {
    inset: 0 0 auto;
    height: 650px;
  }

  .hero-slide {
    object-position: 58% center;
  }

  .hero > .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 24, 42, .24) 0%, rgba(11, 24, 42, .46) 42%, rgba(11, 24, 42, .82) 100%),
      linear-gradient(90deg, rgba(11, 24, 42, .48), rgba(11, 24, 42, .08));
  }

  .hero-content {
    width: calc(100% - 28px);
    gap: 28px;
    padding: 38px 0 38px;
  }

  .hero-copy {
    min-height: 574px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .hero .eyebrow {
    max-width: 30ch;
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: .08em;
  }

  .hero h1 {
    margin: 16px 0 18px;
    max-width: 100%;
    font-size: clamp(35px, 9.6vw, 46px);
    line-height: 1.02;
    letter-spacing: -.035em;
    overflow-wrap: break-word;
    text-wrap: balance;
  }

  .hero-brand-line {
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.2;
    letter-spacing: .1em;
  }

  .hero p {
    max-width: 34ch;
    margin: 0;
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    gap: 12px;
    margin-top: 24px;
  }

  .hero-actions .btn {
    min-height: 54px;
    padding: 15px 18px;
    border-radius: 14px;
    font-size: 15px;
  }

  .hero-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .hero-badges span {
    min-height: 46px;
    justify-content: center;
    padding: 8px 6px;
    border-color: rgba(255, 255, 255, .72);
    border-radius: 12px;
    background: rgba(255, 255, 255, .94);
    color: #0F4C81;
    font-size: 11px;
    line-height: 1.25;
    text-align: center;
  }

  .hero .lead-form {
    position: relative;
    z-index: 2;
    margin: 0;
    padding: 22px 18px;
    border: 1px solid #E4E8EE;
    border-top: 4px solid #D8A72F;
    border-radius: 20px;
    background: #FFFFFF;
    color: #102033;
    box-shadow: 0 18px 44px rgba(17, 24, 39, .12);
  }

  .hero .lead-form h2 {
    font-size: 28px;
    line-height: 1.12;
  }

  .hero .lead-form label {
    color: #102033;
    font-size: 14px;
  }

  .hero .lead-form input,
  .hero .lead-form select,
  .hero .lead-form textarea {
    border-color: #D7DFEA;
    background: #FFFFFF;
    color: #102033;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
