:root {
  --bg: #ffffff;
  --surface: #f5f9fd;
  --surface-strong: #edf5fb;
  --ink: #162033;
  --muted: #5c6a7f;
  --soft: #7a8799;
  --line: #dbe7f2;
  --line-strong: #c7d9ea;
  --blue: #1769e0;
  --blue-strong: #0e55bc;
  --blue-soft: #e8f2ff;
  --teal: #00a7b5;
  --teal-soft: #e4fbfb;
  --navy: #173d6d;
  --amber: #f3a93f;
  --shadow: 0 16px 40px rgba(23, 61, 109, 0.09);
  --shadow-soft: 0 10px 24px rgba(23, 61, 109, 0.07);
  --radius: 8px;
  --header-height: 76px;
  --font-display: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(23, 105, 224, 0.35);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1200;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--blue);
  color: #fff;
  padding: 10px 14px;
  font-weight: 700;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.container-narrow {
  width: min(860px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 231, 242, 0.86);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.95), rgba(0, 167, 181, 0.86)),
    #1769e0;
  color: #fff;
  box-shadow: 0 10px 24px rgba(23, 105, 224, 0.18);
}

.brand-mark svg {
  width: 25px;
  height: 25px;
}

.brand-text {
  display: grid;
  gap: 0;
  line-height: 1.05;
}

.brand-name {
  font-size: 1.02rem;
  color: var(--ink);
}

.brand-meta {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  margin-left: auto;
  min-width: 0;
}

.nav-menu a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  color: #31405a;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  padding: 11px 9px;
  white-space: nowrap;
  transition: background 160ms ease, color 160ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.nav-menu a.is-active {
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.nav-cta {
  min-width: max-content;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  background: var(--blue);
  color: #fff;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  box-shadow: 0 14px 28px rgba(23, 105, 224, 0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.btn:hover,
.btn:focus-visible {
  background: var(--blue-strong);
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(23, 105, 224, 0.22);
}

.btn-secondary {
  border-color: rgba(23, 105, 224, 0.22);
  background: rgba(255, 255, 255, 0.92);
  color: var(--blue-strong);
  box-shadow: none;
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(23, 105, 224, 0.36);
  background: #fff;
  color: var(--blue-strong);
}

.btn-light {
  background: #fff;
  color: var(--blue-strong);
  box-shadow: none;
}

.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
  box-shadow: none;
}

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

.home-hero {
  position: relative;
  display: flex;
  min-height: min(720px, calc(100svh - var(--header-height) - 24px));
  align-items: center;
  overflow: hidden;
  background: #edf6ff;
}

.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.home-hero::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.68) 34%, rgba(255, 255, 255, 0.14) 62%, rgba(255, 255, 255, 0) 100%);
}

.home-hero::after,
.page-hero::after,
.soft-pattern::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(23, 105, 224, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 167, 181, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
}

.home-hero::after {
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  padding: 54px 0;
}

.eyebrow,
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--blue-strong);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.hero-kicker::before {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--teal);
  content: "";
  box-shadow: 0 0 0 5px rgba(0, 167, 181, 0.13);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 7vw, 5rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 900;
}

h3 {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 850;
}

h4 {
  font-size: 1.02rem;
  font-weight: 850;
}

.lead {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(1.03rem, 2vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #30435f;
  padding: 9px 12px;
  font-weight: 800;
  box-shadow: 0 8px 18px rgba(23, 61, 109, 0.06);
}

.check-dot {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  position: relative;
  flex: 0 0 auto;
}

.check-dot::after {
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  content: "";
  transform: rotate(45deg);
}

.section {
  position: relative;
  padding: 84px 0;
}

.section-tight {
  padding: 62px 0;
}

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

.section-blue {
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.09), rgba(0, 167, 181, 0.08)),
    #f4faff;
}

.section-header {
  display: grid;
  max-width: 760px;
  gap: 14px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-self: center;
}

.section-header p,
.card p,
.feature-list,
.rich-text p,
.timeline-card p,
.package-card p,
.sector-detail p,
.blog-card p {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  border-color: var(--line-strong);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.value-card,
.service-card,
.sector-card,
.reference-card,
.blog-card,
.package-card,
.contact-panel,
.quote-panel,
.about-panel {
  padding: 24px;
}

.value-card,
.service-card,
.sector-card {
  display: grid;
  gap: 16px;
  align-content: start;
}

.icon-box {
  position: relative;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 72% 22%, rgba(255, 255, 255, 0.88), transparent 22px),
    linear-gradient(135deg, #e9f5ff, #eefdfa);
}

.icon-box svg {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  color: var(--blue-strong);
}

.icon-box::after {
  position: absolute;
  right: -14px;
  bottom: -16px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(0, 167, 181, 0.22);
  content: "";
}

.mini-visual {
  position: relative;
  min-height: 128px;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.12)),
    linear-gradient(135deg, #eaf4ff, #ecfbfa);
}

