:root {
  color-scheme: dark;
  --bg: #03191c;
  --bg-deep: #010708;
  --panel: rgba(12, 71, 80, 0.72);
  --panel-strong: rgba(12, 71, 80, 0.82);
  --panel-soft: rgba(5, 35, 40, 0.8);
  --green: #E6FF28;
  --green-rgb: 230, 255, 40;
  --green-soft: #F1FF72;
  --green-soft-rgb: 241, 255, 114;
  --green-dark: #0C4750;
  --green-dark-rgb: 12, 71, 80;
  --white: #F9F7F2;
  --white-rgb: 249, 247, 242;
  --line: rgba(var(--green-rgb), 0.18);
  --line-strong: rgba(var(--green-rgb), 0.46);
  --text: rgba(var(--white-rgb), 0.78);
  --muted: rgba(var(--white-rgb), 0.52);
  --shadow-green: 0 0 38px rgba(var(--green-rgb), 0.18);
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-pill: 999px;
  --container: 1120px;
  --narrow: 820px;
  --header-height: 78px;
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 3% 6%, rgba(var(--green-rgb), 0.28), transparent 23rem),
    radial-gradient(circle at 96% 46%, rgba(var(--green-soft-rgb), 0.2), transparent 22rem),
    radial-gradient(circle at 50% 99%, rgba(var(--green-rgb), 0.18), transparent 18rem),
    linear-gradient(180deg, var(--bg-deep), var(--bg) 34%, #000 100%);
  color: var(--text);
  font-family: "Space Grotesk", "Avenir Next", sans-serif;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
}

body::before {
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 74%);
}

body::after {
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.12), transparent 18%, transparent 82%, rgba(var(--green-rgb), 0.12)),
    radial-gradient(circle at 50% 18%, rgba(var(--green-rgb), 0.1), transparent 26rem);
  filter: blur(6px);
  opacity: 0.7;
}

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

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

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

.site-shell {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  justify-content: center;
  padding: 0 clamp(16px, 4vw, 48px);
  height: var(--header-height);
  pointer-events: none;
}



.nav-bar {
  width: min(var(--container), 100%);
  height: 56px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  padding: 8px 10px 8px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.18), rgba(var(--green-dark-rgb), 0.78) 28%, rgba(3, 27, 31, 0.84)),
    rgba(var(--green-dark-rgb), 0.76);
  box-shadow: 0 10px 48px rgba(0, 0, 0, 0.42), var(--shadow-green);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.brand-logo {
  display: block;
  width: clamp(96px, 9vw, 126px);
  height: auto;
  flex: 0 0 auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: rgba(var(--white-rgb), 0.86);
  font-size: 0.78rem;
  font-weight: 500;
}

.nav-menu a,
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  color: rgba(var(--white-rgb), 0.76);
  line-height: 1;
  transition: color 180ms ease;
}

.nav-menu a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.8);
}

.nav-menu a:hover,
.nav-menu a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--green);
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after,
.footer-links a:hover::after,
.footer-links a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  color: var(--green-dark);
  background: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  box-shadow: 0 0 22px rgba(var(--green-rgb), 0.28);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-1px) scale(1.02);
  background: var(--green-soft);
  box-shadow: 0 0 34px rgba(var(--green-rgb), 0.38);
}

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--white);
  background: rgba(var(--green-dark-rgb), 0.8);
  cursor: pointer;
}

.menu-toggle span {
  width: 16px;
  height: 2px;
  border-radius: var(--radius-pill);
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-bar.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-bar.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-bar.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.section-pad {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: clamp(76px, 10vw, 132px);
}

.ambient-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 24% 8%, rgba(var(--green-rgb), 0.18), transparent 18rem),
    radial-gradient(circle at 77% 26%, rgba(var(--green-rgb), 0.09), transparent 16rem);
  opacity: 0.95;
}

.ambient-grid::before {
  content: "";
  position: absolute;
  inset: 30px 70px 120px;
  background-image:
    radial-gradient(circle, rgba(var(--white-rgb), 0.45) 1px, transparent 1.5px),
    linear-gradient(rgba(var(--green-rgb), 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.055) 1px, transparent 1px);
  background-position: 0 0, 0 0, 0 0;
  background-size: 80px 80px, 48px 48px, 48px 48px;
  mask-image: radial-gradient(circle at 50% 28%, #000, transparent 72%);
}

.pixel-cloud {
  position: absolute;
  z-index: -1;
  --cloud-x: 0px;
  --cloud-y: 0px;
  --cloud-scroll-y: 0px;
  --cloud-scale: 1;
  opacity: 0.35;
  pointer-events: none;
  transform: translate3d(
      var(--cloud-x),
      calc(var(--cloud-y) + var(--cloud-scroll-y)),
      0
    )
    scale(var(--cloud-scale));
  transform-origin: center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.pixel-cloud span {
  display: block;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  background:
    linear-gradient(135deg, rgba(var(--green-rgb), 0.22), rgba(var(--green-rgb), 0.06)),
    rgba(var(--green-dark-rgb), 0.52);
  box-shadow: inset 0 0 28px rgba(var(--green-rgb), 0.08), 0 0 24px rgba(var(--green-rgb), 0.08);
}

.pixel-cloud-left {
  top: 236px;
  left: clamp(-260px, calc(50% - 720px), -80px);
  width: clamp(178px, 18vw, 238px);
  aspect-ratio: 1;
}

.pixel-cloud-left span:nth-child(1) {
  left: 4.3%;
  top: 3.9%;
  width: 49.6%;
  height: 24.7%;
}

.pixel-cloud-left span:nth-child(2) {
  right: 0;
  top: 3.9%;
  width: 28.8%;
  height: 24.7%;
}

.pixel-cloud-left span:nth-child(3) {
  left: -1%;
  top: 51.8%;
  width: 76%;
  height: 24.7%;
  transform: rotate(-45deg);
  transform-origin: center;
}

.pixel-cloud-left span:nth-child(4) {
  right: 0;
  bottom: 4.4%;
  width: 28.8%;
  height: 49.4%;
}

.pixel-cloud-left span {
  position: absolute;
}

.pixel-cloud-right {
  top: 36px;
  right: max(14px, calc(50% - 570px));
  display: grid;
  grid-template-columns: repeat(3, 62px);
  grid-auto-rows: 62px;
  gap: 8px;
}

.pixel-cloud-right span:nth-child(2) {
  grid-column: 2;
  grid-row: 2;
}

.pixel-cloud-right span:nth-child(3) {
  grid-column: 3;
  grid-row: 4;
}

.pixel-cloud-right span:nth-child(4) {
  grid-column: 2;
  grid-row: 5;
}

.hero-content {
  width: min(960px, 100%);
  text-align: center;
}

.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  max-width: 100%;
  min-height: 26px;
  padding: 0 12px;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: var(--radius-pill);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.08);
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.08);
  font-size: 0.78rem;
  font-weight: 600;
}

.section-pill {
  margin: 0 auto 22px;
}

.section-pill span,
.project-link span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-availability {
  min-height: 32px;
  padding: 3px 14px 3px 6px;
  gap: 9px;
  border-color: rgba(var(--green-rgb), 0.34);
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.18), rgba(var(--green-rgb), 0.07)),
    rgba(var(--green-dark-rgb), 0.72);
  box-shadow: 0 0 26px rgba(var(--green-rgb), 0.14), inset 0 0 18px rgba(var(--green-rgb), 0.08);
}

.section-pill .pill-label {
  display: inline;
  width: auto;
  height: auto;
  place-items: initial;
  border-radius: 0;
  color: inherit;
  background: transparent;
  font-size: 0.76rem;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-inline: auto;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2.65rem, 5vw, 4.35rem);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(var(--white-rgb), 0.76);
  font-size: clamp(0.96rem, 1.28vw, 1.08rem);
  line-height: 1.65;
  font-weight: 400;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  max-width: min(760px, 100%);
  margin: 26px auto 0;
}

.hero-client-logos {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin: 0;
  padding-left: 10px;
  list-style: none;
}

.hero-client-logos li {
  --hero-logo-scale: 1;
  width: 54px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 10px;
  border: 1px solid rgba(var(--green-rgb), 0.2);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.14), transparent 78%),
    rgba(var(--green-dark-rgb), 0.76);
  box-shadow: 0 0 0 1px rgba(1, 7, 8, 0.78), 0 8px 20px rgba(0, 0, 0, 0.26);
}

.hero-client-logos li + li {
  margin-left: -9px;
}

