:root {
  color-scheme: dark;
  --ink: #090d0d;
  --ink-soft: #101716;
  --ink-raised: #17201f;
  --petrol: #0d2426;
  --stone: #efefe7;
  --stone-soft: #f7f6f0;
  --mist: #dfe8e5;
  --paper: #fffef9;
  --text: #f5f7f2;
  --text-dark: #111815;
  --muted: #9aa7a2;
  --muted-dark: #5f6a66;
  --lime: #c8ff4f;
  --lime-deep: #a8e83d;
  --mint: #6ee4bd;
  --cyan: #6ccbd8;
  --blue: #6e7cf6;
  --amber: #ffb866;
  --line: rgba(246, 250, 247, 0.14);
  --line-dark: rgba(17, 24, 21, 0.14);
  --shadow-soft: 0 20px 50px rgba(8, 14, 12, 0.1);
  --shadow-deep: 0 32px 100px rgba(0, 0, 0, 0.3);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 38px;
  --container: 1200px;
  --font-sans: "Segoe UI Variable", "Avenir Next", "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  overflow-x: clip;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

h1,
h2,
h3,
p,
ul,
ol,
blockquote,
figure {
  margin-top: 0;
}

h1,
h2,
h3 {
  margin-bottom: 0;
  font-weight: 660;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
}

p {
  color: var(--muted);
}

::selection {
  background: var(--lime);
  color: var(--text-dark);
}

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}

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

section[id] {
  scroll-margin-top: 90px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 18px;
  z-index: 1000;
  padding: 11px 16px;
  transform: translateY(-160%);
  border-radius: 10px;
  background: var(--lime);
  color: var(--text-dark);
  font-size: 0.84rem;
  font-weight: 750;
  transition: transform 180ms ease;
}

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

/* Header */

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(9, 13, 13, 0.9);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(18px) saturate(140%);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 94px;
  gap: 30px;
  transition: min-height 220ms ease;
}