.mini-visual::before,
.mini-visual::after {
  position: absolute;
  content: "";
}

.mini-visual.web::before {
  left: 22px;
  top: 26px;
  width: 86px;
  height: 58px;
  border: 8px solid #fff;
  border-radius: 7px;
  background: linear-gradient(180deg, var(--blue), #8cc9ff);
  box-shadow: 0 18px 30px rgba(23, 105, 224, 0.18);
}

.mini-visual.web::after {
  right: 22px;
  bottom: 20px;
  width: 74px;
  height: 42px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, #fff 28%, transparent 28%),
    linear-gradient(180deg, #bdeeff, #fff);
  box-shadow: 0 14px 26px rgba(0, 167, 181, 0.14);
}

.mini-visual.mobile::before {
  left: 34px;
  top: 18px;
  width: 54px;
  height: 88px;
  border: 8px solid #fff;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fbff, #bbecf3);
  box-shadow: 0 18px 30px rgba(23, 61, 109, 0.14);
}

.mini-visual.mobile::after {
  right: 26px;
  top: 38px;
  width: 82px;
  height: 54px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  box-shadow: 0 16px 28px rgba(23, 105, 224, 0.2);
}

.mini-visual.seo::before {
  left: 24px;
  top: 28px;
  width: 96px;
  height: 42px;
  border-radius: 999px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), 0 16px 28px rgba(23, 61, 109, 0.1);
}

.mini-visual.seo::after {
  left: 58px;
  bottom: 20px;
  width: 70px;
  height: 70px;
  border: 12px solid var(--blue);
  border-radius: 50%;
  border-right-color: var(--teal);
  transform: rotate(-24deg);
}

.mini-visual.speed::before {
  left: 32px;
  top: 28px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: conic-gradient(var(--blue), var(--teal), #fff 68%, #d9eefc);
  box-shadow: 0 16px 28px rgba(23, 105, 224, 0.16);
}

.mini-visual.speed::after {
  left: 78px;
  top: 44px;
  width: 52px;
  height: 12px;
  border-radius: 999px;
  background: #fff;
  transform: rotate(-34deg);
  box-shadow: 0 14px 20px rgba(23, 61, 109, 0.12);
}

.mini-visual.sector::before {
  left: 22px;
  bottom: 20px;
  width: 132px;
  height: 70px;
  border-radius: 8px 8px 4px 4px;
  background:
    linear-gradient(90deg, transparent 20%, rgba(255, 255, 255, 0.65) 20% 24%, transparent 24% 50%, rgba(255, 255, 255, 0.65) 50% 54%, transparent 54%),
    linear-gradient(180deg, #bceefa, #ffffff);
  box-shadow: 0 16px 28px rgba(0, 167, 181, 0.13);
}

.mini-visual.sector::after {
  right: 24px;
  top: 24px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  transform: rotate(9deg);
  box-shadow: 0 18px 30px rgba(23, 105, 224, 0.19);
}

.mini-visual.support::before {
  left: 24px;
  top: 34px;
  width: 94px;
  height: 58px;
  border-radius: 12px;
  background: #fff;
  box-shadow: inset 0 0 0 1px var(--line), 0 16px 28px rgba(23, 61, 109, 0.1);
}

.mini-visual.support::after {
  right: 30px;
  top: 28px;
  width: 64px;
  height: 64px;
  border: 13px solid var(--blue);
  border-left-color: var(--teal);
  border-radius: 50%;
  box-shadow: 0 16px 28px rgba(23, 105, 224, 0.14);
}

.sector-card .sector-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius);
  background: var(--blue-soft);
  color: var(--blue-strong);
}

.sector-card svg {
  width: 29px;
  height: 29px;
}

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

.timeline-card {
  position: relative;
  padding: 26px;
  overflow: hidden;
}

.timeline-card::before {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: #fff;
  content: counter(steps);
  counter-increment: steps;
  font-weight: 900;
  box-shadow: 0 12px 24px rgba(23, 105, 224, 0.2);
}

.timeline-card::after {
  position: absolute;
  right: -18px;
  top: -18px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(0, 167, 181, 0.1);
  content: "";
}

.image-band {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
  box-shadow: var(--shadow-soft);
}

.image-band img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.image-band::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.08));
  content: "";
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 34px;
  align-items: center;
}