.hero-client-logos img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1) brightness(0.92);
  opacity: 0.92;
  transform: scale(var(--hero-logo-scale));
}

.hero-client-logos img[src*="baucentar"],
.hero-client-logos img[src*="fena"] {
  --hero-logo-scale: 1.45;
}

.hero-client-logos img[src*="explora"],
.hero-client-logos img[src*="qms-bih"] {
  --hero-logo-scale: 1.12;
}

.hero-proof p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.82);
  font-size: clamp(0.84rem, 1.08vw, 0.96rem);
  line-height: 1.38;
  text-align: left;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  font-weight: 700;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.button-primary {
  color: var(--green-dark);
  background: var(--green);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.26);
}

.button-secondary {
  color: var(--green);
  border-color: rgba(var(--green-rgb), 0.3);
  background: rgba(var(--green-dark-rgb), 0.72);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--green-dark);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(var(--green-rgb), 0.24);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(720px, 100%);
  margin-top: clamp(68px, 8vw, 104px);
  border: 1px solid rgba(var(--green-rgb), 0.1);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.16), transparent 70%),
    rgba(var(--green-dark-rgb), 0.42);
  box-shadow: 0 0 44px rgba(var(--green-rgb), 0.08);
  overflow: hidden;
}

.stats article {
  min-height: 102px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 18px 14px;
}

.stats article + article {
  border-left: 1px solid rgba(var(--green-rgb), 0.1);
}

.stats strong {
  color: var(--white);
  font-size: clamp(1.36rem, 2.7vw, 1.75rem);
  line-height: 1;
  font-weight: 700;
}

.stats span {
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.78rem;
  text-align: center;
}

.client-logos {
  position: relative;
  margin-top: clamp(18px, 4vw, 42px);
  padding-top: clamp(18px, 3.5vw, 30px);
  padding-bottom: clamp(18px, 3.5vw, 30px);
  border-top: 1px solid rgba(var(--green-rgb), 0.12);
  border-bottom: 1px solid rgba(var(--green-rgb), 0.12);
}

.client-logos::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  z-index: -1;
  width: min(860px, 90vw);
  height: 190px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.1), transparent 72%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.client-logos-header {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 24px;
  margin-bottom: 18px;
}

.client-logos-kicker {
  margin: 0;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.client-logos h2 {
  max-width: 500px;
  margin: 0;
  color: rgba(var(--white-rgb), 0.88);
  font-size: clamp(1.05rem, 1.8vw, 1.38rem);
  line-height: 1.16;
  font-weight: 650;
  text-align: right;
}

.client-logos.projects-client-logos .client-logos-header {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.client-logos.projects-client-logos h2 {
  margin-inline: auto;
  text-align: center;
}

.client-logo-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(var(--green-rgb), 0.1);
  border-radius: 18px;
  background:
    linear-gradient(90deg, rgba(var(--green-dark-rgb), 0.72), rgba(1, 18, 21, 0.74)),
    rgba(var(--green-dark-rgb), 0.52);
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
}

.client-logo-slider::before,
.client-logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(120px, 18vw);
  pointer-events: none;
}

.client-logo-slider::before {
  left: 0;
  background: linear-gradient(90deg, rgba(3, 25, 28, 0.98), transparent);
}

.client-logo-slider::after {
  right: 0;
  background: linear-gradient(270deg, rgba(3, 25, 28, 0.98), transparent);
}

.client-logo-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  margin: 0;
  padding: 14px;
  list-style: none;
  animation: client-logo-marquee 54s linear infinite;
}

.client-logo-slider:hover .client-logo-track,
.client-logo-slider:focus-within .client-logo-track {
  animation-play-state: paused;
}

.client-logo-item {
  --client-logo-scale: 1;
  --client-logo-y: 0px;
  --client-logo-max-height: 48px;
  width: clamp(132px, 15vw, 174px);
  height: clamp(68px, 7vw, 84px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  margin-right: 14px;
  padding: 14px 18px;
  border: 1px solid rgba(var(--green-rgb), 0.1);
  border-radius: 14px;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.12), transparent 80%),
    rgba(var(--white-rgb), 0.045);
}

.client-logo-item img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: var(--client-logo-max-height);
  object-fit: contain;
  object-position: center;
  filter: brightness(0) invert(1) brightness(0.9);
  opacity: 0.9;
  transform: translateY(var(--client-logo-y)) scale(var(--client-logo-scale));
  transform-origin: center;
  vertical-align: middle;
}

.client-logo-item img[src*="baucentar"],
.client-logo-item img[src*="rimetal"],
.client-logo-item img[src*="plin-promet"],
.client-logo-item img[src*="rihotours"] {
  --client-logo-y: -2px;
}

.client-logo-item img[src*="explora"],
.client-logo-item img[src*="energokom"],
.client-logo-item img[src*="dinara-group"],
.client-logo-item img[src*="qms-bih"] {
  --client-logo-scale: 1.08;
}

.client-logo-item img[src*="baucentar"],
.client-logo-item img[src*="faktor"],
.client-logo-item img[src*="fena"],
.client-logo-item img[src*="mvl"],
.client-logo-item img[src*="vama-doo"],
.client-logo-item img[src*="walls%20and%20floors"] {
  --client-logo-scale: 1.55;
}

.client-logo-item img[src*="stav"] {
  --client-logo-scale: 1.55;
  filter: grayscale(1) brightness(0.58) contrast(7);
  mix-blend-mode: screen;
  opacity: 0.92;
}

.client-logo-item img[src*="rimetal"] {
  --client-logo-scale: 2.05;
}

.client-logo-item img[src*="cloud%20novi"],
.client-logo-item img[src*="simurg%20media"] {
  --client-logo-scale: 2.25;
}

.client-logo-item img[src*="alpha-refinish"],
.client-logo-item img[src*="celab"] {
  --client-logo-scale: 1.12;
}

@keyframes client-logo-marquee {
  to {
    transform: translateX(-50%);
  }
}

.section-heading {
  text-align: center;
  margin-bottom: clamp(24px, 4.2vw, 36px);
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(1.78rem, 3vw, 2.42rem);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: 0;
}

.section-heading p {
  max-width: 660px;
  margin: 14px auto 0;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.92rem;
  line-height: 1.6;
}

.website-audit {
  position: relative;
  margin-top: clamp(18px, 4vw, 46px);
}

.website-audit::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  z-index: -1;
  width: min(880px, 90vw);
  height: 320px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.14), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.website-audit-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(var(--green-rgb), 0.2), transparent 18rem),
    radial-gradient(circle at 92% 86%, rgba(var(--green-soft-rgb), 0.11), transparent 16rem),
    linear-gradient(135deg, rgba(var(--green-dark-rgb), 0.78), rgba(1, 18, 21, 0.94));
  box-shadow: var(--shadow-green), inset 0 0 34px rgba(var(--green-rgb), 0.035);
}

.website-audit-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, #000, transparent 88%);
}

.website-audit-copy,
.website-audit-detail {
  position: relative;
  z-index: 1;
}

.website-audit-copy h2 {
  max-width: 520px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(1.9rem, 3.5vw, 3.1rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.website-audit-copy p {
  max-width: 480px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.74);
  font-size: clamp(0.96rem, 1.28vw, 1.08rem);
  line-height: 1.66;
}

.website-audit-detail {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  padding-left: clamp(24px, 4vw, 42px);
  border-left: 1px solid rgba(var(--green-rgb), 0.16);
}

.website-audit-detail ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.website-audit-detail li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(var(--white-rgb), 0.84);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.42;
}

.website-audit-detail li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  margin-top: 0.55em;
  border: 1px solid rgba(var(--green-rgb), 0.5);
  border-radius: 2px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.3);
}

.website-audit-detail p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.92rem;
  line-height: 1.64;
}

.website-audit .button {
  max-width: 100%;
  min-height: 48px;
  padding-inline: 24px;
  text-align: center;
}

.about {
  position: relative;
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 74px);
  align-items: center;
  padding-top: clamp(86px, 11vw, 132px);
}

.about::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 18%;
  z-index: -1;
  width: min(820px, 86vw);
  height: 360px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.14), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.about-experience {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: clamp(28px, 5vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.2), transparent 14rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.82), rgba(1, 18, 21, 0.94));
  box-shadow: var(--shadow-green), inset 0 0 34px rgba(var(--green-rgb), 0.035);
}

.about-experience::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.about-experience-number,
.about-experience p,
.about-portfolio-link,
.about-copy {
  position: relative;
  z-index: 1;
}

.about-experience-number {
  display: flex;
  align-items: baseline;
  justify-content: center;
  color: var(--white);
  line-height: 0.85;
}

