
:root {
  --blue: #004696;
  --blue-bright: #006ec8;
  --green: #5aaa28;
  --green-dark: #2f7d1f;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #dbe3ea;
  --surface: #f6f9fb;
  --surface-strong: #eaf2f8;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(15, 23, 42, .12);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, .08);
  --radius: 8px;
  --header-height: 82px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: var(--white);
}

body.menu-open {
  overflow: hidden;
}

img, video, iframe {
  max-width: 100%;
}

img {
  display: block;
}

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

p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--ink);
}

h1 {
  font-size: 4rem;
  max-width: 980px;
}

h2 {
  font-size: 2.75rem;
}

h3 {
  font-size: 1.1rem;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 10000;
  background: var(--blue);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: top .2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 9999;
  transition: background .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.menu-active {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 28px rgba(15, 23, 42, .12);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand,
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  color: var(--white);
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: rgba(255, 255, 255, .92);
  border-radius: 8px;
  padding: 3px;
}

.brand span {
  font-size: 1.35rem;
}

.site-header.is-scrolled .brand,
.site-header.menu-active .brand,
.site-header.is-scrolled .desktop-nav,
.site-header.menu-active .desktop-nav,
.site-header.is-scrolled .nav-phone,
.site-header.menu-active .nav-phone,
.site-header.is-scrolled .menu-toggle,
.site-header.menu-active .menu-toggle {
  color: var(--ink);
}

.desktop-nav,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .92);
}

.desktop-nav > a,
.nav-dropdown > button {
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  padding: 10px 12px;
  border-radius: var(--radius);
}

.desktop-nav > a:hover,
.nav-dropdown > button:hover {
  background: rgba(255, 255, 255, .12);
}

.site-header.is-scrolled .desktop-nav > a:hover,
.site-header.is-scrolled .nav-dropdown > button:hover {
  background: var(--surface-strong);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown button {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown .icon {
  width: 16px;
  height: 16px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: grid;
  min-width: 285px;
  max-height: 70vh;
  overflow: auto;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .18s ease;
}

.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  padding: 10px 12px;
  color: var(--ink-soft);
  border-radius: 6px;
  font-weight: 700;
}

.dropdown-menu a:hover {
  color: var(--blue);
  background: var(--surface);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .92);
  font-weight: 800;
}

.icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: var(--radius);
  font-weight: 900;
  line-height: 1;
  border: 2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-small {
  min-height: 42px;
  padding: 10px 14px;
  font-size: .95rem;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  background: var(--blue);
  color: var(--white);
}

.btn-secondary:hover {
  background: #003775;
}

.btn-light {
  background: var(--white);
  color: var(--blue);
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, .82);
  color: var(--white);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--blue);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--green);
}