.rich-text {
  display: grid;
  gap: 18px;
}

.feature-list,
.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li,
.clean-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list li::before,
.clean-list li::before {
  width: 18px;
  height: 18px;
  margin-top: 4px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--blue));
  content: "";
  box-shadow: inset 0 0 0 5px #fff, 0 0 0 1px rgba(23, 105, 224, 0.2);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 66px;
  background:
    radial-gradient(circle at 78% 12%, rgba(0, 167, 181, 0.12), transparent 28%),
    linear-gradient(135deg, #f7fbff 0%, #eef7ff 100%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--soft);
  font-size: 0.9rem;
  font-weight: 750;
}

.breadcrumb a {
  color: var(--blue-strong);
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
}

.service-row,
.sector-detail {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 28px;
  align-items: center;
  padding: 26px;
}

.service-row + .service-row,
.sector-detail + .sector-detail {
  margin-top: 18px;
}

.service-row:nth-child(even),
.sector-detail:nth-child(even) {
  grid-template-columns: 1.12fr 0.88fr;
}

.service-row:nth-child(even) .mini-visual,
.service-row:nth-child(even) .service-photo,
.sector-detail:nth-child(even) .sector-photo {
  order: 2;
}

.sector-photo {
  min-height: 260px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.sector-photo img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.sector-illustration {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 105, 224, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(0, 167, 181, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, #f4faff, #eafafa);
  background-size: 32px 32px, 32px 32px, auto;
}

.sector-illustration::before,
.sector-illustration::after {
  position: absolute;
  content: "";
}

.sector-illustration.recycling::before {
  left: 42px;
  bottom: 42px;
  width: 92px;
  height: 92px;
  border: 16px solid var(--teal);
  border-right-color: transparent;
  border-radius: 50%;
  transform: rotate(-28deg);
}

.sector-illustration.recycling::after {
  right: 44px;
  bottom: 34px;
  width: 132px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #bfeff4);
  box-shadow: 0 18px 34px rgba(0, 167, 181, 0.16);
}

.sector-illustration.truck::before {
  left: 36px;
  bottom: 62px;
  width: 190px;
  height: 72px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff, #b9dfff);
  box-shadow: 0 18px 34px rgba(23, 105, 224, 0.15);
}

.sector-illustration.truck::after {
  left: 62px;
  bottom: 42px;
  width: 176px;
  height: 34px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 50%, var(--navy) 0 12px, #fff 13px 18px, transparent 19px),
    radial-gradient(circle at 84% 50%, var(--navy) 0 12px, #fff 13px 18px, transparent 19px);
}

.sector-illustration.plumbing::before {
  left: 48px;
  top: 62px;
  width: 146px;
  height: 28px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  box-shadow: 58px 58px 0 #fff, 0 18px 30px rgba(23, 105, 224, 0.15);
}

.sector-illustration.plumbing::after {
  right: 54px;
  bottom: 40px;
  width: 70px;
  height: 96px;
  border: 16px solid #fff;
  border-top-color: var(--teal);
  border-right-color: var(--blue);
  border-radius: 16px;
}

.sector-illustration.auto::before {
  left: 44px;
  bottom: 48px;
  width: 178px;
  height: 82px;
  border-radius: 42px 42px 10px 10px;
  background: linear-gradient(135deg, #fff, #bdeeff);
  box-shadow: 0 18px 34px rgba(23, 61, 109, 0.13);
}

.sector-illustration.auto::after {
  left: 72px;
  bottom: 34px;
  width: 132px;
  height: 36px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 18% 50%, var(--navy) 0 13px, #fff 14px 19px, transparent 20px),
    radial-gradient(circle at 82% 50%, var(--navy) 0 13px, #fff 14px 19px, transparent 20px);
}

.sector-illustration.construction::before {
  left: 56px;
  bottom: 36px;
  width: 152px;
  height: 132px;
  border-radius: 8px 8px 4px 4px;
  background:
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 255, 255, 0.72) 22px 28px),
    linear-gradient(180deg, #bceefa, #fff);
  box-shadow: 0 18px 34px rgba(0, 167, 181, 0.14);
}

.sector-illustration.construction::after {
  right: 50px;
  top: 42px;
  width: 108px;
  height: 22px;
  border-radius: 999px;
  background: var(--amber);
  transform: rotate(-18deg);
  box-shadow: 18px 36px 0 rgba(23, 105, 224, 0.7);
}

.sector-illustration.local::before {
  left: 48px;
  bottom: 44px;
  width: 164px;
  height: 108px;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 105, 224, 0.84) 0 32px, #fff 32px),
    linear-gradient(90deg, transparent 0 30%, rgba(0, 167, 181, 0.18) 30% 34%, transparent 34%);
  box-shadow: 0 18px 34px rgba(23, 105, 224, 0.14);
}

.sector-illustration.local::after {
  right: 48px;
  bottom: 68px;
  width: 72px;
  height: 72px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  transform: rotate(9deg);
  box-shadow: 0 18px 34px rgba(23, 105, 224, 0.18);
}

.sector-detail h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0;
}

.tag {
  border: 1px solid rgba(23, 105, 224, 0.14);
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--blue-strong);
  padding: 6px 10px;
  font-size: 0.84rem;
  font-weight: 800;
}

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

.package-card {
  position: relative;
  display: grid;
  gap: 18px;
  align-content: start;
}

.package-card.featured {
  border-color: rgba(23, 105, 224, 0.32);
  box-shadow: 0 20px 44px rgba(23, 105, 224, 0.13);
}

.package-label {
  position: absolute;
  right: 18px;
  top: 18px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: #087783;
  padding: 6px 10px;
  font-size: 0.78rem;
  font-weight: 900;
}

.price {
  color: var(--blue-strong);
  font-size: 1.55rem;
  font-weight: 900;
}

.comparison {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.comparison table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.comparison th,
.comparison td {
  border-bottom: 1px solid var(--line);
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.comparison th {
  background: var(--surface);
  color: var(--ink);
  font-weight: 900;
}

.comparison tr:last-child td {
  border-bottom: 0;
}

.reference-card {
  display: grid;
  gap: 16px;
}

.mockup {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  border: 1px solid rgba(23, 105, 224, 0.12);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), transparent),
    linear-gradient(135deg, #e7f2ff, #effcfb);
}

.mockup::before {
  position: absolute;
  left: 24px;
  top: 28px;
  width: 74%;
  height: 112px;
  border: 9px solid #fff;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(23, 105, 224, 0.72), rgba(0, 167, 181, 0.12) 44%, #fff 44%),
    repeating-linear-gradient(0deg, transparent 0 13px, rgba(23, 105, 224, 0.14) 13px 16px);
  content: "";
  box-shadow: 0 16px 30px rgba(23, 61, 109, 0.13);
}

.mockup::after {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 54px;
  height: 90px;
  border: 8px solid #fff;
  border-radius: 13px;
  background: linear-gradient(180deg, #f8fcff, #b9eef0);
  content: "";
  box-shadow: 0 14px 24px rgba(0, 167, 181, 0.13);
}

.project-image {
  overflow: hidden;
  border-radius: var(--radius);
}

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

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

.visual-proof-grid {
  margin-bottom: 34px;
}

.photo-card {
  overflow: hidden;
}

.photo-card img,
.service-photo img,
.sector-thumb img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

.photo-card-body {
  display: grid;
  gap: 8px;
  padding: 20px;
}

.photo-card-body p {
  margin: 0;
  color: var(--muted);
}

.service-photo {
  min-height: 250px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-strong);
}

.service-photo img {
  height: 100%;
  min-height: 250px;
}

.sector-thumb {
  overflow: hidden;
  margin: -24px -24px 4px;
  border-radius: var(--radius) var(--radius) 0 0;
}

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

.blog-card {
  display: grid;
  gap: 14px;
}

.blog-meta {
  color: var(--blue-strong);
  font-size: 0.84rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-band {
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(23, 105, 224, 0.93), rgba(0, 129, 166, 0.9)),
    #1769e0;
  color: #fff;
  padding: 44px;
}

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

.cta-band p {
  max-width: 680px;
  opacity: 0.92;
}

.cta-band .section-actions {
  margin-top: 24px;
}

.contact-layout,
.quote-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 22px;
  align-items: start;
}

.contact-panel,
.quote-panel,
.about-panel {
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  gap: 2px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 12px;
}

.contact-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-list strong {
  color: var(--ink);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
}

.map-placeholder {
  position: relative;
  min-height: 280px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(23, 105, 224, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(0, 167, 181, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, #f5faff, #e9f8fa);
  background-size: 36px 36px, 36px 36px, auto;
}

.map-placeholder::before {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 32px;
  height: 32px;
  border-radius: 50% 50% 50% 0;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  content: "";
  transform: translate(-50%, -50%) rotate(-45deg);
  box-shadow: 0 12px 30px rgba(23, 105, 224, 0.24);
}

.map-placeholder::after {
  position: absolute;
  left: 50%;
  top: 48%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translate(-50%, -50%);
}

.form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 7px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 12px 13px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  min-height: 138px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(23, 105, 224, 0.64);
  outline: none;
  box-shadow: 0 0 0 4px rgba(23, 105, 224, 0.11);
}

.form-note {
  min-height: 24px;
  color: #087783;
  font-weight: 800;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #f2f8fc;
  padding: 56px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.72fr 0.9fr 1fr;
  gap: 28px;
  align-items: start;
}

.footer-grid p,
.footer-grid a,
.footer-bottom {
  color: var(--muted);
}

.footer-list {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.footer-list a:hover,
.footer-list a:focus-visible {
  color: var(--blue-strong);
}

.social-row {
  display: flex;
  gap: 9px;
  margin-top: 14px;
}

.social-row a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--blue-strong);
}

.social-row svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
  font-size: 0.92rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 900;
  display: grid;
  gap: 10px;
}