.about-experience-number strong {
  font-size: clamp(5.8rem, 13vw, 9rem);
  font-weight: 700;
  letter-spacing: 0;
}

.about-experience-number span {
  color: var(--green);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  text-shadow: 0 0 28px rgba(var(--green-rgb), 0.32);
}

.about-experience p {
  max-width: 310px;
  margin: 0;
  color: rgba(var(--white-rgb), 0.84);
  font-size: clamp(1.04rem, 1.7vw, 1.28rem);
  line-height: 1.28;
  font-weight: 650;
}

.about-portfolio-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid rgba(var(--green-rgb), 0.36);
  border-radius: var(--radius-pill);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.07);
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.06);
  font-size: 0.86rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.about-portfolio-link span {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
}

.about-portfolio-link:hover,
.about-portfolio-link:focus-visible {
  color: var(--green-dark);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.22);
}

.about-portfolio-link:hover span,
.about-portfolio-link:focus-visible span {
  color: var(--green);
  background: var(--green-dark);
}

.about-copy h2 {
  max-width: 690px;
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2.08rem, 4vw, 3.35rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.about-copy p {
  max-width: 700px;
  margin-bottom: 16px;
  color: rgba(var(--white-rgb), 0.72);
  font-size: clamp(0.96rem, 1.35vw, 1.08rem);
  line-height: 1.68;
}

.about-actions {
  display: flex;
  margin-top: 18px;
}

.services {
  margin-top: 34px;
  padding-top: 20px;
}

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

.service-card {
  position: relative;
  min-height: 430px;
  padding: 24px 24px 78px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 80% 8%, rgba(var(--green-rgb), 0.22), transparent 13rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.82), rgba(1, 18, 21, 0.86));
  overflow: hidden;
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.service-card::after,
.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.service-card:hover,
.service-card:focus-within,
.project-card:hover,
.project-card:focus-within,
.faq-item:hover {
  border-color: var(--line-strong);
  box-shadow: 0 0 36px rgba(var(--green-rgb), 0.12), inset 0 0 34px rgba(var(--green-rgb), 0.045);
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-3px);
}

.service-card h3 {
  position: relative;
  z-index: 2;
  max-width: 290px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  line-height: 1.18;
  font-weight: 650;
}

.service-card p {
  position: relative;
  z-index: 2;
  max-width: 310px;
  margin-bottom: 12px;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.84rem;
  line-height: 1.52;
}

.service-benefits {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.service-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(var(--white-rgb), 0.78);
  font-size: 0.8rem;
  line-height: 1.34;
}

.service-benefits li::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--green-rgb), 0.48);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(var(--green-rgb), 0.26);
}

.service-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 0;
  padding: 8px 12px;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: var(--radius-pill);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.07);
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.06);
  font-size: 0.78rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.service-link span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.service-link:hover,
.service-link:focus-visible {
  color: var(--green-dark);
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-1px);
  box-shadow: 0 0 22px rgba(var(--green-rgb), 0.22);
}

.service-link:hover span,
.service-link:focus-visible span {
  color: var(--green);
  background: var(--green-dark);
}

.service-visual {
  position: absolute;
  inset: auto 20px 22px 20px;
  height: 112px;
  z-index: 1;
  opacity: 0.34;
}

.service-identity .service-visual span {
  position: absolute;
  bottom: 8px;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(var(--green-rgb), 0.11);
  background: rgba(var(--green-rgb), 0.09);
}

.service-identity .service-visual span:nth-child(1) {
  left: 2px;
  border-radius: 58px 0 0 0;
}

.service-identity .service-visual span:nth-child(2) {
  left: 62px;
  border-radius: 0 58px 0 0;
}

.service-identity .service-visual span:nth-child(3) {
  left: 122px;
  border-radius: 50%;
}

.service-identity .service-visual span:nth-child(4) {
  right: 0;
  bottom: 52px;
  width: 34px;
  height: 34px;
  background: rgba(var(--green-rgb), 0.2);
}

.service-ui .service-visual span {
  position: absolute;
  border: 1px solid rgba(var(--green-rgb), 0.13);
  background: linear-gradient(135deg, rgba(var(--green-rgb), 0.2), rgba(var(--green-rgb), 0.05));
}

.service-ui .service-visual span:nth-child(1) {
  left: 22px;
  bottom: -26px;
  width: 78px;
  height: 178px;
  transform: rotate(42deg);
}

.service-ui .service-visual span:nth-child(2) {
  right: 20px;
  bottom: -18px;
  width: 84px;
  height: 160px;
  transform: rotate(-26deg);
}

.service-ui .service-visual span:nth-child(3) {
  left: 48%;
  bottom: 20px;
  width: 30px;
  height: 30px;
  opacity: 0.7;
}

.service-motion .service-visual {
  display: grid;
  place-items: center;
}

.service-motion .service-visual span:nth-child(1) {
  width: 160px;
  height: 76px;
  border: 1px solid rgba(var(--green-rgb), 0.2);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(var(--green-rgb), 0.14), transparent),
    rgba(var(--green-dark-rgb), 0.7);
  box-shadow: inset 0 0 24px rgba(var(--green-rgb), 0.08);
}

.service-motion .service-visual span:nth-child(2),
.service-motion .service-visual span:nth-child(3) {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 14px;
  top: 8px;
  background: rgba(var(--green-rgb), 0.24);
}

.service-motion .service-visual span:nth-child(3) {
  top: 44px;
  right: 50px;
}

.work-modes {
  position: relative;
  padding-top: clamp(86px, 12vw, 136px);
}

.work-modes::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 20%;
  z-index: -1;
  width: min(800px, 84vw);
  height: 320px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.13), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.work-modes-heading h2 {
  max-width: 760px;
  margin-inline: auto;
}

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

.work-mode-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 84% 8%, rgba(var(--green-rgb), 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.76), rgba(1, 18, 21, 0.92));
  overflow: hidden;
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.work-mode-card::before,
.success-step::before,
.blog-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.work-mode-card::after {
  content: "";
  position: absolute;
  right: -44px;
  top: -44px;
  width: 126px;
  height: 126px;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: 50%;
  box-shadow: inset 0 0 24px rgba(var(--green-rgb), 0.08);
}

.work-mode-card:hover,
.work-mode-card:focus-within,
.success-step:hover,
.success-step:focus-within,
.blog-card:hover,
.blog-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 0 36px rgba(var(--green-rgb), 0.12), inset 0 0 34px rgba(var(--green-rgb), 0.045);
}

.work-mode-number,
.work-mode-copy,
.work-mode-card ul,
.success-step > *,
.blog-card > * {
  position: relative;
  z-index: 1;
}

.work-mode-number {
  display: block;
  margin-bottom: 22px;
  color: rgba(var(--green-rgb), 0.1);
  font-size: clamp(4rem, 7vw, 5.8rem);
  font-weight: 700;
  line-height: 0.82;
  -webkit-text-stroke: 1px rgba(var(--green-rgb), 0.58);
  text-shadow: 0 0 28px rgba(var(--green-rgb), 0.18);
}

.work-mode-copy h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.24rem, 2vw, 1.58rem);
  line-height: 1.08;
  font-weight: 650;
}

.work-mode-copy p {
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.86rem;
  line-height: 1.58;
}

.work-mode-card ul {
  display: grid;
  gap: 10px;
  margin: auto 0 0;
  padding: 24px 0 0;
  list-style: none;
}

.work-mode-card li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(var(--white-rgb), 0.76);
  font-size: 0.82rem;
  line-height: 1.3;
}

.work-mode-card li::before {
  content: "";
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border: 1px solid rgba(var(--green-rgb), 0.5);
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.28);
}

.success-steps {
  position: relative;
  padding-top: clamp(88px, 11vw, 132px);
}

.success-steps-heading {
  margin-bottom: clamp(20px, 3.5vw, 34px);
}

.success-flow {
  position: relative;
}

.success-line {
  position: relative;
  width: 100%;
  height: 58px;
  margin: 0 auto -4px;
  pointer-events: none;
}

.success-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 28px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(var(--green-rgb), 0.34), var(--green), rgba(var(--green-rgb), 0.34), transparent);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.24);
}

.success-line::after {
  content: "";
  position: absolute;
  left: 20%;
  right: 20%;
  top: 16px;
  height: 26px;
  border-top: 1px solid rgba(var(--green-rgb), 0.22);
  border-bottom: 1px solid rgba(var(--green-rgb), 0.14);
  transform: skewX(-24deg);
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 82%, transparent);
}