.inline-actions,
.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-actions {
  margin-top: 22px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-close {
  display: none;
}

.site-header.menu-active .menu-open {
  display: none;
}

.site-header.menu-active .menu-close {
  display: block;
}

.mobile-panel {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.mobile-nav {
  display: grid;
  gap: 2px;
  padding: 14px 0 22px;
  max-height: calc(100vh - var(--header-height));
  overflow: auto;
}

.mobile-nav a {
  padding: 12px 10px;
  color: var(--ink);
  font-weight: 800;
  border-radius: var(--radius);
}

.mobile-nav a:hover {
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: 76vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.home-hero {
  min-height: 88vh;
}

.home-hero::before {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  bottom: -8%;
  height: 38%;
  background:
    linear-gradient(90deg, transparent, rgba(90, 170, 40, .28), rgba(0, 110, 200, .28), transparent),
    linear-gradient(0deg, rgba(255, 255, 255, .18), transparent 70%);
  filter: blur(22px);
  opacity: .95;
  z-index: 3;
  transform: skewY(-4deg);
}

.hero-light-sweep {
  position: absolute;
  inset: 18% -20% auto -20%;
  height: 34%;
  background: linear-gradient(112deg, transparent 20%, rgba(90, 170, 40, .22), rgba(0, 110, 200, .24), transparent 80%);
  filter: blur(12px);
  mix-blend-mode: screen;
  opacity: .95;
  z-index: 3;
  transform: translateX(-12%) skewY(-7deg);
  animation: headerSweep 9s ease-in-out infinite;
}

@keyframes headerSweep {
  0%, 100% { transform: translateX(-12%) skewY(-7deg); opacity: .72; }
  50% { transform: translateX(12%) skewY(-7deg); opacity: 1; }
}

.inner-hero {
  min-height: 560px;
}

.hero-video,
.inner-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(4, 20, 38, .82), rgba(4, 54, 92, .58) 50%, rgba(0, 0, 0, .35));
  z-index: 2;
}

.home-hero .hero-overlay {
  background: linear-gradient(180deg, rgba(4, 20, 38, .72), rgba(0, 70, 150, .68));
}

.hero-content {
  position: relative;
  z-index: 4;
  padding: 112px 0 56px;
}

.hero-content.centered {
  text-align: center;
  display: grid;
  justify-items: center;
}

.hero h1,
.hero h2,
.hero h3,
.hero p {
  color: var(--white);
}

.hero p {
  max-width: 780px;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, .86);
  margin-bottom: 0;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 13px;
  margin-bottom: 12px;
  border: 1px solid rgba(255, 255, 255, .28);
  border-radius: 999px;
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-logo-wrap {
  position: relative;
  margin-bottom: 14px;
  padding: 3px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(90, 170, 40, .95), rgba(0, 110, 200, .95));
  box-shadow: 0 0 36px rgba(0, 110, 200, .44), 0 0 56px rgba(90, 170, 40, .32);
}

.hero-logo-wrap::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 16px;
  background: conic-gradient(from 180deg, rgba(90, 170, 40, .08), rgba(90, 170, 40, .65), rgba(0, 110, 200, .72), rgba(255, 255, 255, .45), rgba(90, 170, 40, .08));
  filter: blur(18px);
  opacity: .72;
  z-index: -1;
  animation: logoGlow 7s linear infinite;
}

.home-hero h1 {
  text-shadow: 0 0 26px rgba(0, 110, 200, .34), 0 0 36px rgba(90, 170, 40, .14), 0 3px 16px rgba(0, 0, 0, .45);
}

.home-hero .hero-kicker {
  border-color: rgba(190, 255, 170, .48);
  box-shadow: 0 0 26px rgba(90, 170, 40, .22), inset 0 0 18px rgba(0, 110, 200, .16);
}

@keyframes logoGlow {
  to { transform: rotate(360deg); }
}

.hero-logo {
  width: 132px;
  height: 132px;
  object-fit: contain;
  padding: 8px;
  margin-bottom: 0;
  background: rgba(255, 255, 255, .92);
  border-radius: var(--radius);
  box-shadow: 0 15px 42px rgba(15, 23, 42, .22);
  position: relative;
  z-index: 1;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin-top: 26px;
  background: rgba(255, 255, 255, .18);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  overflow: hidden;
}

.hero-stats div {
  padding: 14px;
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(8px);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
  color: var(--white);
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
}

.breadcrumbs {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, .82);
  font-weight: 800;
  font-size: .95rem;
}

.breadcrumbs a {
  color: var(--white);
}

.contact-strip {
  background: var(--blue);
  color: var(--white);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 13px 0;
  font-size: .92rem;
  font-weight: 800;
}

.strip-grid span,
.strip-grid a,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.strip-grid .icon {
  color: #bff0a8;
}

.section {
  padding: 92px 0;
}

.muted {
  background: var(--surface);
}

.section-heading {
  margin-bottom: 34px;
}

.section-heading.centered {
  text-align: center;
  display: grid;
  justify-items: center;
}