.site-header.is-scrolled .header-inner {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.brand-mark {
  position: relative;
  display: grid;
  width: 54px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px 14px 14px 4px;
  background: linear-gradient(145deg, #ddff82 0%, var(--lime) 55%, #afe83c 100%);
  box-shadow:
    0 13px 32px rgba(200, 255, 79, 0.2),
    inset 0 1px rgba(255, 255, 255, 0.42);
  color: var(--text-dark);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.brand:hover .brand-mark {
  transform: translateY(-2px);
  box-shadow:
    0 17px 38px rgba(200, 255, 79, 0.26),
    inset 0 1px rgba(255, 255, 255, 0.48);
}

.brand-mark > span {
  position: relative;
  z-index: 1;
  font-size: 1.16rem;
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 1;
}

.brand-mark i {
  position: absolute;
  right: -9px;
  bottom: -13px;
  width: 31px;
  height: 31px;
  transform: rotate(40deg);
  border: 1px solid rgba(17, 24, 21, 0.22);
  border-radius: 8px;
}

.brand-name {
  display: grid;
  line-height: 1;
}

.brand-name strong {
  font-size: 1.12rem;
  font-weight: 780;
  letter-spacing: -0.025em;
}

.brand-name small {
  margin-top: 6px;
  color: #9eaba6;
  font-size: 0.66rem;
  font-weight: 720;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.nav-links a {
  position: relative;
  padding: 11px 13px;
  color: #c0cac6;
  font-size: 0.89rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.nav-links a::after {
  position: absolute;
  right: 13px;
  bottom: 5px;
  left: 13px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  border-radius: 999px;
  background: var(--lime);
  content: "";
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
}

.nav-links a.is-active::after {
  transform: scaleX(1);
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 17px;
  gap: 9px;
  border: 1px solid rgba(200, 255, 79, 0.34);
  border-radius: 999px;
  background: rgba(200, 255, 79, 0.09);
  color: var(--lime);
  font-size: 0.86rem;
  font-weight: 760;
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.header-action svg {
  width: 18px;
  height: 18px;
}

.header-action:hover {
  transform: translateY(-2px);
  background: rgba(200, 255, 79, 0.16);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.menu-toggle span {
  position: absolute;
  left: 12px;
  width: 18px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--text);
  transition:
    top 180ms ease,
    transform 180ms ease;
}

.menu-toggle span:first-child {
  top: 16px;
}

.menu-toggle span:last-child {
  top: 25px;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  top: 21px;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  top: 21px;
  transform: rotate(-45deg);
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: max(760px, 100svh);
  isolation: isolate;
  overflow: hidden;
  background: #0a1010;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  animation: hero-settle 1.4s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.hero-overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 9, 9, 0.96) 0%, rgba(5, 9, 9, 0.78) 38%, rgba(5, 9, 9, 0.24) 68%, rgba(5, 9, 9, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 9, 9, 0.54) 0%, transparent 32%, rgba(5, 9, 9, 0.2) 70%, rgba(5, 9, 9, 0.92) 100%);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  width: 58%;
  background:
    radial-gradient(circle at 15% 42%, rgba(110, 228, 189, 0.1), transparent 26rem),
    linear-gradient(90deg, rgba(9, 13, 13, 0.25), transparent);
  content: "";
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  align-items: end;
  min-height: max(650px, calc(100svh - 108px));
  padding: 150px 0 190px;
  gap: 64px;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  gap: 9px;
  border: 1px solid rgba(110, 228, 189, 0.26);
  border-radius: 999px;
  background: rgba(7, 17, 15, 0.48);
  color: #c1d5cd;
  font-size: 0.73rem;
  font-weight: 760;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.hero-eyebrow span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(110, 228, 189, 0.1);
}

.hero h1 {
  max-width: 670px;
  margin-top: 28px;
  font-size: clamp(3.6rem, 6vw, 5.25rem);
  letter-spacing: -0.062em;
  line-height: 0.98;
}

.hero h1 em {
  display: block;
  margin-top: 7px;
  color: var(--lime);
  font-style: normal;
}

.hero-copy > p {
  max-width: 590px;
  margin: 27px 0 0;
  color: #c1cbc7;
  font-size: clamp(1rem, 1.35vw, 1.13rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 34px;
  gap: 11px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 0.88rem;
  font-weight: 770;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--lime);
  box-shadow: 0 16px 36px rgba(168, 232, 61, 0.18);
  color: var(--text-dark);
}

.button-primary:hover {
  background: #d4ff70;
  box-shadow: 0 20px 42px rgba(168, 232, 61, 0.26);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(5, 10, 9, 0.42);
  color: var(--text);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(8, 14, 13, 0.72);
}

.hero-status {
  align-self: end;
  margin-bottom: 10px;
  padding: 23px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px 20px 20px 6px;
  background: rgba(9, 14, 13, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px) saturate(125%);
}

.status-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a9bbb4;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.status-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(200, 255, 79, 0.1);
}

.hero-status > strong {
  display: block;
  margin-top: 19px;
  font-size: 1.32rem;
  letter-spacing: -0.035em;
}

.hero-status > p {
  margin: 8px 0 18px;
  color: #a9b6b1;
  font-size: 0.88rem;
  line-height: 1.55;
}

.hero-status > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  color: var(--lime);
  font-size: 0.85rem;
  font-weight: 760;
}

.hero-status > a span {
  transition: transform 180ms ease;
}

.hero-status > a:hover span {
  transform: translate(2px, -2px);
}

.hero-proof {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 0.72fr 0.86fr 0.72fr 1.35fr;
  min-height: 116px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(7, 11, 11, 0.54);
  backdrop-filter: blur(12px);
}

.hero-proof > div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-proof strong {
  color: var(--text);
  font-size: 1.13rem;
  font-weight: 710;
  letter-spacing: -0.03em;
}

.hero-proof span {
  margin-top: 5px;
  color: #87958f;
  font-size: 0.7rem;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof .proof-note {
  flex-direction: row;
  align-items: center;
  gap: 13px;
  border-right: 0;
  color: #c6d0cc;
  font-size: 0.82rem;
  font-weight: 650;
  line-height: 1.4;
}

.proof-note svg {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  color: var(--lime);
}

/* Shared section language */

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  gap: 10px;
  color: #3a7566;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--mint);
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(300px, 0.78fr);
  align-items: end;
  gap: 80px;
}

.section-intro h2,
.work-copy h2,
.reviews-heading h2,
.faq-copy h2,
.contact-copy h2 {
  font-size: clamp(2.55rem, 4.7vw, 4.25rem);
  line-height: 1.02;
}

.section-intro > p {
  margin: 0 0 5px;
  color: var(--muted-dark);
  font-size: 1rem;
  line-height: 1.72;
}

/* Intent-led services */

.intent-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 92% 8%, rgba(108, 203, 216, 0.14), transparent 25rem),
    var(--stone);
  color: var(--text-dark);
}

.intent-section::after {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(17, 24, 21, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 45px rgba(17, 24, 21, 0.025),
    0 0 0 90px rgba(17, 24, 21, 0.018);
  content: "";
  pointer-events: none;
}

.intent-intro {
  position: relative;
  z-index: 1;
  margin-bottom: 62px;
}

.intent-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.intent-card {
  position: relative;
  display: flex;
  min-height: 470px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(26px, 3vw, 36px);
  border-radius: var(--radius-lg);
  transition:
    transform 230ms ease,
    box-shadow 230ms ease;
}

.intent-card::after {
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 170px;
  height: 170px;
  transform: rotate(25deg);
  border: 1px solid currentColor;
  border-radius: 48px;
  content: "";
  opacity: 0.08;
  pointer-events: none;
}

.intent-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-soft);
}

.intent-card-dark {
  background:
    radial-gradient(circle at 100% 0, rgba(110, 124, 246, 0.18), transparent 18rem),
    var(--ink-soft);
  color: var(--text);
}

.intent-card-lime {
  background:
    radial-gradient(circle at 100% 0, rgba(255, 255, 255, 0.5), transparent 16rem),
    linear-gradient(145deg, var(--lime), #85e7a4);
  color: var(--text-dark);
}

.intent-card-light {
  border: 1px solid rgba(17, 24, 21, 0.1);
  background:
    radial-gradient(circle at 100% 0, rgba(255, 184, 102, 0.16), transparent 17rem),
    var(--paper);
  color: var(--text-dark);
}

.intent-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.intent-index {
  color: currentColor;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  opacity: 0.5;
}

.intent-icon {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.07);
  color: inherit;
  opacity: 0.92;
}

.intent-card-lime .intent-icon,
.intent-card-light .intent-icon {
  background: rgba(17, 24, 21, 0.05);
}

.intent-icon svg {
  width: 27px;
  height: 27px;
}

.intent-card > div:nth-child(2) {
  position: relative;
  z-index: 1;
}

.intent-label {
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.intent-card-lime .intent-label,
.intent-card-light .intent-label {
  color: #2f6a59;
}

.intent-card h3 {
  max-width: 320px;
  font-size: clamp(1.7rem, 2.55vw, 2.25rem);
  line-height: 1.07;
}

.intent-card p {
  margin: 17px 0 0;
  color: #9daaa5;
  font-size: 0.9rem;
  line-height: 1.7;
}

.intent-card-lime p,
.intent-card-light p {
  color: rgba(17, 24, 21, 0.66);
}

.intent-card > a {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid currentColor;
  font-size: 0.86rem;
  font-weight: 770;
  opacity: 0.92;
}

.intent-card > a::after {
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--lime);
  content: "";
}

.intent-card-lime > a::after,
.intent-card-light > a::after {
  background: var(--text-dark);
}

.intent-card > a span {
  font-size: 1rem;
  transition: transform 180ms ease;
}

.intent-card > a:hover span {
  transform: translate(3px, -3px);
}

.capability-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 30px 0 0;
  padding: 0;
  gap: 8px;
  list-style: none;
}

