:root {
  --navy-950: #06151d;
  --navy-900: #071a24;
  --navy-800: #0b2734;
  --navy-700: #113747;
  --steel-900: #17242c;
  --steel-700: #44545e;
  --steel-500: #5f6d75;
  --paper: #f3f6f6;
  --paper-deep: #e9efef;
  --white: #fff;
  --cyan: #23bed0;
  --cyan-light: #a9edf2;
  --cyan-text: #0d6f7a;
  --amber: #f3b83f;
  --amber-light: #ffd36d;
  --green: #25d366;
  --line: #d8e1e3;
  --field-line: #7f9097;
  --line-dark: rgba(255, 255, 255, 0.13);
  --font-display: "Rajdhani", "Arial Narrow", sans-serif;
  --font-body: "Source Sans 3", "Segoe UI", sans-serif;
  --shadow-sm: 0 12px 32px rgba(6, 21, 29, 0.08);
  --shadow-md: 0 24px 64px rgba(6, 21, 29, 0.14);
  --container: 1200px;
  --header-height: 108px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 16px;
}

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

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

body {
  margin: 0;
  color: var(--steel-900);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

::selection {
  color: var(--navy-950);
  background: var(--amber-light);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
}

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

button,
summary,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--navy-950);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.65rem, 5.2vw, 5rem);
  text-transform: uppercase;
}

h3 {
  margin-bottom: 0;
  font-size: 1.55rem;
  line-height: 1.08;
}

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

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

.section {
  position: relative;
  padding: clamp(5.5rem, 9vw, 8.5rem) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.75rem 1rem;
  color: var(--navy-950);
  background: var(--amber);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

.scroll-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  transform-origin: left center;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  color: var(--cyan-text);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  flex: 0 0 auto;
  background: currentColor;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  padding: 0.85rem 1.35rem;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.button svg,
.nav-cta svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  transition: transform 0.2s ease;
}

.button:hover,
.button:focus-visible,
.nav-cta:hover,
.nav-cta:focus-visible {
  transform: translateY(-2px);
}

.button:hover svg,
.nav-cta:hover svg {
  transform: translateX(3px);
}

.button--primary {
  color: var(--navy-950);
  background: var(--amber);
  box-shadow: 0 14px 34px rgba(243, 184, 63, 0.22);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--amber-light);
  box-shadow: 0 18px 42px rgba(243, 184, 63, 0.3);
}

.button--ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--navy-950);
  background: var(--white);
}

.button--dark {
  color: var(--white);
  background: var(--navy-900);
  border: 0;
}

.button--dark:hover,
.button--dark:focus-visible {
  background: var(--navy-700);
  box-shadow: var(--shadow-sm);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  color: var(--white);
  background: var(--navy-950);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
}

.utility-bar {
  max-height: 34px;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.68);
  background: #040f15;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 0.76rem;
  transition: max-height 0.25s ease, opacity 0.2s ease;
}

.site-header.is-scrolled .utility-bar {
  max-height: 0;
  opacity: 0;
}

.utility-bar__inner {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.utility-bar p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  letter-spacing: 0.035em;
}

.status-dot {
  position: relative;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 5px rgba(35, 190, 208, 0.12);
}

.utility-links {
  display: flex;
  align-items: center;
  gap: 1.3rem;
}