.success-line span {
  position: absolute;
  top: 17px;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(var(--green-rgb), 0.5);
  border-radius: 50%;
  background: radial-gradient(circle, var(--green) 0 28%, rgba(var(--green-rgb), 0.16) 31% 100%);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.34);
  transform: translateX(-50%);
}

.success-line span:nth-child(1) {
  left: 12.5%;
}

.success-line span:nth-child(2) {
  left: 37.5%;
}

.success-line span:nth-child(3) {
  left: 62.5%;
}

.success-line span:nth-child(4) {
  left: 87.5%;
}

.success-step-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 22px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.success-step {
  position: relative;
  min-height: 264px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.18), transparent 11rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.76), rgba(1, 18, 21, 0.92));
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.success-step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border: 1px solid rgba(var(--green-rgb), 0.42);
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  box-shadow: 0 0 26px rgba(var(--green-rgb), 0.28);
  font-weight: 700;
}

.success-step h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.12rem, 1.7vw, 1.34rem);
  line-height: 1.14;
  font-weight: 650;
}

.success-step p {
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.86rem;
  line-height: 1.58;
}

.included {
  position: relative;
  padding-top: clamp(92px, 12vw, 140px);
}

.included::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 26%;
  z-index: -1;
  width: min(820px, 86vw);
  height: 360px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.14), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.included-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.38fr);
  gap: clamp(20px, 4vw, 34px);
  align-items: stretch;
}

.included-intro {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(24px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(var(--green-rgb), 0.2), transparent 16rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.78), rgba(1, 18, 21, 0.94));
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
}

.included-intro::after,
.included-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.included-intro h2,
.included-intro p,
.included-console,
.included-item > * {
  position: relative;
  z-index: 1;
}

.included-intro h2 {
  max-width: 420px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

.included-intro p {
  max-width: 430px;
  margin-bottom: 30px;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.94rem;
  line-height: 1.64;
}

.included-console {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--green-rgb), 0.14);
}

.included-console span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: 12px;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.07);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
}

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

.included-item {
  position: relative;
  min-height: 118px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 18px;
  border: 1px solid rgba(var(--green-rgb), 0.12);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% 0, rgba(var(--green-rgb), 0.14), transparent 10rem),
    rgba(var(--green-dark-rgb), 0.42);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.included-item:hover,
.included-item:focus-within {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 0 28px rgba(var(--green-rgb), 0.1);
}

.included-item-wide {
  grid-column: 1 / -1;
  min-height: 104px;
}

.included-index {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(var(--green-rgb), 0.38);
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  box-shadow: 0 0 20px rgba(var(--green-rgb), 0.22);
  font-size: 0.72rem;
  font-weight: 700;
}

.included-item h3 {
  max-width: 420px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.84);
  font-size: clamp(0.92rem, 1.25vw, 1.02rem);
  line-height: 1.34;
  font-weight: 600;
}

.services-cta {
  position: relative;
  margin-top: clamp(34px, 6vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 88% 20%, rgba(var(--green-rgb), 0.16), transparent 14rem),
    linear-gradient(90deg, rgba(var(--green-dark-rgb), 0.5), rgba(1, 18, 21, 0.62));
}

.services-cta-inner {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(24px, 5vw, 56px);
  padding-top: clamp(26px, 5vw, 42px);
  padding-bottom: clamp(26px, 5vw, 42px);
}

.services-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}

.services-cta-copy,
.services-cta .button {
  position: relative;
  z-index: 1;
}

.services-cta h2 {
  max-width: 580px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.14;
  font-weight: 650;
  letter-spacing: 0;
}

.services-cta-copy > p {
  max-width: 590px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.9rem;
  line-height: 1.58;
}

.services-cta .button {
  flex: 0 0 auto;
}

.projects {
  position: relative;
  padding-top: clamp(96px, 13vw, 150px);
}

.projects::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 760px;
  right: -240px;
  top: 440px;
  z-index: -1;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.2), transparent 70%);
  filter: blur(10px);
}

.project-stack {
  width: min(940px, 100%);
  margin-inline: auto;
  display: grid;
  gap: 18px;
}

.project-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(380px, 1.6fr);
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
  min-height: 294px;
  padding: clamp(22px, 4vw, 32px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 0 0, rgba(var(--green-rgb), 0.22), transparent 15rem),
    linear-gradient(135deg, rgba(var(--green-dark-rgb), 0.86), rgba(1, 18, 21, 0.94));
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.project-copy {
  position: relative;
  z-index: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-copy h3 {
  max-width: 280px;
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.32rem, 2vw, 1.68rem);
  line-height: 1.06;
  font-weight: 650;
}

.project-copy h3 a,
.blog-card h3 a {
  color: inherit;
}

.project-preview a,
.blog-media a {
  display: block;
}

.blog-media a {
  width: 100%;
  height: 100%;
}

.project-copy p {
  max-width: 280px;
  margin-bottom: 18px;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.84rem;
  line-height: 1.5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.72rem;
}

.tag-list span {
  min-height: 26px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(var(--green-rgb), 0.14);
  border-radius: var(--radius-pill);
  background: rgba(var(--green-rgb), 0.06);
  white-space: nowrap;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  transition: transform 180ms ease, color 180ms ease;
}

.project-link:hover,
.project-link:focus-visible {
  color: var(--green-soft);
  transform: translateX(2px);
}

.project-preview {
  position: relative;
  z-index: 2;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(var(--white-rgb), 0.08);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

.project-preview img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.project-card:hover .project-preview img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}

.testimonials {
  position: relative;
  padding-top: clamp(96px, 12vw, 144px);
}

.testimonials::before {
  content: "";
  position: absolute;
  left: -210px;
  top: 22%;
  z-index: -1;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.17), transparent 70%);
  filter: blur(10px);
}

.testimonial-slider {
  position: relative;
}

.testimonial-viewport {
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-inline: 2px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}

.testimonial-viewport::-webkit-scrollbar {
  display: none;
}

.testimonial-viewport.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.testimonial-track {
  display: flex;
  gap: 18px;
  padding: 2px 2px 8px;
}

.testimonial-slide {
  flex: 0 0 min(760px, calc(100% - 112px));
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.testimonial-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 92% 8%, rgba(var(--green-rgb), 0.2), transparent 13rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.78), rgba(1, 18, 21, 0.94));
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
  overflow: hidden;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.testimonial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.testimonial-card:hover,
.testimonial-card:focus-within {
  transform: translateY(-3px);
  border-color: var(--line-strong);
  box-shadow: 0 0 36px rgba(var(--green-rgb), 0.12), inset 0 0 34px rgba(var(--green-rgb), 0.045);
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-source {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.testimonial-card p {
  margin: 0 0 24px;
  color: var(--white);
  font-size: clamp(1rem, 1.45vw, 1.16rem);
  line-height: 1.46;
}

.testimonial-card footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--green-rgb), 0.14);
  color: rgba(var(--white-rgb), 0.54);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.testimonial-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
}

.testimonial-card footer span {
  display: block;
  color: rgba(var(--white-rgb), 0.58);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.testimonial-arrow,
.testimonial-dot {
  border: 1px solid rgba(var(--green-rgb), 0.22);
  color: var(--green);
  background:
    radial-gradient(circle at 50% 0, rgba(var(--green-rgb), 0.18), transparent 74%),
    rgba(var(--green-dark-rgb), 0.7);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.08);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.testimonial-arrow {
  width: 48px;
  height: 48px;
  display: inline-grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
}

.testimonial-arrow span {
  display: block;
  margin-top: -2px;
  font-size: 2rem;
  line-height: 1;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible,
.testimonial-dot:hover,
.testimonial-dot:focus-visible,
.testimonial-dot.is-active {
  border-color: var(--line-strong);
  color: var(--green-dark);
  background: var(--green);
  transform: translateY(-1px);
  outline: none;
}

.testimonial-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.testimonial-dot {
  width: 34px;
  height: 10px;
  padding: 0;
  border-radius: var(--radius-pill);
}

.testimonial-dot.is-active {
  width: 48px;
}

.blog {
  position: relative;
}

.blog::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  left: -180px;
  top: 180px;
  z-index: -1;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.18), transparent 70%);
  filter: blur(10px);
}

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

.blog-card {
  position: relative;
  min-height: 314px;
  display: flex;
  flex-direction: column;
  padding: clamp(22px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 88% 8%, rgba(var(--green-rgb), 0.18), transparent 12rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.78), rgba(1, 18, 21, 0.92));
  overflow: hidden;
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.blog-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(var(--white-rgb), 0.58);
  font-size: 0.72rem;
}