.capability-list li {
  padding: 9px 14px;
  border: 1px solid rgba(17, 24, 21, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.3);
  color: #505b57;
  font-size: 0.79rem;
  font-weight: 650;
}

/* Technical proof */

.work-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 0 70%, rgba(110, 124, 246, 0.11), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(110, 228, 189, 0.08), transparent 26rem),
    var(--ink);
}

.work-section::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, black, transparent 72%);
  content: "";
  pointer-events: none;
}

.work-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(70px, 9vw, 125px);
}

.work-copy > p {
  max-width: 520px;
  margin: 25px 0 0;
  color: #9eaaa5;
  font-size: 1rem;
  line-height: 1.75;
}

.work-points {
  margin: 38px 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.work-points li {
  display: grid;
  grid-template-columns: 42px 1fr;
  padding: 20px 0;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.work-points li > span {
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.work-points strong {
  font-size: 0.94rem;
}

.work-points p {
  margin: 4px 0 0;
  color: #7f8c87;
  font-size: 0.84rem;
}

.work-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: repeat(12, 42px);
  min-width: 0;
}

.work-photo {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: var(--ink-raised);
  box-shadow: var(--shadow-deep);
}

.work-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.work-photo:hover img {
  transform: scale(1.035);
}

.work-photo-main {
  grid-column: 1 / 11;
  grid-row: 1 / 10;
  border-radius: 28px 28px 28px 7px;
}

.work-photo-main img {
  filter: saturate(0.9) contrast(1.04);
}

.work-photo-main::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(4, 8, 8, 0.88));
  content: "";
  pointer-events: none;
}

.work-photo figcaption {
  position: absolute;
  z-index: 1;
}

.work-photo-main figcaption {
  right: 26px;
  bottom: 24px;
  left: 26px;
  display: grid;
  color: #dce3df;
  font-size: 0.86rem;
  font-weight: 650;
}

.work-photo-main figcaption span {
  margin-bottom: 3px;
  color: var(--lime);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-photo-detail {
  z-index: 2;
  grid-column: 8 / 13;
  grid-row: 7 / 13;
  border-radius: 22px 22px 7px 22px;
}

.work-photo-detail figcaption {
  right: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 11, 11, 0.74);
  color: #cbd4d0;
  font-size: 0.69rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.work-metric {
  z-index: 3;
  grid-column: 1 / 7;
  grid-row: 10 / 13;
  align-self: end;
  padding: 20px 22px;
  border: 1px solid rgba(200, 255, 79, 0.22);
  border-radius: 18px 18px 18px 5px;
  background: linear-gradient(135deg, #19231e, #121918);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.work-metric > span {
  color: var(--mint);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-metric strong {
  display: block;
  margin-top: 5px;
  font-size: 1.12rem;
}

.work-metric p {
  margin: 4px 0 0;
  color: #889590;
  font-size: 0.74rem;
}

/* Process */

.process-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 145px) 0;
  background:
    radial-gradient(circle at 100% 100%, rgba(108, 203, 216, 0.2), transparent 25rem),
    var(--mist);
  color: var(--text-dark);
}

.process-section::after {
  position: absolute;
  top: 0;
  right: 6%;
  width: 220px;
  height: 100%;
  transform: skewX(-15deg);
  border-right: 1px solid rgba(17, 24, 21, 0.05);
  border-left: 1px solid rgba(17, 24, 21, 0.05);
  content: "";
  pointer-events: none;
}

.process-intro {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr auto;
}

.inline-action {
  display: inline-flex;
  align-items: center;
  align-self: end;
  padding-bottom: 7px;
  gap: 12px;
  border-bottom: 1px solid rgba(17, 24, 21, 0.25);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 770;
}

.inline-action span {
  transition: transform 180ms ease;
}

.inline-action:hover span {
  transform: translate(3px, -3px);
}

.process-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 68px 0 0;
  padding: 0;
  gap: 16px;
  list-style: none;
}