.section-heading > span,
.cta-inner span,
.included-layout span {
  display: inline-block;
  color: var(--blue);
  background: rgba(90, 170, 40, .12);
  padding: 7px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.section-heading p {
  max-width: 740px;
  margin-top: 14px;
  font-size: 1.08rem;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .92fr);
  gap: 56px;
  align-items: center;
}

.two-col.reverse {
  grid-template-columns: minmax(360px, .92fr) minmax(0, 1fr);
}

.feature-image,
.image-stack img,
.service-side-card img,
.detail-row img,
.expect-card img,
.gallery-grid img,
.service-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
}

.feature-image,
.image-stack img:first-child {
  box-shadow: var(--shadow-soft);
}

.image-stack {
  position: relative;
  min-height: 470px;
}

.image-stack img:first-child {
  position: absolute;
  inset: 0 0 auto 0;
}

.image-stack img:nth-child(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  border: 8px solid var(--white);
  box-shadow: var(--shadow);
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 26px 0 30px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.check-list .icon,
.value-card .icon,
.included-band .icon {
  color: var(--green);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.service-card a {
  display: grid;
  height: 100%;
}

.service-card div {
  padding: 20px;
}

.service-card h3,
.expect-card h3,
.value-card h3,
.process-step h3,
.solution-grid h3,
.contact-card h3,
.service-side-card h3 {
  color: var(--ink);
}

.service-card p {
  min-height: 76px;
  margin-bottom: 14px;
}

.service-card span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 950;
}

.service-card span .icon {
  width: 17px;
  height: 17px;
}

.cta-band {
  background: var(--blue);
  color: var(--white);
  padding: 58px 0;
}

.cta-band.dark {
  background: linear-gradient(135deg, #08315f, #004696 60%, #006ec8);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.cta-inner h2,
.cta-inner p,
.included-layout h2,
.included-layout p {
  color: var(--white);
}

.cta-inner p {
  max-width: 700px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .82);
}

.cta-inner span,
.included-layout span {
  background: rgba(255, 255, 255, .14);
  color: #d7ffc8;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

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

.value-grid.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-card {
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.value-card .icon {
  margin-bottom: 16px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-step {
  position: relative;
  min-height: 250px;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.process-step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 950;
}

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

.expect-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.expect-card img {
  border-radius: 0;
}

.expect-card div {
  padding: 22px;
}

.reviews {
  background: linear-gradient(180deg, var(--white), var(--surface));
}

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

.review-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.review-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.review-card div {
  padding: 24px;
}

.review-card p {
  font-size: 1.02rem;
}

.review-card h3 {
  margin-top: 16px;
}

.review-card small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 800;
}

.stars {
  display: inline-block;
  color: var(--green);
  font-weight: 950;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.area-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(420px, 1fr);
  gap: 42px;
  align-items: stretch;
}

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 28px;
}

.area-list li {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  font-weight: 800;
}

.map-panel {
  min-height: 430px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.gallery-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.gallery-grid figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 14px;
  color: var(--white);
  font-size: .92rem;
  font-weight: 900;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .78));
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .5fr) minmax(0, 1fr);
  gap: 56px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-item summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary h3 {
  font-size: 1.05rem;
}

.faq-item[open] summary span {
  transform: rotate(180deg);
}

.faq-item summary span {
  transition: transform .18s ease;
}

.quote-section {
  background: var(--surface);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: 28px;
  align-items: start;
}

.quote-layout > * {
  min-width: 0;
}

.quote-frame {
  height: 880px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
}

.quote-frame iframe,
.quote-frame .ep-iFrameContainer,
.quote-frame .ep-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  min-height: 880px !important;
  height: 880px !important;
}