.blog-category {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: var(--radius-pill);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.08);
  font-weight: 600;
}

.blog-card time {
  white-space: nowrap;
}

.blog-media {
  position: relative;
  z-index: 1;
  margin: 0 0 22px;
  aspect-ratio: 16 / 8;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(var(--white-rgb), 0.08);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}

.blog-media::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 48%, rgba(1, 18, 21, 0.68)),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.16), transparent 42%);
  mix-blend-mode: screen;
  opacity: 0.52;
}

.blog-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.06);
  transition: transform 360ms ease, filter 360ms ease;
}

.blog-card:hover .blog-media img,
.blog-card:focus-within .blog-media img {
  transform: scale(1.035);
  filter: saturate(1.05) contrast(1.08);
}

.blog-card h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.12;
  font-weight: 650;
}

.blog-card p {
  margin-bottom: 28px;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.86rem;
  line-height: 1.58;
}

.blog-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--green-rgb), 0.12);
  color: rgba(var(--white-rgb), 0.58);
  font-size: 0.76rem;
}

.blog-card-mark {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  font-weight: 700;
  box-shadow: 0 0 18px rgba(var(--green-rgb), 0.24);
}

.blog-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(26px, 4vw, 38px);
}

.blog-actions .button {
  min-width: 168px;
}

.fit-check {
  position: relative;
  padding-top: clamp(92px, 12vw, 136px);
}

.fit-check::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 38%;
  z-index: -1;
  width: min(760px, 84vw);
  height: 300px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.13), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.fit-check-grid {
  width: min(940px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 14px;
}

.fit-check-card {
  position: relative;
  min-height: 286px;
  padding: clamp(22px, 3.5vw, 30px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 0, rgba(var(--green-rgb), 0.18), transparent 13rem),
    linear-gradient(135deg, rgba(var(--green-dark-rgb), 0.78), rgba(1, 18, 21, 0.94));
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
}

.fit-check-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.fit-check-card-negative {
  border-color: rgba(var(--white-rgb), 0.14);
  background:
    radial-gradient(circle at 88% 0, rgba(var(--white-rgb), 0.08), transparent 12rem),
    linear-gradient(135deg, rgba(5, 35, 40, 0.72), rgba(1, 18, 21, 0.94));
}

.fit-check-card h3,
.fit-check-card ul {
  position: relative;
  z-index: 1;
}

.fit-check-card h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  line-height: 1.12;
  font-weight: 650;
}

.fit-check-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-check-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.88rem;
  line-height: 1.52;
}

.fit-check-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px rgba(var(--green-rgb), 0.32);
}

.fit-check-card-negative li::before {
  background: rgba(var(--white-rgb), 0.46);
  box-shadow: none;
}

.faq {
  width: min(var(--narrow), calc(100% - 40px));
  padding-top: clamp(88px, 11vw, 128px);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid rgba(var(--green-rgb), 0.14);
  border-radius: 14px;
  background:
    linear-gradient(90deg, rgba(var(--green-dark-rgb), 0.82), rgba(4, 38, 43, 0.92)),
    rgba(3, 31, 35, 0.88);
  overflow: hidden;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px 0 22px;
  border: 0;
  color: var(--white);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 0.98rem;
  font-weight: 550;
}

.faq-icon {
  position: relative;
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  border: 1px solid rgba(var(--green-rgb), 0.34);
  border-radius: 50%;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 10px;
  height: 1.5px;
  border-radius: var(--radius-pill);
  background: var(--green);
}

.faq-icon::after {
  transform: rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon::after {
  transform: rotate(0deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: grid-template-rows 220ms ease;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-answer p {
  min-height: 0;
  overflow: hidden;
  margin: 0;
  padding: 0 22px;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.82rem;
  line-height: 1.58;
  transition: padding-bottom 220ms ease;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 20px;
}

.contact {
  position: relative;
  padding-top: clamp(96px, 12vw, 140px);
}

.contact::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 22%;
  z-index: -1;
  width: min(940px, 92vw);
  height: 520px;
  background: radial-gradient(circle, rgba(var(--green-rgb), 0.16), transparent 70%);
  filter: blur(10px);
  transform: translateX(-50%);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  grid-template-areas:
    "main map"
    "legal legal";
  gap: 18px;
  align-items: stretch;
}

.contact-main,
.contact-map-card,
.legal-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(var(--green-rgb), 0.18), transparent 14rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.78), rgba(1, 18, 21, 0.94));
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
}

.contact-main::after,
.contact-map-card::after,
.legal-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}

.contact-main {
  grid-area: main;
  padding: clamp(26px, 4vw, 40px);
}

.contact-main > *,
.legal-card > * {
  position: relative;
  z-index: 1;
}

.contact-pill {
  margin: 0 0 20px;
}

.contact-main h2 {
  max-width: 660px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(1.85rem, 3.4vw, 3rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
}

.contact-copy {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.72);
  font-size: clamp(0.94rem, 1.25vw, 1.04rem);
  line-height: 1.64;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.contact-method-list {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 13px 14px;
  border: 1px solid rgba(var(--green-rgb), 0.13);
  border-radius: 16px;
  background: rgba(var(--green-dark-rgb), 0.38);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-method:hover,
.contact-method:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(var(--green-rgb), 0.08);
  box-shadow: 0 0 24px rgba(var(--green-rgb), 0.1);
}

.contact-method-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 50%;
  color: var(--green);
  background: rgba(var(--green-rgb), 0.08);
  box-shadow: inset 0 0 18px rgba(var(--green-rgb), 0.07);
}

.contact-method-icon svg,
.contact-socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-method-label {
  display: block;
  margin-bottom: 4px;
  color: rgba(var(--white-rgb), 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-method-value {
  display: block;
  color: var(--white);
  font-size: clamp(0.9rem, 1.22vw, 1.02rem);
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(var(--green-rgb), 0.12);
}

.contact-socials a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: var(--radius-pill);
  color: var(--green);
  background: rgba(var(--green-rgb), 0.07);
  font-size: 0.78rem;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.contact-socials a:hover,
.contact-socials a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: rgba(var(--green-rgb), 0.12);
  box-shadow: 0 0 20px rgba(var(--green-rgb), 0.13);
}

.contact-next-steps {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid rgba(var(--green-rgb), 0.13);
  border-radius: 16px;
  background: rgba(var(--green-rgb), 0.06);
}

.contact-next-steps h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.22;
  font-weight: 650;
}

.contact-next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.contact-next-steps li {
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.84rem;
  line-height: 1.52;
  padding-left: 4px;
}

.contact-map-card {
  grid-area: map;
  min-height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 18px;
  background: rgba(var(--green-dark-rgb), 0.42);
}

.contact-map-card iframe {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.86) contrast(0.96);
  opacity: 0.88;
}

.contact-map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 42%, rgba(1, 7, 8, 0.82)),
    radial-gradient(circle at 84% 18%, rgba(var(--green-rgb), 0.18), transparent 14rem);
}

.contact-map-card::after {
  z-index: 1;
  opacity: 0.72;
}

.contact-map-info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 18px;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: 16px;
  background: rgba(1, 18, 21, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.32);
}

.contact-map-info > span,
.legal-copy > span {
  display: block;
  margin-bottom: 7px;
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-map-info strong {
  display: block;
  max-width: 330px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(1.06rem, 1.55vw, 1.24rem);
  line-height: 1.22;
}

.contact-map-info a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-size: 0.82rem;
  font-weight: 700;
  transition: color 180ms ease, transform 180ms ease;
}

.contact-map-info a span {
  display: inline-grid;
  place-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  font-size: 0.72rem;
  font-weight: 700;
}

.contact-map-info a:hover,
.contact-map-info a:focus-visible {
  color: var(--green-soft);
  transform: translateX(2px);
}