.utility-links a {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.utility-links a:hover,
.utility-links a:focus-visible {
  color: var(--cyan-light);
}

.nav-shell {
  position: relative;
  background: rgba(7, 26, 36, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.nav-shell__inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.brand {
  width: 225px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-self: stretch;
  align-items: center;
  gap: 0.15rem;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  display: flex;
  height: 100%;
  align-items: center;
  padding: 0 0.78rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.79rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0.78rem;
  bottom: 0;
  left: 0.78rem;
  height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active {
  color: var(--white);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  color: var(--navy-950);
  background: var(--amber);
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--amber-light);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: var(--radius-sm);
  color: var(--white);
  background: transparent;
}

.menu-toggle > span:not(.sr-only) {
  position: absolute;
  left: 12px;
  width: 20px;
  height: 2px;
  background: currentColor;
  transition: transform 0.2s ease, top 0.2s ease;
}

.menu-toggle > span:nth-child(2) {
  top: 18px;
}

.menu-toggle > span:nth-child(3) {
  top: 26px;
}

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

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

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  min-height: calc(100svh - var(--header-height));
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.hero__media,
.hero__overlay,
.hero__grid-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__media {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 21, 29, 0.98) 0%, rgba(6, 21, 29, 0.92) 42%, rgba(6, 21, 29, 0.5) 72%, rgba(6, 21, 29, 0.25) 100%),
    linear-gradient(0deg, rgba(6, 21, 29, 0.92) 0%, transparent 42%, rgba(6, 21, 29, 0.18) 100%);
}

.hero__grid-lines {
  z-index: -1;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 74px 74px;
  mask-image: linear-gradient(90deg, #000, transparent 78%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 335px;
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
  padding: clamp(5rem, 10vh, 7.5rem) 0;
}

.hero__copy {
  max-width: 790px;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 1.55rem;
  color: var(--white);
  font-size: clamp(4rem, 7.2vw, 7.25rem);
  letter-spacing: -0.055em;
  line-height: 0.85;
  text-transform: uppercase;
}

.hero h1 em {
  display: block;
  color: var(--amber);
  font-style: normal;
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 1.8rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero__location {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 1.5rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
}

.hero__location svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--cyan-light);
  stroke-width: 1.5;
}

.hero-console {
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(7, 26, 36, 0.68);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.hero-console__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-console__head strong {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--cyan-light);
  font-size: inherit;
}

.hero-console__head i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(35, 190, 208, 0.12);
}

.hero-console__body {
  padding: 1.3rem 1.3rem 0.2rem;
}

.hero-console__body > p {
  margin-bottom: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
}

.hero-console dl {
  margin-bottom: 0;
}

.hero-console dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--line-dark);
}

.hero-console dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-console dd {
  margin-bottom: 0;
  color: var(--white);
  font-size: 0.9rem;
}

.hero-console dd strong {
  color: var(--amber-light);
  font-family: var(--font-display);
  font-size: 1.22rem;
}

.hero-console > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.3rem;
  color: var(--navy-950);
  background: var(--cyan);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
  text-transform: uppercase;
}

.hero-console > a:hover,
.hero-console > a:focus-visible {
  background: var(--cyan-light);
}

.capability-rail {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 0;
  background: rgba(6, 21, 29, 0.84);
  backdrop-filter: blur(18px);
  margin-bottom: 0;
  padding: 0;
  list-style: none;
}

.capability-rail li {
  min-height: 105px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-content: center;
  align-items: start;
  gap: 0.8rem;
  padding: 1.15rem 1.2rem;
  border-right: 1px solid var(--line-dark);
}

.capability-rail li:last-child {
  border-right: 0;
}

.capability-rail span {
  color: var(--cyan-light);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
}

.capability-rail strong {
  max-width: 15ch;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.08;
  text-transform: uppercase;
}

.impact-strip {
  color: var(--white);
  background: var(--navy-800);
  border-top: 4px solid var(--amber);
}

.impact-strip__inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.impact-strip p {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  text-transform: uppercase;
}

.impact-strip p strong {
  color: var(--cyan-light);
}

.impact-strip a {
  flex: 0 0 auto;
  color: var(--amber-light);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  text-decoration: none;
  text-transform: uppercase;
}

.impact-strip a:hover,
.impact-strip a:focus-visible {
  color: var(--white);
}

/* About */
.about {
  background:
    linear-gradient(rgba(7, 26, 36, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 26, 36, 0.032) 1px, transparent 1px),
    var(--paper);
  background-size: 52px 52px;
}