.process-track::before {
  position: absolute;
  top: 63px;
  right: 13%;
  left: 13%;
  height: 1px;
  background: rgba(17, 24, 21, 0.18);
  content: "";
}

.process-track li {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 325px;
  padding: 26px;
  border: 1px solid rgba(17, 24, 21, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 18px 42px rgba(17, 24, 21, 0.06);
  backdrop-filter: blur(8px);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.process-track li:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 55px rgba(17, 24, 21, 0.12);
}

.process-track .process-step-contact {
  border-color: rgba(180, 121, 54, 0.2);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), transparent 56%),
    repeating-linear-gradient(0deg, rgba(133, 92, 42, 0.035) 0 1px, transparent 1px 18px),
    #f6e9d8;
}

.process-track .process-step-diagnosis {
  border-color: rgba(53, 109, 94, 0.18);
  background:
    radial-gradient(circle at 86% 16%, rgba(79, 184, 153, 0.22), transparent 9rem),
    radial-gradient(circle at 1px 1px, rgba(53, 109, 94, 0.07) 1px, transparent 1.2px) 0 0 / 18px 18px,
    #e6f0ea;
}

.process-track .process-step-resolution {
  border-color: rgba(200, 255, 79, 0.18);
  background:
    radial-gradient(circle at 100% 0, rgba(108, 203, 216, 0.15), transparent 16rem),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 20px),
    #14211e;
  box-shadow: 0 22px 50px rgba(17, 24, 21, 0.18);
  color: #f2f6f3;
}

.process-number {
  color: #6c7773;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.process-icon {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  margin-top: 24px;
  place-items: center;
  border: 1px solid rgba(17, 24, 21, 0.14);
  border-radius: 17px;
  background: var(--stone-soft);
  color: #356d5e;
  box-shadow: 0 9px 22px rgba(17, 24, 21, 0.08);
}

.process-icon svg {
  width: 27px;
  height: 27px;
}

.process-step-contact .process-icon {
  border-color: rgba(167, 106, 35, 0.2);
  background: rgba(255, 250, 242, 0.86);
  color: #9b6429;
}

.process-step-diagnosis .process-icon {
  border-color: rgba(53, 109, 94, 0.2);
  background: rgba(241, 248, 244, 0.86);
  color: #356d5e;
}

.process-step-resolution .process-number {
  color: var(--lime);
}

.process-step-resolution .process-icon {
  border-color: rgba(200, 255, 79, 0.22);
  background: rgba(200, 255, 79, 0.08);
  color: var(--lime);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.process-track h3 {
  margin-top: 32px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  letter-spacing: -0.035em;
}

.process-track p {
  margin: 13px 0 0;
  color: #68736f;
  font-size: 0.92rem;
  line-height: 1.65;
}

.process-step-resolution p {
  color: #9fafa8;
}

/* High-conversion band */

.response-band {
  padding: 28px 0;
  background: var(--mist);
  color: var(--text-dark);
}

.response-shell {
  position: relative;
  display: grid;
  grid-template-columns: 90px minmax(280px, 1fr) auto;
  align-items: center;
  overflow: hidden;
  padding: 34px;
  gap: 25px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 10%, rgba(255, 255, 255, 0.5), transparent 18rem),
    var(--lime);
}

.response-shell::after {
  position: absolute;
  top: -60px;
  right: 25%;
  width: 150px;
  height: 150px;
  transform: rotate(32deg);
  border: 1px solid rgba(17, 24, 21, 0.12);
  border-radius: 42px;
  content: "";
  pointer-events: none;
}

.response-mark {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 72px;
  height: 72px;
  padding: 18px;
  gap: 5px;
  border: 1px solid rgba(17, 24, 21, 0.15);
  border-radius: 20px;
  background: rgba(17, 24, 21, 0.07);
}

.response-mark span {
  width: 6px;
  border-radius: 999px;
  background: var(--text-dark);
}

.response-mark span:nth-child(1) {
  height: 16px;
}