.legal-card {
  grid-area: legal;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(0, 1.45fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: start;
  padding: clamp(24px, 4vw, 36px);
}

.legal-copy h3 {
  margin-bottom: 10px;
  color: var(--white);
  font-size: clamp(1.42rem, 2.4vw, 2rem);
  line-height: 1.1;
  font-weight: 650;
}

.legal-copy p {
  max-width: 300px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.88rem;
  line-height: 1.58;
}

.legal-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(var(--green-rgb), 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(var(--green-rgb), 0.12);
}

.legal-list div {
  min-height: 62px;
  padding: 14px 16px;
  background: rgba(var(--green-dark-rgb), 0.42);
}

.legal-list dt {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.legal-list dd {
  margin: 0;
  color: rgba(var(--white-rgb), 0.88);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.38;
  overflow-wrap: anywhere;
}

.site-footer {
  width: min(var(--container), calc(100% - 40px));
  margin: 44px auto 0;
  padding-bottom: 42px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-template-areas:
    "brand links socials"
    "copy links world";
  align-items: center;
  gap: 24px;
  color: rgba(var(--white-rgb), 0.64);
  font-size: 0.76rem;
}

.footer-brand {
  grid-area: brand;
  color: var(--green);
}

.footer-links {
  grid-area: links;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 30px);
}

.social-links {
  grid-area: socials;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-links a {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: 50%;
  color: var(--green);
  background: rgba(var(--green-dark-rgb), 0.64);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 0 20px rgba(var(--green-rgb), 0.18);
}

.social-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.copyright {
  grid-area: copy;
  margin: 0;
}

.worldwide {
  grid-area: world;
  justify-self: end;
  margin: 0;
}

.mobile-contact-bar {
  display: none;
}

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 4px;
}

.nav-menu a[aria-current="page"],
.footer-links a[aria-current="page"] {
  color: var(--green);
}

.page-hero {
  position: relative;
  padding-top: clamp(92px, 11vw, 136px);
  text-align: center;
}

.page-hero h1 {
  max-width: 980px;
  font-size: 3.55rem;
  overflow-wrap: anywhere;
}

.page-hero .hero-copy {
  max-width: 780px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  text-align: left;
}

.page-hero-panel,
.detail-card,
.scope-card,
.outcome-grid article,
.quote-card,
.featured-card,
.mini-card,
.page-cta,
.article-toc,
.checklist-card,
.author-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 6%, rgba(var(--green-rgb), 0.18), transparent 13rem),
    linear-gradient(180deg, rgba(var(--green-dark-rgb), 0.76), rgba(1, 18, 21, 0.94));
  box-shadow: inset 0 0 34px rgba(var(--green-rgb), 0.035);
  overflow: hidden;
}

.page-hero-panel::after,
.detail-card::after,
.scope-card::after,
.outcome-grid article::after,
.quote-card::after,
.featured-card::after,
.mini-card::after,
.page-cta::after,
.article-toc::after,
.checklist-card::after,
.author-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(var(--green-rgb), 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, #000, transparent 82%);
}

.page-hero-panel > *,
.detail-card > *,
.scope-card > *,
.outcome-grid article > *,
.quote-card > *,
.featured-card > *,
.mini-card > *,
.page-cta > *,
.article-toc > *,
.checklist-card > *,
.author-card > * {
  position: relative;
  z-index: 1;
}

.project-summary {
  padding: clamp(22px, 3vw, 30px);
}

.summary-list {
  display: grid;
  gap: 1px;
  margin: 0;
  border: 1px solid rgba(var(--green-rgb), 0.12);
  border-radius: 16px;
  overflow: hidden;
  background: rgba(var(--green-rgb), 0.12);
}

.summary-list div {
  padding: 15px 16px;
  background: rgba(var(--green-dark-rgb), 0.44);
}

.summary-list dt {
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.summary-list dd {
  margin: 0;
  color: rgba(var(--white-rgb), 0.88);
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.42;
}

.showcase-frame {
  position: relative;
  margin: clamp(36px, 5vw, 58px) 0 0;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(var(--white-rgb), 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34), var(--shadow-green);
}

.showcase-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 55%, rgba(1, 18, 21, 0.72)),
    linear-gradient(90deg, rgba(var(--green-rgb), 0.16), transparent 44%);
  opacity: 0.58;
}

.showcase-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.05);
}

.metric-strip,
.metric-mini-grid {
  display: grid;
  gap: 1px;
  border: 1px solid rgba(var(--green-rgb), 0.12);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(var(--green-rgb), 0.12);
}

.metric-strip {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.metric-strip article,
.metric-mini-grid span {
  display: grid;
  gap: 8px;
  padding: 20px;
  background: rgba(var(--green-dark-rgb), 0.46);
}

.metric-strip strong,
.metric-mini-grid strong {
  color: var(--white);
  font-size: 1.58rem;
  line-height: 1;
}

.metric-strip span,
.metric-mini-grid span {
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.82rem;
  line-height: 1.46;
}

.content-section {
  position: relative;
  padding-top: clamp(82px, 10vw, 126px);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
}

.split-section-top {
  align-items: start;
}

.section-heading-left {
  text-align: left;
  margin-bottom: 0;
}

.section-heading-left h2 {
  margin-bottom: 0;
}

.copy-stack {
  display: grid;
  gap: 16px;
}

.copy-stack p,
.article-content p {
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.98rem;
  line-height: 1.72;
}

.detail-card-grid,
.scope-grid,
.outcome-grid,
.related-grid {
  display: grid;
  gap: 18px;
}

.detail-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(28px, 5vw, 46px);
}

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

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

.detail-card,
.scope-card,
.outcome-grid article {
  min-height: 230px;
  padding: clamp(22px, 3vw, 28px);
}

.detail-card span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.detail-card h3,
.scope-card h3,
.outcome-grid h3,
.mini-card h3,
.article-content h2,
.author-card h2 {
  color: var(--white);
  line-height: 1.14;
  font-weight: 650;
}

.detail-card h3,
.scope-card h3,
.outcome-grid h3,
.mini-card h3 {
  margin-bottom: 10px;
  font-size: 1.22rem;
}

.detail-card p,
.scope-card li,
.outcome-grid p {
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.88rem;
  line-height: 1.58;
}

.scope-card ul,
.checklist-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.scope-card li,
.checklist-card li {
  position: relative;
  padding-left: 24px;
}

.scope-card li::before,
.checklist-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 14px rgba(var(--green-rgb), 0.3);
}

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

.timeline-list li {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(var(--green-rgb), 0.13);
  border-radius: 18px;
  background: rgba(var(--green-dark-rgb), 0.42);
}

.timeline-list > li > span {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(var(--green-rgb), 0.28);
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--green);
  font-weight: 700;
}

.timeline-list h3 {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 1.06rem;
}

.timeline-list p {
  margin: 0;
  color: rgba(var(--white-rgb), 0.7);
  font-size: 0.88rem;
  line-height: 1.58;
}

.quote-card {
  margin: clamp(28px, 5vw, 44px) auto 0;
  max-width: 820px;
  padding: clamp(24px, 4vw, 36px);
}

.quote-card p,
.pull-quote p {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 1.36rem;
  line-height: 1.36;
}

.quote-card footer,
.author-card span,
.mini-card span {
  color: rgba(var(--white-rgb), 0.54);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.quote-card strong {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
}

.quote-card footer span {
  display: block;
  color: rgba(var(--white-rgb), 0.58);
}

.mini-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.75fr) minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 18px;
}

.mini-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 14px;
  object-fit: cover;
}

.mini-card h3 {
  margin-top: 8px;
}

.page-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: clamp(84px, 10vw, 128px);
  padding: clamp(26px, 4vw, 40px);
}

.page-cta h2 {
  max-width: 700px;
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1.08;
}

.page-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.96rem;
  line-height: 1.64;
}

.listing-hero {
  padding-bottom: 8px;
}

.filter-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.filter-chips a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(var(--green-rgb), 0.18);
  border-radius: var(--radius-pill);
  color: rgba(var(--white-rgb), 0.72);
  background: rgba(var(--green-rgb), 0.06);
  font-size: 0.8rem;
  font-weight: 700;
  transition: color 180ms ease, background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-chips a:hover,
.filter-chips a:focus-visible,
.filter-chips a[aria-current="page"] {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.featured-card {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(0, 0.95fr);
  gap: clamp(24px, 4vw, 46px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
}

.featured-card figure {
  margin: 0;
  aspect-ratio: 16 / 8;
  border-radius: 16px;
  overflow: hidden;
}

.featured-card figure a {
  display: block;
  width: 100%;
  height: 100%;
}

.featured-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-card h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2rem;
  line-height: 1.1;
}

.featured-card p {
  margin-bottom: 18px;
  color: rgba(var(--white-rgb), 0.72);
  font-size: 0.94rem;
  line-height: 1.64;
}

.featured-card .tag-list {
  margin-bottom: 24px;
}

.metric-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 24px;
}

.project-listing {
  width: min(980px, 100%);
}

.blog-card-footer .project-link {
  margin-top: 0;
  font-size: 0.76rem;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(30px, 5vw, 48px);
  color: rgba(var(--white-rgb), 0.68);
}