.heading-split,
.section-heading,
.work-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, 0.82fr);
  align-items: end;
  gap: clamp(3rem, 7vw, 7.5rem);
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.heading-split h2 {
  max-width: 820px;
}

.heading-split__copy {
  padding-left: 1.5rem;
  border-left: 3px solid var(--cyan);
}

.heading-split__copy p,
.section-heading > p {
  color: var(--steel-700);
  font-size: 1.06rem;
}

.heading-split__copy p:last-child,
.section-heading > p:last-child {
  margin-bottom: 0;
}

.about-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: stretch;
}

.about-media {
  position: relative;
  min-height: 650px;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.about-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 29, 0.9), transparent 48%);
  pointer-events: none;
}

.about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  transition: transform 0.7s ease;
}

.about-media:hover img {
  transform: scale(1.025);
}

.about-media figcaption {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  color: var(--white);
}

.about-media figcaption span {
  color: var(--cyan-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-media figcaption strong {
  max-width: 17ch;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  line-height: 1;
  text-align: right;
  text-transform: uppercase;
}

.about-details {
  display: flex;
  flex-direction: column;
}

.since-card {
  position: relative;
  padding: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
}

.since-card::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -75px;
  width: 170px;
  height: 170px;
  border: 28px solid rgba(35, 190, 208, 0.12);
  border-radius: 50%;
}

.since-card > span {
  display: block;
  margin-bottom: 0.65rem;
  color: var(--cyan-light);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.since-card > strong {
  display: block;
  color: var(--amber-light);
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.8rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.since-card p {
  position: relative;
  z-index: 1;
  max-width: 45ch;
  margin: 1rem 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.about-details article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1.3rem;
  padding: 1.8rem 0;
  border-bottom: 1px solid var(--line);
}

.detail-number {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cyan-text);
  font-family: var(--font-display);
  font-weight: 700;
}

.about-details article h3 {
  margin: 0.1rem 0 0.5rem;
  text-transform: uppercase;
}

.about-details article p {
  margin-bottom: 0;
  color: var(--steel-700);
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: auto;
  padding-top: 1.8rem;
}

.sector-list span {
  padding: 0.55rem 0.75rem;
  color: var(--navy-800);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* Services */
.services {
  isolation: isolate;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.services__pattern {
  position: absolute;
  z-index: -1;
  inset: 0 0 auto auto;
  width: min(48vw, 760px);
  aspect-ratio: 1;
  opacity: 0.5;
  background:
    radial-gradient(circle at center, transparent 0 24%, rgba(35, 190, 208, 0.08) 24.5% 25%, transparent 25.5% 42%, rgba(35, 190, 208, 0.08) 42.5% 43%, transparent 43.5%),
    repeating-conic-gradient(from 0deg, rgba(255, 255, 255, 0.03) 0 5deg, transparent 5deg 15deg);
  transform: translate(22%, -28%);
}

.section-heading--light h2 {
  color: var(--white);
}

.section-heading--light > p {
  color: rgba(255, 255, 255, 0.64);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
}

.service-card {
  position: relative;
  min-height: 310px;
  grid-column: span 3;
  padding: 1.65rem;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.service-card:nth-child(2) {
  grid-column: span 4;
}

.service-card:not(.service-card--featured)::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 90px;
  height: 90px;
  border: 18px solid rgba(35, 190, 208, 0.08);
  border-radius: 50%;
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.service-card:not(.service-card--featured):hover {
  z-index: 2;
  background: var(--navy-700);
  transform: translateY(-4px);
}

.service-card:not(.service-card--featured):hover::after {
  border-color: rgba(243, 184, 63, 0.18);
  transform: scale(1.15);
}

.service-card--featured {
  min-height: 400px;
  grid-column: span 8;
  display: grid;
  grid-template-columns: minmax(230px, 0.9fr) minmax(0, 1.1fr);
  padding: 0;
  background: var(--white);
}

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

.service-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.2rem);
  color: var(--steel-900);
}

.service-card__number {
  display: block;
  color: var(--cyan-light);
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
}

.service-card--featured .service-card__number {
  color: var(--cyan-text);
}

.service-card__tag {
  margin: 1.8rem 0 0.7rem;
  color: var(--cyan-text);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 15ch;
  margin-top: 1.2rem;
  color: var(--white);
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  text-transform: uppercase;
}

.service-card--featured h3 {
  max-width: 12ch;
  margin-top: 0;
  color: var(--navy-950);
  font-size: clamp(2.25rem, 4vw, 3.6rem);
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0.8rem 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.96rem;
}

.service-card--featured .service-card__content > p:not(.service-card__tag) {
  color: var(--steel-700);
}

.service-card__content > a {
  margin-top: 1.4rem;
  color: var(--navy-800);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.service-card__content > a:hover,
.service-card__content > a:focus-visible {
  color: var(--cyan-text);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-top: 2.3rem;
  fill: none;
  stroke: var(--amber-light);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

/* Process */
.process {
  background: var(--white);
}

.process::before {
  content: "08";
  position: absolute;
  top: 4.5rem;
  right: 4vw;
  color: rgba(7, 26, 36, 0.035);
  font-family: var(--font-display);
  font-size: clamp(12rem, 26vw, 28rem);
  font-weight: 700;
  line-height: 0.75;
  pointer-events: none;
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}

.process-visual {
  position: sticky;
  top: 112px;
  height: min(710px, calc(100vh - 150px));
  min-height: 560px;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-md);
}

.process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 29, 0.92), transparent 40%);
}

.process-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-visual__label {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
  z-index: 1;
  padding-left: 1.1rem;
  border-left: 3px solid var(--amber);
}

.process-visual__label span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--cyan-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.process-visual__label strong {
  display: block;
  max-width: 18ch;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
}

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

.process-accordion details {
  border-bottom: 1px solid var(--line);
  background: transparent;
  transition: background-color 0.2s ease;
}

.process-accordion details[open] {
  background: var(--paper);
}

.process-accordion summary {
  min-height: 74px;
  display: grid;
  grid-template-columns: 50px 1fr 34px;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1rem;
  list-style: none;
}

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

.process-accordion summary > span {
  color: var(--cyan-text);
  font-family: var(--font-display);
  font-weight: 700;
}

.process-accordion summary strong {
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.24rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.process-accordion summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.process-accordion summary i::before,
.process-accordion summary i::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--navy-800);
  transform: translate(-50%, -50%);
}