.response-mark span:nth-child(2) {
  height: 32px;
}

.response-mark span:nth-child(3) {
  height: 23px;
}

.response-shell > div:nth-child(2) {
  position: relative;
  z-index: 1;
}

.response-shell > div:nth-child(2) > span {
  color: #39604c;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.response-shell h2 {
  margin-top: 5px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.response-shell p {
  margin: 7px 0 0;
  color: rgba(17, 24, 21, 0.68);
  font-size: 0.92rem;
}

.response-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 9px;
}

.button-outline-dark {
  border-color: rgba(17, 24, 21, 0.24);
  color: var(--text-dark);
}

.button-outline-dark:hover {
  background: rgba(17, 24, 21, 0.07);
}

.button-dark {
  background: var(--text-dark);
  color: var(--text);
  box-shadow: 0 14px 28px rgba(17, 24, 21, 0.18);
}

.button-dark:hover {
  background: #202923;
}

/* Reviews */

.reviews-section {
  padding: clamp(100px, 11vw, 150px) 0;
  background:
    radial-gradient(circle at 8% 5%, rgba(255, 184, 102, 0.16), transparent 24rem),
    #f5f0e7;
  color: var(--text-dark);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.75fr);
  align-items: end;
  margin-bottom: 58px;
  gap: 80px;
}

.reviews-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -48px;
}

.rating-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  justify-self: end;
  min-width: 275px;
  padding: 18px 20px;
  column-gap: 15px;
  border: 1px solid rgba(17, 24, 21, 0.1);
  border-radius: 19px;
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 14px 36px rgba(17, 24, 21, 0.07);
  color: var(--text-dark);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.rating-summary:hover {
  transform: translateY(-3px);
  border-color: rgba(53, 109, 94, 0.25);
  box-shadow: 0 19px 42px rgba(17, 24, 21, 0.11);
}

.rating-score {
  align-self: center;
  color: #22372f;
  font-size: 2.45rem;
  font-weight: 820;
  letter-spacing: -0.07em;
  line-height: 1;
}

.rating-details {
  display: grid;
  gap: 2px;
}

.rating-stars,
.review-stars {
  color: #df9d38;
  font-size: 0.83rem;
  letter-spacing: 0.13em;
}

.rating-details strong {
  font-size: 0.83rem;
}

.rating-details small {
  color: #6f7b76;
  font-size: 0.72rem;
}

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

.review-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3vw, 38px);
  border: 1px solid rgba(17, 24, 21, 0.11);
  border-radius: var(--radius-lg);
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(17, 24, 21, 0.05);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(17, 24, 21, 0.1);
}

.review-card-featured {
  border-color: transparent;
  background:
    radial-gradient(circle at 100% 0, rgba(110, 124, 246, 0.2), transparent 22rem),
    var(--ink-soft);
  color: var(--text);
}

.review-card-warm {
  background:
    radial-gradient(circle at 100% 100%, rgba(255, 184, 102, 0.18), transparent 16rem),
    #fbf7ef;
}

.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #7a8581;
  font-size: 0.69rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.review-card-featured .review-card-top {
  color: #91a19a;
}

.review-card blockquote {
  margin: 32px 0;
  color: #303936;
  font-size: clamp(1.18rem, 1.65vw, 1.48rem);
  font-weight: 520;
  letter-spacing: -0.028em;
  line-height: 1.5;
}

.review-card-featured blockquote {
  color: #e4eae6;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 13px;
  background: #e2eee8;
  color: #356c59;
  font-weight: 780;
}

.review-card-featured .review-avatar {
  border: 1px solid rgba(110, 228, 189, 0.25);
  background: rgba(110, 228, 189, 0.09);
  color: var(--mint);
}

.review-card footer div {
  display: grid;
}

.review-card cite {
  font-size: 0.91rem;
  font-style: normal;
  font-weight: 760;
}

.review-card footer div span {
  color: #7a8581;
  font-size: 0.75rem;
}

.review-card-featured footer div span {
  color: #8d9c96;
}

/* FAQ */

.faq-section {
  position: relative;
  overflow: hidden;
  padding: clamp(100px, 11vw, 145px) 0;
  background:
    radial-gradient(circle at 0 100%, rgba(108, 203, 216, 0.08), transparent 26rem),
    var(--petrol);
}

.faq-section::after {
  position: absolute;
  top: 18%;
  left: -100px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  box-shadow: 0 0 0 48px rgba(255, 255, 255, 0.018);
  content: "";
  pointer-events: none;
}

.faq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  align-items: start;
  gap: clamp(70px, 10vw, 140px);
}

.faq-copy {
  position: sticky;
  top: 115px;
}

.faq-copy > p {
  max-width: 460px;
  margin: 22px 0 0;
  color: #95a59f;
}

.inline-action-light {
  margin-top: 28px;
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--lime);
}