.pagination ol {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: var(--radius-pill);
  background: rgba(var(--green-rgb), 0.06);
  font-size: 0.8rem;
  font-weight: 700;
}

.pagination a {
  color: var(--green);
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}

.pagination a:hover,
.pagination a:focus-visible,
.pagination a.is-current {
  color: var(--green-dark);
  border-color: var(--green);
  background: var(--green);
  transform: translateY(-1px);
}

.pagination .is-disabled {
  color: rgba(var(--white-rgb), 0.34);
}

.pagination .page-number {
  color: rgba(var(--white-rgb), 0.62);
  background: transparent;
}

.article-hero {
  width: min(980px, calc(100% - 40px));
}

.article-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.article-meta span {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(var(--green-rgb), 0.16);
  border-radius: var(--radius-pill);
  color: rgba(var(--white-rgb), 0.68);
  background: rgba(var(--green-rgb), 0.06);
  font-size: 0.76rem;
  font-weight: 700;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(210px, 0.32fr) minmax(0, 0.68fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: start;
  padding-top: clamp(54px, 7vw, 82px);
}

.article-layout-single {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.article-layout-single .article-content {
  width: min(var(--narrow), 100%);
  max-width: none;
  justify-self: center;
}

.article-sidebar {
  position: sticky;
  top: 120px;
}

.article-toc {
  padding: 20px;
}

.article-toc h2 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 1rem;
}

.article-toc a {
  display: block;
  padding: 10px 0;
  border-top: 1px solid rgba(var(--green-rgb), 0.1);
  color: rgba(var(--white-rgb), 0.68);
  font-size: 0.82rem;
  font-weight: 600;
}

.article-toc a:hover,
.article-toc a:focus-visible {
  color: var(--green);
}

.article-content {
  max-width: 760px;
}

.article-lead {
  color: var(--white) !important;
  font-size: 1.22rem !important;
  line-height: 1.62 !important;
}

.article-content section + section {
  margin-top: clamp(34px, 5vw, 54px);
}

.article-content > :where(h2, h3, h4, h5, h6):not(:first-child) {
  margin-top: clamp(34px, 5vw, 54px);
}

.article-content h2 {
  margin-bottom: 14px;
  font-size: 1.72rem;
}

.article-content h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 1.38rem;
}

.article-content h4,
.article-content h5,
.article-content h6 {
  margin-bottom: 10px;
  color: var(--white);
}

.article-content p + p {
  margin-top: 16px;
}

.pull-quote {
  margin: 28px 0;
  padding: 24px;
  border-left: 3px solid var(--green);
  border-radius: 0 18px 18px 0;
  background: rgba(var(--green-rgb), 0.07);
}

.pull-quote p {
  margin: 0;
}

.checklist-card,
.author-card {
  padding: clamp(22px, 3vw, 30px);
}

.checklist-card h2 {
  margin-bottom: 18px;
}

.checklist-card li {
  color: rgba(var(--white-rgb), 0.76);
  font-size: 0.92rem;
  line-height: 1.58;
}

.author-card {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.author-card img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  object-fit: cover;
}

.author-card h2 {
  margin: 6px 0 8px;
  font-size: 1.24rem;
}

.related-post-grid {
  width: min(760px, 100%);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-inline: auto;
}

@media (max-width: 980px) {
  .site-header {
    top: 16px;
  }

  .nav-bar {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 16px;
    right: 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(3, 31, 35, 0.94);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.48), var(--shadow-green);
    backdrop-filter: blur(16px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .nav-bar.is-open .nav-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-menu a {
    min-height: 46px;
    display: flex;
    align-items: center;
    padding-inline: 14px;
    border-radius: 12px;
    font-size: 0.95rem;
  }

  .nav-menu a:hover,
  .nav-menu a:focus-visible {
    background: rgba(var(--green-rgb), 0.08);
  }

  .nav-menu a::after {
    content: none;
  }

  .nav-cta {
    display: none;
  }

  .page-hero {
    width: min(720px, calc(100% - 40px));
  }

  .page-hero h1 {
    font-size: 2.8rem;
  }

  .page-hero-grid,
  .split-section,
  .featured-card,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-grid {
    text-align: center;
  }

  .section-heading-left {
    text-align: center;
  }

  .detail-card-grid,
  .scope-grid,
  .outcome-grid,
  .related-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    margin-inline: auto;
  }

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

  .article-sidebar {
    position: static;
  }

  .article-toc {
    display: none;
  }

  .related-post-grid {
    grid-template-columns: 1fr;
  }

  .website-audit {
    width: min(720px, calc(100% - 40px));
  }

  .client-logos {
    width: min(720px, calc(100% - 40px));
  }

  .client-logos-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .client-logos h2 {
    max-width: 620px;
    text-align: left;
  }

  .website-audit-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .website-audit-copy h2,
  .website-audit-copy p,
  .website-audit-detail p {
    max-width: none;
  }

  .website-audit-detail {
    padding-top: 26px;
    padding-left: 0;
    border-top: 1px solid rgba(var(--green-rgb), 0.16);
    border-left: 0;
  }

  .about {
    grid-template-columns: 1fr;
    width: min(620px, calc(100% - 40px));
  }

  .about-copy,
  .about-actions {
    justify-content: center;
    text-align: center;
  }

  .about-copy h2,
  .about-copy p {
    margin-inline: auto;
  }

  .service-grid {
    grid-template-columns: 1fr;
    width: min(520px, 100%);
    margin-inline: auto;
  }

  .work-mode-grid,
  .blog-grid,
  .fit-check-grid {
    grid-template-columns: 1fr;
    width: min(560px, 100%);
    margin-inline: auto;
  }

  .testimonial-slider {
    width: min(640px, 100%);
    margin-inline: auto;
  }

  .testimonial-slide {
    flex-basis: 100%;
  }

  .success-flow {
    width: min(560px, 100%);
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    column-gap: 18px;
    margin-inline: auto;
  }

  .success-line {
    display: block;
    grid-column: 1;
    grid-row: 1;
    align-self: stretch;
    width: 28px;
    height: auto;
    margin: 0;
  }

  .success-line::before {
    left: 13px;
    right: auto;
    top: 0;
    bottom: 0;
    width: 2px;
    height: auto;
    background: linear-gradient(
      180deg,
      rgba(var(--green-rgb), 0.16),
      var(--green),
      rgba(var(--green-rgb), 0.16)
    );
  }

  .success-line::after {
    content: none;
  }

  .success-line span {
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .success-line span:nth-child(1) {
    top: 10%;
  }

  .success-line span:nth-child(2) {
    top: 36.5%;
  }

  .success-line span:nth-child(3) {
    top: 63.5%;
  }

  .success-line span:nth-child(4) {
    top: 90%;
  }

  .success-step-grid {
    grid-column: 2;
    grid-row: 1;
    grid-template-columns: 1fr;
    width: 100%;
    margin: 0;
  }

  .work-mode-card,
  .success-step {
    min-height: auto;
  }

  .included-panel {
    grid-template-columns: 1fr;
    width: min(620px, 100%);
    margin-inline: auto;
  }

  .included-intro {
    min-height: 320px;
  }

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

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

  .project-preview {
    order: -1;
  }

  .project-copy,
  .project-copy p,
  .project-copy h3 {
    max-width: none;
  }

  .tag-list {
    grid-template-columns: repeat(3, max-content);
    margin-bottom: 28px;
  }

  .contact-layout {
    width: min(680px, 100%);
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "map"
      "legal";
    margin-inline: auto;
  }

  .contact-map-card {
    min-height: 420px;
  }

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

  .legal-copy p {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "links"
      "socials"
      "copy"
      "world";
    justify-items: center;
    text-align: center;
  }

  .social-links,
  .worldwide {
    justify-self: center;
  }
}

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

  body {
    padding-bottom: 86px;
  }

  .section-pad,
  .faq,
  .site-footer,
  .services-cta-inner {
    width: min(100% - 28px, var(--container));
  }

  .nav-bar {
    height: 54px;
    padding-left: 14px;
  }

  .brand {
    font-size: 0.95rem;
  }

  .hero {
    min-height: 690px;
    padding-top: 86px;
  }

  .pixel-cloud {
    opacity: 0.24;
    --cloud-scale: 0.72;
  }

  .pixel-cloud-left {
    left: -46px;
    top: 330px;
  }

  .pixel-cloud-right {
    right: -50px;
    top: 70px;
  }

  h1 {
    font-size: clamp(2.08rem, 11vw, 3.15rem);
    line-height: 1.06;
  }

  .hero-copy {
    font-size: 0.92rem;
  }

  .hero-proof {
    gap: 12px;
    margin-top: 22px;
  }

  .hero-client-logos li {
    width: 50px;
    height: 40px;
  }

  .hero-proof p {
    max-width: 300px;
    font-size: 0.86rem;
  }

  .stats {
    width: min(560px, 100%);
    margin-top: 124px;
  }

  .stats article {
    min-height: 92px;
    padding-inline: 10px;
  }

  .stats span {
    font-size: 0.68rem;
  }

  .client-logos {
    width: min(100% - 28px, var(--container));
    margin-top: clamp(16px, 6vw, 34px);
  }

  .client-logo-track {
    padding: 10px;
    animation-duration: 44s;
  }

  .client-logo-item {
    width: 126px;
    height: 66px;
    --client-logo-max-height: 40px;
    margin-right: 10px;
    padding: 12px 14px;
    border-radius: 12px;
  }

  .website-audit {
    width: min(100% - 28px, var(--container));
  }

  .website-audit-panel {
    border-radius: 18px;
  }

  .about {
    width: min(100% - 28px, var(--container));
    padding-top: clamp(76px, 15vw, 112px);
  }

  .about-experience {
    min-height: 340px;
    border-radius: 18px;
  }

  .services {
    margin-top: 8px;
  }

  .work-modes,
  .success-steps,
  .included,
  .testimonials,
  .fit-check,
  .content-section,
  .contact {
    padding-top: clamp(84px, 16vw, 118px);
  }

  .page-hero {
    width: min(100% - 28px, var(--container));
    padding-top: 92px;
  }

  .page-hero h1 {
    font-size: 2.32rem;
    line-height: 1.06;
  }

  .page-hero-panel,
  .detail-card,
  .scope-card,
  .outcome-grid article,
  .quote-card,
  .testimonial-card,
  .featured-card,
  .mini-card,
  .page-cta,
  .checklist-card,
  .author-card {
    border-radius: 18px;
  }

  .showcase-frame {
    border-radius: 18px;
  }

  .showcase-frame img {
    aspect-ratio: 16 / 10.5;
  }

  .metric-strip article,
  .metric-mini-grid span {
    padding: 16px;
  }

  .featured-card {
    padding: 16px;
  }

  .featured-card h2,
  .page-cta h2 {
    font-size: 1.76rem;
  }

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

  .page-cta .button {
    width: auto;
  }

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

  .pagination {
    justify-content: flex-start;
  }

  .pagination .page-number {
    order: 3;
    width: 100%;
  }

  .article-hero {
    width: min(100% - 28px, var(--container));
  }

  .article-layout {
    width: min(100% - 28px, var(--container));
  }

  .article-content {
    max-width: none;
  }

  .article-lead {
    font-size: 1.06rem !important;
  }

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

  .included-item-wide {
    grid-column: auto;
  }

  .included-intro,
  .included-item,
  .contact-main,
  .contact-map-card,
  .legal-card {
    border-radius: 18px;
  }

  .work-mode-card,
  .blog-card,
  .testimonial-card,
  .fit-check-card {
    min-height: 274px;
    border-radius: 18px;
  }

  .testimonial-track {
    gap: 14px;
  }

  .testimonial-controls {
    gap: 12px;
  }

  .testimonial-arrow {
    width: 44px;
    height: 44px;
  }

  .testimonial-dot {
    width: 28px;
  }

  .testimonial-dot.is-active {
    width: 42px;
  }

  .project-stack {
    gap: 14px;
  }

  .project-card {
    padding: 18px;
    border-radius: 18px;
  }

  .tag-list {
    grid-template-columns: repeat(2, max-content);
    gap: 10px 14px;
  }

  .faq-question {
    min-height: 60px;
    padding-inline: 16px;
    font-size: 0.92rem;
  }

  .faq-answer p {
    padding-inline: 16px;
  }

  .contact-map-card {
    min-height: 380px;
  }

  .contact-socials a {
    flex: 1 1 142px;
  }

  .legal-list {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .mobile-contact-bar {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid rgba(var(--green-rgb), 0.22);
    border-radius: 18px;
    background: rgba(3, 31, 35, 0.94);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.42), var(--shadow-green);
    backdrop-filter: blur(16px);
  }

  .mobile-contact-bar a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-pill);
    font-size: 0.86rem;
    font-weight: 700;
  }

  .mobile-contact-bar a:first-child {
    color: var(--green-dark);
    background: var(--green);
  }

  .mobile-contact-bar a:last-child {
    color: var(--green);
    border: 1px solid rgba(var(--green-rgb), 0.24);
    background: rgba(var(--green-rgb), 0.07);
  }
}