.process-accordion summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.2s ease;
}

.process-accordion details[open] summary i {
  color: var(--navy-950);
  background: var(--amber);
  border-color: var(--amber);
}

.process-accordion details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.process-accordion details p {
  max-width: 62ch;
  margin: -0.2rem 3.5rem 0;
  padding: 0 1.4rem 1.5rem 3.35rem;
  color: var(--steel-700);
}

/* Work */
.work {
  background: var(--paper-deep);
}

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

.work-heading h2 {
  max-width: 760px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--navy-800);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--cyan-text);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 285px;
  gap: 1rem;
}

.work-card {
  position: relative;
  grid-column: span 4;
  margin-bottom: 0;
  overflow: hidden;
  background: var(--navy-900);
  box-shadow: var(--shadow-sm);
}

.work-card--wide {
  grid-column: span 8;
}

.work-card--tall {
  grid-column: span 4;
  grid-row: span 2;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(6, 21, 29, 0.9), transparent 58%);
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.2, 0.75, 0.25, 1);
}

.work-card--wide img {
  object-position: center;
}

.work-card:hover img {
  transform: scale(1.055);
}

.work-card figcaption {
  position: absolute;
  right: 1.5rem;
  bottom: 1.35rem;
  left: 1.5rem;
  z-index: 1;
}

.work-card figcaption span {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--cyan-light);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.work-card figcaption strong {
  display: block;
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

/* Industries */
.industry-cta {
  position: relative;
  isolation: isolate;
  min-height: 590px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--navy-950);
  overflow: hidden;
}