.contact-card,
.service-side-card {
  min-width: 0;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.contact-card {
  display: grid;
  gap: 15px;
}

.contact-card a,
.contact-card span {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--ink-soft);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card h3,
.contact-card p,
.mini-list li {
  overflow-wrap: anywhere;
}

.mini-list {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.mini-list ul {
  display: grid;
  gap: 8px;
  margin-top: 10px;
}

.mini-list li {
  list-style: disc;
  margin-left: 18px;
  color: var(--ink-soft);
}

.service-side-card img {
  margin: -26px -26px 22px;
  width: calc(100% + 52px);
  max-width: calc(100% + 52px);
  border-radius: var(--radius) var(--radius) 0 0;
}

.detail-blocks {
  background: var(--white);
}

.detail-row {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 72px;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-row.reverse {
  grid-template-columns: minmax(380px, 1fr) minmax(0, .9fr);
}

.detail-row p {
  font-size: 1.05rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.solution-grid article {
  min-height: 150px;
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.included-band {
  padding: 76px 0;
  background: linear-gradient(135deg, #063669, #004696 55%, #0c7fd7);
}

.included-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.included-layout ul {
  display: grid;
  gap: 12px;
}

.included-layout li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
  font-weight: 800;
}

.included-layout .icon {
  color: #d7ffc8;
}

.related-services {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.related-services h3 {
  margin-bottom: 14px;
}

.related-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
  color: var(--blue);
  border-bottom: 1px solid var(--line);
  font-weight: 900;
}

.site-footer {
  background: #071b32;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.25fr;
  gap: 40px;
  padding: 60px 0;
}

.footer-brand {
  color: var(--white);
  align-items: flex-start;
}

.footer-brand img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: var(--white);
  border-radius: var(--radius);
  padding: 3px;
}

.footer-brand span {
  display: block;
  max-width: 260px;
  font-size: 1.05rem;
  line-height: 1.25;
}

.site-footer p,
.site-footer a,
.site-footer span,
.site-footer li {
  color: rgba(255, 255, 255, .78);
}

.site-footer h3 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: .9rem;
  text-transform: uppercase;
}

.site-footer ul {
  display: grid;
  gap: 10px;
}

.site-footer a:hover {
  color: var(--white);
}

.contact-list .icon {
  width: 18px;
  height: 18px;
  color: #bff0a8;
}

.service-area-line {
  margin-top: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 20px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: .9rem;
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-active .mobile-panel {
    display: block;
  }

  .service-grid,
  .value-grid.four,
  .review-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 860px) {
  .container {
    width: min(calc(100% - 28px), 1180px);
  }

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero {
    min-height: 720px;
  }

  .home-hero {
    min-height: 880px;
  }

  .hero-content {
    padding: 108px 0 44px;
  }

  .hero-logo {
    width: 118px;
    height: 118px;
  }

  .hero-logo-wrap {
    margin-bottom: 12px;
  }

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

  .strip-grid,
  .two-col,
  .two-col.reverse,
  .area-layout,
  .faq-layout,
  .quote-layout,
  .detail-row,
  .detail-row.reverse,
  .included-layout {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    justify-content: start;
  }

  .section {
    padding: 68px 0;
  }

  .image-stack {
    min-height: 0;
    display: grid;
    gap: 16px;
  }

  .image-stack img:first-child,
  .image-stack img:nth-child(2) {
    position: static;
    width: 100%;
    border: 0;
  }

  .value-grid,
  .value-grid.three,
  .expect-grid,
  .review-grid,
  .gallery-grid,
  .solution-grid {
    grid-template-columns: 1fr;
  }

  .area-layout,
  .quote-layout,
  .included-layout {
    gap: 26px;
  }

  .map-panel {
    min-height: 330px;
  }

  .quote-frame {
    height: 940px;
  }

  .quote-frame iframe,
  .quote-frame .ep-iFrameContainer,
  .quote-frame .ep-wrapper {
    min-height: 940px !important;
    height: 940px !important;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .brand span {
    font-size: 1.05rem;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .hero-actions,
  .inline-actions,
  .cta-actions {
    width: 100%;
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .value-grid.four,
  .process-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .quote-frame {
    height: 980px;
  }

  .quote-frame iframe,
  .quote-frame .ep-iFrameContainer,
  .quote-frame .ep-wrapper {
    min-height: 980px !important;
    height: 980px !important;
  }
}