@media (max-width: 480px) {
  .site-header {
    top: 10px;
    padding-inline: 12px;
  }

  .nav-menu {
    left: 10px;
    right: 10px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-proof {
    width: min(100%, 360px);
    gap: 10px;
  }

  .hero-client-logos {
    padding-left: 8px;
  }

  .hero-client-logos li {
    width: 45px;
    height: 38px;
    padding: 7px 9px;
  }

  .hero-client-logos li + li {
    margin-left: -8px;
  }

  .hero-proof p {
    flex: 1 1 160px;
    min-width: 0;
    font-size: 0.8rem;
    line-height: 1.32;
  }

  .button {
    width: min(100%, 214px);
  }

  .contact-actions {
    flex-direction: column;
  }

  .contact-actions .button {
    width: 100%;
    max-width: none;
  }

  .website-audit-panel {
    padding: 22px;
  }

  .website-audit .button {
    width: 100%;
    min-height: 54px;
    padding-inline: 16px;
  }

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

  .stats article + article {
    border-left: 0;
    border-top: 1px solid rgba(var(--green-rgb), 0.1);
  }

  .client-logos-header {
    margin-bottom: 14px;
  }

  .client-logo-slider {
    border-radius: 16px;
  }

  .client-logo-slider::before,
  .client-logo-slider::after {
    width: 54px;
  }

  .client-logo-item {
    width: 116px;
    height: 62px;
  }

  .service-card {
    min-height: 0;
    padding: 20px 20px 76px;
  }

  .service-link {
    right: 20px;
    bottom: 20px;
  }

  .success-flow {
    grid-template-columns: 22px minmax(0, 1fr);
    column-gap: 12px;
  }

  .success-line {
    width: 22px;
  }

  .success-line::before {
    left: 10px;
  }

  .success-line span {
    width: 18px;
    height: 18px;
  }

  .work-mode-card {
    padding: 20px;
  }

  .work-mode-number {
    font-size: clamp(3.2rem, 18vw, 4.8rem);
  }

  .blog-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-media {
    margin-bottom: 18px;
    border-radius: 14px;
  }

  .about-actions .button {
    width: 100%;
    max-width: 320px;
    min-height: 52px;
    padding-inline: 18px;
    text-align: center;
  }

  .project-card {
    padding: 14px;
  }

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

  .hero-copy,
  .copy-stack p,
  .article-content p {
    font-size: 0.92rem;
  }

  .filter-chips {
    justify-content: flex-start;
  }

  .filter-chips a,
  .pagination a,
  .pagination span {
    min-height: 34px;
    padding-inline: 11px;
  }

  .metric-mini-grid {
    grid-template-columns: 1fr;
  }

  .detail-card,
  .scope-card,
  .outcome-grid article,
  .checklist-card,
  .author-card {
    padding: 20px;
  }

  .quote-card p,
  .pull-quote p {
    font-size: 1.1rem;
  }

  .timeline-list li {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .timeline-list > li > span {
    width: 38px;
    height: 38px;
  }

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

  .author-card img {
    width: 72px;
    height: 72px;
  }

  .project-copy {
    padding: 4px;
  }

  .tag-list {
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .tag-list span {
    min-width: 0;
  }

  .contact-main,
  .legal-card {
    padding: 20px;
  }

  .contact-method {
    align-items: flex-start;
    min-height: 0;
    padding: 12px;
  }

  .contact-method-icon {
    width: 38px;
    height: 38px;
  }

  .contact-socials a {
    flex-basis: 100%;
  }

  .contact-map-card {
    min-height: 340px;
    padding: 12px;
  }

  .contact-map-info {
    padding: 15px;
    border-radius: 14px;
  }
}

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

  .pixel-cloud {
    transform: scale(var(--cloud-scale));
  }

  .client-logo-track {
    width: 100%;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    animation: none;
    transform: none;
  }

  .client-logo-item {
    margin-right: 0;
  }

  .client-logo-item[aria-hidden="true"] {
    display: none;
  }
}