.accordion {
  border-top: 1px solid var(--line);
}

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: center;
  min-height: 94px;
  gap: 20px;
  color: #e9eeeb;
  font-size: clamp(1.05rem, 1.6vw, 1.28rem);
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.accordion summary > span {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  transition:
    transform 220ms ease,
    background-color 220ms ease;
}

.accordion summary > span::before,
.accordion summary > span::after {
  position: absolute;
  width: 11px;
  height: 1.5px;
  border-radius: 2px;
  background: var(--mint);
  content: "";
}

.accordion summary > span::after {
  transform: rotate(90deg);
  transition: transform 220ms ease;
}

.accordion details[open] summary > span {
  transform: rotate(180deg);
  background: rgba(110, 228, 189, 0.08);
}

.accordion details[open] summary > span::after {
  transform: rotate(0);
}

.accordion details > p {
  max-width: 620px;
  margin: -2px 54px 28px 0;
  color: #8fa09a;
  font-size: 0.96rem;
  line-height: 1.75;
}

/* Contact */

.contact-section {
  position: relative;
  padding: clamp(90px, 10vw, 130px) 0;
  background:
    radial-gradient(circle at 100% 30%, rgba(110, 124, 246, 0.11), transparent 28rem),
    var(--stone);
  color: var(--text-dark);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(450px, 1.12fr);
  overflow: hidden;
  padding: clamp(22px, 3.5vw, 42px);
  gap: clamp(50px, 8vw, 105px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 0 0, rgba(110, 228, 189, 0.12), transparent 26rem),
    var(--ink-soft);
  box-shadow: var(--shadow-deep);
  color: var(--text);
}

.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 3vw, 28px);
}

.contact-copy .eyebrow {
  color: var(--mint);
}

.contact-copy > p {
  max-width: 490px;
  margin: 23px 0 0;
  color: #9aa8a2;
  font-size: 0.96rem;
}

.contact-options {
  display: grid;
  margin-top: 34px;
  gap: 9px;
}