.floating-actions a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius);
  padding: 11px 14px;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 900;
  box-shadow: 0 16px 30px rgba(23, 61, 109, 0.18);
}

.floating-whatsapp {
  background: #0b9f70;
}

.floating-quote {
  background: var(--blue);
}

.floating-actions svg {
  width: 19px;
  height: 19px;
}

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

@media (min-width: 1041px) and (max-width: 1180px) {
  .nav-shell {
    gap: 10px;
  }

  .brand {
    gap: 9px;
  }

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

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-meta {
    font-size: 0.68rem;
  }

  .nav-menu {
    gap: 2px;
  }

  .nav-menu a {
    font-size: 0.84rem;
    padding: 10px 7px;
  }

  .nav-cta {
    font-size: 0.86rem;
    padding-inline: 12px;
  }
}

@media (max-width: 1040px) {
  .nav-menu {
    position: fixed;
    left: 16px;
    right: 16px;
    top: calc(var(--header-height) + 8px);
    z-index: 999;
    display: grid;
    max-height: calc(100svh - var(--header-height) - 28px);
    overflow: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    padding: 10px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px;
  }

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

  .nav-cta {
    display: none;
  }

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

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

  .split,
  .contact-layout,
  .quote-layout,
  .service-row,
  .service-row:nth-child(even),
  .sector-detail,
  .sector-detail:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-row:nth-child(even) .mini-visual,
  .service-row:nth-child(even) .service-photo,
  .sector-detail:nth-child(even) .sector-photo {
    order: 0;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 70px;
  }

  body {
    font-size: 15.5px;
  }

  .container,
  .container-narrow {
    width: min(100% - 28px, 1120px);
  }

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

  .brand-meta {
    display: none;
  }

  .home-hero {
    min-height: auto;
    align-items: flex-start;
  }

  .home-hero::before {
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.84) 58%, rgba(255, 255, 255, 0.56) 100%);
  }

  .hero-bg-image {
    object-position: 62% center;
  }

  .hero-content {
    padding: 30px 0 36px;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .lead {
    margin-top: 14px;
    line-height: 1.58;
  }

  .hero-actions,
  .trust-strip {
    margin-top: 20px;
  }

  .trust-strip {
    gap: 8px;
  }

  .trust-item {
    padding: 8px 10px;
    font-size: 0.78rem;
  }

  .check-dot {
    width: 15px;
    height: 15px;
  }

  .check-dot::after {
    left: 4px;
    top: 2px;
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .section {
    padding: 62px 0;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .photo-grid,
  .timeline,
  .package-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .value-card,
  .service-card,
  .sector-card,
  .reference-card,
  .blog-card,
  .package-card,
  .contact-panel,
  .quote-panel,
  .about-panel,
  .service-row,
  .sector-detail {
    padding: 20px;
  }

  .sector-thumb {
    margin: -20px -20px 4px;
  }

  .cta-band {
    padding: 30px 22px;
  }

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

  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    grid-template-columns: 1fr 1fr;
  }

  .floating-actions a {
    min-height: 42px;
    padding: 10px 8px;
    font-size: 0.84rem;
  }

  .site-footer {
    padding-bottom: 78px;
  }
}

@media (max-width: 420px) {
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item {
    width: auto;
    justify-content: center;
    gap: 6px;
    padding: 7px 6px;
    font-size: 0.7rem;
    text-align: center;
  }

  .check-dot {
    width: 13px;
    height: 13px;
  }

  .check-dot::after {
    left: 4px;
    top: 2px;
    width: 4px;
    height: 7px;
    border-width: 0 1.5px 1.5px 0;
  }

  .brand-name {
    font-size: 0.96rem;
  }

  .floating-actions span {
    white-space: nowrap;
  }
}