.industry-cta__media {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("assets/images/hero-industrial.jpg") center 62% / cover no-repeat;
}

.industry-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 21, 29, 0.97), rgba(6, 21, 29, 0.77)),
    linear-gradient(135deg, transparent 0 64%, rgba(35, 190, 208, 0.26) 64% 69%, transparent 69%);
}

.industry-cta::after {
  content: "";
  position: absolute;
  right: 7vw;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 62px solid rgba(243, 184, 63, 0.13);
  border-radius: 50%;
}

.industry-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  align-items: center;
  gap: clamp(3rem, 8vw, 8rem);
  padding: 7rem 0;
}

.industry-cta h2 {
  max-width: 780px;
  color: var(--white);
}

.industry-cta__side {
  position: relative;
  z-index: 1;
}

.industry-cta__side ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
  margin: 0 0 1.7rem;
  padding: 0;
  list-style: none;
}

.industry-cta__side li {
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-left: 3px solid var(--cyan);
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

/* Contact */
.contact {
  background: var(--paper);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(310px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 110px;
}

.contact-copy h2 {
  max-width: 720px;
}

.contact-copy__lead {
  max-width: 52ch;
  margin: 1.4rem 0 2.2rem;
  color: var(--steel-700);
  font-size: 1.08rem;
}

.contact-person {
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-person > span,
.contact-copy address a span {
  display: block;
  color: var(--steel-500);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-person strong {
  display: block;
  margin-top: 0.35rem;
  color: var(--navy-950);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
  text-transform: uppercase;
}

.contact-person p {
  margin: 0.4rem 0 0;
  color: var(--steel-500);
  font-size: 0.9rem;
}

.contact-copy address {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin: 1.2rem 0;
  font-style: normal;
}

.contact-copy address a {
  min-width: 0;
  padding: 1rem;
  color: var(--navy-900);
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.contact-copy address a:hover,
.contact-copy address a:focus-visible {
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.contact-copy address a strong {
  display: block;
  margin-top: 0.3rem;
  overflow-wrap: anywhere;
  font-size: 0.9rem;
}

.whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: #0d4c29;
  font-weight: 700;
  text-decoration: none;
}

.whatsapp-direct svg {
  width: 24px;
  height: 24px;
  fill: var(--green);
}

.whatsapp-direct:hover,
.whatsapp-direct:focus-visible {
  color: #08733a;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  padding: clamp(1.5rem, 4vw, 3.3rem);
  background: var(--white);
  border-top: 6px solid var(--cyan);
  box-shadow: var(--shadow-md);
}

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

.form-heading {
  margin-bottom: 0.6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.form-heading h3 {
  margin: 0;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.form-heading p {
  margin: 0.3rem 0 0;
  color: var(--steel-500);
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  color: var(--navy-800);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.065em;
  text-transform: uppercase;
}

.field label span {
  color: #b06a00;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 0.8rem 0.9rem;
  color: var(--steel-900);
  background: #f8fafa;
  border: 1px solid var(--field-line);
  border-radius: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--steel-500);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--cyan-text);
  box-shadow: 0 0 0 3px rgba(13, 111, 122, 0.14);
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 3px solid var(--cyan-text);
  outline-offset: 2px;
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #b94b42;
}

.contact-form .button {
  width: 100%;
}

.form-note,
.form-status {
  margin: -0.2rem 0 0;
  color: var(--steel-500);
  font-size: 0.84rem;
}

.form-status {
  min-height: 1.35em;
  margin-top: -0.8rem;
  color: var(--cyan-text);
  font-weight: 600;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.64);
  background: var(--navy-950);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 0.7fr);
  gap: clamp(2rem, 5vw, 5rem);
  padding: 5rem 0 4rem;
}

.footer-brand img {
  width: 245px;
  height: auto;
}

.footer-brand p {
  max-width: 42ch;
  margin: 1.2rem 0 0;
}

.footer-main h2 {
  margin: 0 0 1.15rem;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-main a,
.footer-main > div > span {
  display: block;
  width: fit-content;
  margin: 0.48rem 0;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

.footer-main a:hover,
.footer-main a:focus-visible {
  color: var(--cyan-light);
}

.footer-bottom {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.82rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  color: var(--cyan-light);
  font-weight: 600;
  text-decoration: none;
}

.floating-whatsapp {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 80;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.floating-whatsapp svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.2, 0.7, 0.2, 1);
}

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

.services-grid .reveal:nth-child(2),
.work-grid .reveal:nth-child(2) {
  transition-delay: 0.07s;
}

.services-grid .reveal:nth-child(3),
.work-grid .reveal:nth-child(3) {
  transition-delay: 0.14s;
}

.services-grid .reveal:nth-child(4),
.work-grid .reveal:nth-child(4) {
  transition-delay: 0.21s;
}

/* Responsive */
@media (max-width: 1120px) {
  :root {
    --header-height: 78px;
  }

  .utility-bar {
    display: none;
  }

  .brand {
    width: 205px;
  }

  .main-nav a {
    padding-inline: 0.58rem;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 2.5rem;
  }

  .hero h1 {
    font-size: clamp(4rem, 8.7vw, 6.6rem);
  }

  .service-card {
    grid-column: span 6;
  }

  .service-card:nth-child(2) {
    grid-column: span 4;
  }

  .service-card--featured {
    grid-column: span 8;
  }

  .contact-copy address {
    grid-template-columns: 1fr;
  }
}

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

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

  .js .menu-toggle {
    position: relative;
    display: block;
  }

  .js .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    max-height: 0;
    display: grid;
    align-self: auto;
    align-items: stretch;
    gap: 0;
    margin: 0;
    overflow: hidden;
    background: var(--navy-950);
    border: 0 solid rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s ease, visibility 0.2s ease, border-width 0.2s ease;
  }

  .js .main-nav.is-open {
    max-height: 420px;
    border-width: 1px;
    opacity: 1;
    visibility: visible;
  }

  html:not(.js) .nav-shell__inner {
    flex-wrap: wrap;
    padding-block: 0.7rem;
  }

  html:not(.js) .main-nav {
    width: 100%;
    order: 3;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-self: auto;
    margin: 0;
  }

  html:not(.js) .main-nav a {
    height: auto;
    justify-content: center;
  }

  .main-nav a {
    min-height: 56px;
    padding: 0 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  }

  .main-nav a:last-child {
    border-bottom: 0;
  }

  .main-nav a::after {
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 3px;
    height: auto;
    transform: scaleY(0);
  }

  .main-nav a:hover::after,
  .main-nav a:focus-visible::after,
  .main-nav a.is-active::after {
    transform: scaleY(1);
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4.8rem 0 3rem;
  }

  .hero__copy {
    max-width: 730px;
  }

  .hero-console {
    width: min(100%, 620px);
    justify-self: start;
  }

  .hero-console dl {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid var(--line-dark);
  }

  .hero-console dl div {
    display: block;
    padding: 0.9rem;
    border-top: 0;
    border-right: 1px solid var(--line-dark);
  }

  .hero-console dl div:last-child {
    border-right: 0;
  }

  .hero-console dd {
    margin-top: 0.2rem;
  }

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

  .capability-rail li:nth-child(2) {
    border-right: 0;
  }

  .capability-rail li:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .heading-split,
  .section-heading,
  .work-heading,
  .industry-cta__inner,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }

  .heading-split__copy {
    max-width: 720px;
  }

  .about-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .about-media {
    min-height: 570px;
  }

  .service-card--featured {
    grid-column: 1 / -1;
  }

  .service-card,
  .service-card:nth-child(2) {
    grid-column: span 6;
  }

  .process-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-visual {
    position: relative;
    top: auto;
    height: 560px;
    min-height: 0;
  }

  .work-heading {
    align-items: start;
  }

  .industry-cta__inner {
    padding: 6rem 0;
  }

  .industry-cta__side {
    max-width: 650px;
  }

  .contact-copy {
    position: relative;
    top: auto;
  }

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

  .footer-main {
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 2rem;
  }
}

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

  .section {
    padding: 4.8rem 0;
  }

  .nav-cta {
    display: none;
  }

  html:not(.js) .main-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  h2 {
    font-size: clamp(2.45rem, 13vw, 3.8rem);
  }

  .nav-shell__inner {
    min-height: 68px;
  }

  .brand {
    width: 190px;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    object-position: 60% center;
  }

  .hero__overlay {
    background: linear-gradient(90deg, rgba(6, 21, 29, 0.97), rgba(6, 21, 29, 0.75));
  }

  .hero__inner {
    padding: 4.5rem 0 3rem;
  }

  .hero h1 {
    font-size: clamp(3.25rem, 17vw, 5rem);
    line-height: 0.88;
  }

  .hero__actions {
    display: grid;
  }

  .hero__actions .button {
    width: 100%;
  }

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

  .hero-console dl div {
    display: flex;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .hero-console dl div:last-child {
    border-bottom: 0;
  }

  .capability-rail li {
    min-height: 90px;
    grid-template-columns: 1fr;
    gap: 0.35rem;
    padding: 1rem;
  }

  .capability-rail strong {
    font-size: 1rem;
  }

  .impact-strip__inner {
    display: grid;
    gap: 0.5rem;
    padding: 1.3rem 0;
  }

  .heading-split,
  .section-heading,
  .work-heading {
    margin-bottom: 2.8rem;
  }

  .heading-split__copy {
    padding-left: 1rem;
  }

  .about-showcase {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 500px;
  }

  .about-media figcaption {
    right: 1.2rem;
    bottom: 1.2rem;
    left: 1.2rem;
    display: grid;
  }

  .about-media figcaption strong {
    text-align: left;
  }

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

  .service-card,
  .service-card:nth-child(2),
  .service-card--featured {
    min-height: auto;
    grid-column: 1;
  }

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

  .service-card--featured img {
    height: 330px;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card__content {
    padding: 2rem 1.5rem;
  }

  .service-icon {
    margin-top: 1.7rem;
  }

  .process::before {
    display: none;
  }

  .process-visual {
    height: 480px;
  }

  .process-accordion summary {
    grid-template-columns: 36px 1fr 30px;
    padding-inline: 0.65rem;
  }

  .process-accordion summary strong {
    font-size: 1.08rem;
  }

  .process-accordion details p {
    margin: -0.1rem 1rem 0;
    padding: 0 1rem 1.25rem 2.35rem;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .work-card,
  .work-card--wide,
  .work-card--tall {
    grid-column: 1;
    grid-row: auto;
  }

  .work-card--tall {
    min-height: 430px;
  }

  .industry-cta__side ul {
    grid-template-columns: 1fr;
  }

  .contact-copy address,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .field,
  .form-heading,
  .field--full {
    grid-column: 1;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 4rem 0 3rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    padding: 1.2rem 0;
  }

  .floating-whatsapp {
    right: 0.9rem;
    bottom: 0.9rem;
    width: 52px;
    height: 52px;
  }
}

@media (max-width: 430px) {
  .brand {
    width: 170px;
  }

  html:not(.js) .main-nav {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    width: 43px;
    height: 43px;
  }

  .capability-rail {
    grid-template-columns: 1fr;
  }

  .capability-rail li,
  .capability-rail li:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .capability-rail li:last-child {
    border-bottom: 0;
  }

  .capability-rail li {
    min-height: 76px;
    grid-template-columns: 34px 1fr;
    align-items: center;
  }

  .contact-form {
    padding: 1.2rem;
  }

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

  .footer-brand {
    grid-column: auto;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