.contact-options a {
  display: flex;
  align-items: center;
  max-width: 430px;
  padding: 11px;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.contact-options a:hover {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
}

.contact-option-icon {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(110, 228, 189, 0.2);
  border-radius: 13px;
  background: rgba(110, 228, 189, 0.07);
  color: var(--mint);
}

.contact-option-icon svg {
  width: 21px;
  height: 21px;
}

.contact-option-instagram {
  border-color: rgba(229, 129, 157, 0.28);
  background:
    linear-gradient(145deg, rgba(110, 124, 246, 0.18), rgba(255, 184, 102, 0.1));
  color: #f0a8bd;
}

.contact-options a > span:last-child {
  display: grid;
  min-width: 0;
}

.contact-options small {
  color: #80908a;
  font-size: 0.73rem;
}

.contact-options strong {
  overflow-wrap: anywhere;
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-form {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 25px;
  background: var(--stone-soft);
  color: var(--text-dark);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
}

.form-heading {
  display: grid;
  margin-bottom: 27px;
}

.form-heading span {
  color: #527868;
  font-size: 0.71rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.form-heading strong {
  margin-top: 5px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.form-field {
  display: grid;
  margin-bottom: 15px;
  gap: 7px;
}

.form-field label {
  color: #47514e;
  font-size: 0.79rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(17, 24, 21, 0.16);
  border-radius: 11px;
  outline: 0;
  background: var(--paper);
  color: var(--text-dark);
  font-size: 0.88rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.form-field input,
.form-field select {
  height: 50px;
  padding: 0 13px;
}

.form-field textarea {
  min-height: 110px;
  padding: 12px 13px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #929b97;
  opacity: 1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: #5e8874;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(82, 120, 104, 0.1);
}

.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #66706c 50%),
    linear-gradient(135deg, #66706c 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 13px) 22px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
}

.button-submit {
  width: 100%;
  border: 0;
  background: var(--text-dark);
  box-shadow: 0 14px 28px rgba(17, 24, 21, 0.15);
  color: var(--text);
}

.button-submit:hover {
  background: #253029;
}

.form-note {
  margin: 12px 0 0;
  color: #78817d;
  font-size: 0.74rem;
  text-align: center;
}

/* Footer and persistent actions */

.site-footer {
  padding: 50px 0 24px;
  background: #070a0a;
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-bottom: 34px;
  gap: 46px;
}

.brand-footer .brand-mark {
  width: 48px;
  height: 44px;
}

.footer-main > p {
  max-width: 520px;
  margin: 0 auto;
  color: #77847f;
  font-size: 0.83rem;
  text-align: center;
}

.footer-actions {
  display: flex;
  gap: 8px;
}

.footer-actions a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #c5cfcb;
  font-size: 0.79rem;
  font-weight: 680;
  transition:
    border-color 180ms ease,
    color 180ms ease;
}

.footer-actions a:hover {
  border-color: rgba(200, 255, 79, 0.3);
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: #5f6b67;
  font-size: 0.74rem;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  min-height: 50px;
  padding: 0 17px;
  gap: 9px;
  border: 1px solid rgba(200, 255, 79, 0.3);
  border-radius: 999px;
  background: rgba(10, 16, 14, 0.88);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.34);
  color: var(--lime);
  font-size: 0.82rem;
  font-weight: 750;
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    background-color 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px);
  background: #142019;
}

.whatsapp-float svg {
  width: 20px;
  height: 20px;
}

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

/* Progressive motion */

@keyframes hero-settle {
  from {
    transform: scale(1.035);
    filter: brightness(0.78);
  }

  to {
    transform: scale(1);
    filter: brightness(1);
  }
}

.reveal-ready {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 650ms cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.reveal-ready.reveal-delay-1 {
  transition-delay: 90ms;
}

.reveal-ready.reveal-delay-2 {
  transition-delay: 180ms;
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */

@media (max-width: 1100px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 38px;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 6.7vw, 4.7rem);
  }

  .hero-proof > div {
    padding-inline: 18px;
  }

  .intent-card {
    min-height: 450px;
    padding: 28px;
  }

  .work-layout {
    grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
    gap: 58px;
  }

  .response-shell {
    grid-template-columns: 72px 1fr;
  }

  .response-actions {
    grid-column: 2;
  }

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

  .review-card-featured {
    grid-column: 1 / -1;
    min-height: 290px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 78px;
  }

  section[id] {
    scroll-margin-top: 76px;
  }

  .container {
    width: min(var(--container), calc(100% - 36px));
  }

  .header-inner {
    position: relative;
    grid-template-columns: 1fr auto;
    min-height: 76px;
  }

  .site-header.is-scrolled .header-inner {
    min-height: 68px;
  }

  .menu-toggle {
    display: block;
    grid-column: 2;
    grid-row: 1;
  }

  .header-action {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: grid;
    max-height: 0;
    overflow: hidden;
    padding: 0 12px;
    gap: 2px;
    border: 1px solid transparent;
    border-radius: 0 0 18px 18px;
    background: rgba(9, 13, 13, 0.98);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 240ms ease,
      padding 240ms ease,
      opacity 180ms ease,
      visibility 180ms ease;
  }

  .nav-links.is-open {
    max-height: 350px;
    padding-block: 12px;
    border-color: var(--line);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    padding: 15px;
    border-radius: 11px;
    font-size: 0.94rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links a:hover,
  .nav-links a.is-active {
    background: rgba(255, 255, 255, 0.05);
  }

  .hero {
    min-height: 900px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 9, 9, 0.95), rgba(5, 9, 9, 0.62) 60%, rgba(5, 9, 9, 0.28)),
      linear-gradient(180deg, rgba(5, 9, 9, 0.5), transparent 30%, rgba(5, 9, 9, 0.38) 64%, rgba(5, 9, 9, 0.96));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    align-content: end;
    min-height: 780px;
    padding-top: 130px;
    padding-bottom: 215px;
    gap: 30px;
  }

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

  .hero-status {
    max-width: 360px;
    margin: 0;
  }

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

  .hero-proof .proof-note {
    display: none;
  }

  .section-intro {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-intro > p {
    max-width: 650px;
  }

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

  .intent-card:first-child {
    grid-column: 1 / -1;
    min-height: 390px;
  }

  .work-layout {
    grid-template-columns: 1fr;
  }

  .work-copy {
    max-width: 700px;
  }

  .work-gallery {
    width: min(100%, 710px);
    margin-inline: auto;
  }

  .process-intro {
    grid-template-columns: 1fr auto;
  }

  .process-track {
    gap: 10px;
  }

  .process-track li {
    padding: 22px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reviews-heading .eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .rating-summary {
    justify-self: start;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-copy {
    position: static;
    max-width: 680px;
  }

  .contact-shell {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact-copy {
    padding: 30px 25px;
  }

  .contact-form {
    padding: 32px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(67px + env(safe-area-inset-bottom));
  }

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

  .brand-mark {
    width: 48px;
    height: 44px;
  }

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

  .brand-name small {
    font-size: 0.62rem;
  }

  .hero {
    min-height: 930px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 9, 9, 0.88), rgba(5, 9, 9, 0.28)),
      linear-gradient(180deg, rgba(5, 9, 9, 0.72) 0%, rgba(5, 9, 9, 0.38) 35%, rgba(5, 9, 9, 0.7) 64%, rgba(5, 9, 9, 0.98) 88%);
  }

  .hero-inner {
    align-content: start;
    min-height: 820px;
    padding-top: 136px;
    padding-bottom: 185px;
    gap: 28px;
  }

  .hero-eyebrow {
    min-height: 31px;
    padding-inline: 11px;
    font-size: 0.67rem;
  }

  .hero h1 {
    margin-top: 22px;
    font-size: clamp(2.75rem, 12.8vw, 4rem);
    letter-spacing: -0.058em;
  }

  .hero-copy > p {
    margin-top: 21px;
    font-size: 0.94rem;
    line-height: 1.65;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin-top: 27px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-status {
    max-width: 100%;
    padding: 18px;
  }

  .hero-status > strong {
    margin-top: 14px;
    font-size: 1.15rem;
  }

  .hero-status > p {
    margin-bottom: 14px;
  }

  .hero-proof {
    grid-template-columns: 1fr 1fr 1fr;
    min-height: 104px;
  }

  .hero-proof > div {
    padding: 16px 10px;
  }

  .hero-proof strong {
    font-size: 0.91rem;
  }

  .hero-proof span {
    font-size: 0.61rem;
    line-height: 1.35;
  }

  .section-intro h2,
  .work-copy h2,
  .reviews-heading h2,
  .faq-copy h2,
  .contact-copy h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.2rem);
  }

  .intent-section,
  .work-section,
  .process-section,
  .reviews-section,
  .faq-section {
    padding-block: 84px;
  }

  .intent-intro {
    margin-bottom: 40px;
  }

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

  .intent-card,
  .intent-card:first-child {
    grid-column: auto;
    min-height: 390px;
  }

  .capability-list {
    justify-content: flex-start;
  }

  .work-layout {
    gap: 48px;
  }

  .work-gallery {
    grid-template-rows: repeat(12, 31px);
  }

  .work-photo-main {
    grid-column: 1 / 13;
    grid-row: 1 / 9;
  }

  .work-photo-detail {
    grid-column: 7 / 13;
    grid-row: 7 / 13;
  }

  .work-metric {
    grid-column: 1 / 8;
    grid-row: 9 / 13;
    padding: 17px;
  }

  .work-metric strong {
    font-size: 0.98rem;
  }

  .process-intro {
    grid-template-columns: 1fr;
  }

  .process-intro .inline-action {
    justify-self: start;
  }

  .process-track {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .process-track::before {
    display: none;
  }

  .process-track li {
    display: grid;
    grid-template-columns: 56px 1fr;
    min-height: 0;
    padding: 22px;
    column-gap: 16px;
  }

  .process-number {
    grid-column: 1;
  }

  .process-icon {
    grid-column: 1;
    grid-row: 2 / 4;
    margin-top: 14px;
  }

  .process-track h3 {
    grid-column: 2;
    grid-row: 2;
    align-self: end;
    margin-top: 14px;
  }

  .process-track p {
    grid-column: 2;
    grid-row: 3;
  }

  .response-band {
    padding-block: 16px;
  }

  .response-shell {
    grid-template-columns: 1fr;
    padding: 25px;
  }

  .response-mark {
    width: 55px;
    height: 55px;
    padding: 14px;
    border-radius: 16px;
  }

  .response-actions {
    grid-column: auto;
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    width: 100%;
  }

  .response-actions .button {
    min-height: 50px;
    padding-inline: 12px;
    font-size: 0.81rem;
  }

  .reviews-heading {
    margin-bottom: 40px;
  }

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

  .review-card {
    min-height: 285px;
    padding: 28px;
  }

  .review-card-featured {
    grid-column: auto;
  }

  .faq-layout {
    gap: 34px;
  }

  .accordion summary {
    min-height: 88px;
    gap: 14px;
    font-size: 1rem;
  }

  .accordion details > p {
    margin-right: 0;
  }

  .contact-section {
    padding-block: 68px;
  }

  .contact-shell {
    width: calc(100% + 8px);
    margin-left: -4px;
    padding: 12px;
    border-radius: 28px;
  }

  .contact-copy {
    padding: 27px 15px;
  }

  .contact-options {
    margin-top: 26px;
  }

  .contact-form {
    padding: 22px;
    border-radius: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 18px;
  }

  .footer-main > p {
    margin: 0;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 5px;
  }

  .whatsapp-float {
    display: none;
  }

  .mobile-contact-bar {
    position: fixed;
    right: 10px;
    bottom: calc(8px + env(safe-area-inset-bottom));
    left: 10px;
    z-index: 120;
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    min-height: 59px;
    padding: 5px;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 17px;
    background: rgba(8, 13, 12, 0.92);
    box-shadow: 0 18px 54px rgba(0, 0, 0, 0.42);
    backdrop-filter: blur(18px) saturate(145%);
  }

  .mobile-contact-bar a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 0;
    gap: 8px;
    border-radius: 12px;
    color: #dce4e0;
    font-weight: 750;
    font-size: 0.83rem;
  }

  .mobile-contact-bar a:first-child {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.04);
  }

  .mobile-contact-bar .mobile-whatsapp {
    background: var(--lime);
    color: var(--text-dark);
  }

  .mobile-contact-bar svg {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
  }
}

@media (max-width: 390px) {
  .container {
    width: calc(100% - 22px);
  }

  .brand-name small {
    display: none;
  }

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

  .hero-proof strong {
    font-size: 0.8rem;
  }

  .hero-proof span {
    letter-spacing: 0.04em;
  }

  .response-actions {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-image,
  .reveal-ready {
    transform: none;
    opacity: 1;
  }
}
