:root {
  --green: #00513c;
  --green-2: #078e6b;
  --green-3: #9bdec8;
  --green-pale: #e9f5f1;
  --navy: #091e3e;
  --navy-2: #102c52;
  --ink: #10233b;
  --muted: #5f6d7b;
  --line: #dbe5e2;
  --soft: #f4f8f7;
  --white: #fff;
  --display: "Fraunces", Georgia, serif;
  --sans: "Manrope", "Trebuchet MS", sans-serif;
  --shadow: 0 24px 70px rgba(9, 30, 62, 0.13);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 34px;
  --container: min(1180px, calc(100vw - 48px));
  --header-height: 84px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

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

button,
select {
  cursor: pointer;
}

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

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

h1 {
  font-size: clamp(3rem, 6vw, 5.65rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.25rem, 4.4vw, 4.15rem);
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.section {
  padding-block: clamp(84px, 9vw, 136px);
}

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

.section--navy {
  color: rgba(255, 255, 255, 0.76);
  background: var(--navy);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

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

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

.lead {
  color: var(--muted);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
  line-height: 1.7;
}

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

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

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

:focus-visible {
  outline: 3px solid #f4b942;
  outline-offset: 4px;
}

.utility {
  position: relative;
  z-index: 102;
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.utility__inner,
.utility__links,
.utility p,
.utility a {
  display: flex;
  align-items: center;
}

.utility__inner {
  min-height: 39px;
  justify-content: space-between;
}

.utility p {
  gap: 8px;
  margin: 0;
}

.utility p strong {
  color: var(--white);
}

.utility__links {
  gap: 28px;
}

.utility a {
  gap: 7px;
  transition: color 180ms ease;
}

.utility a:hover {
  color: var(--green-3);
}

.utility .icon {
  width: 15px;
  height: 15px;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(0, 81, 60, 0.09);
  backdrop-filter: blur(18px);
  transition:
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(9, 30, 62, 0.08);
}

.site-header__inner {
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
}

.brand img {
  width: 196px;
  height: auto;
}

.desktop-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 27px;
}

.desktop-nav a {
  position: relative;
  color: #263c53;
  font-size: 0.84rem;
  font-weight: 700;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-2);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 200ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.header-cta {
  display: inline-flex;
  min-height: 46px;
  padding: 0 17px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--green);
  border-radius: 9px;
  font-size: 0.78rem;
  font-weight: 800;
  transition:
    background 180ms ease,
    transform 180ms ease;
  white-space: nowrap;
}

.header-cta .icon {
  width: 16px;
}

.header-cta:hover {
  background: var(--green-2);
  transform: translateY(-2px);
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 24px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.2;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button .icon {
  width: 18px;
  height: 18px;
  transition: transform 180ms ease;
}

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

.button:hover .icon {
  transform: translateX(4px);
}

.button--primary {
  color: var(--white);
  background: var(--green-2);
  box-shadow: 0 12px 26px rgba(7, 142, 107, 0.2);
}

.button--primary:hover {
  background: #087b5f;
  box-shadow: 0 14px 32px rgba(7, 142, 107, 0.28);
}

.button--secondary {
  color: var(--green);
  background: transparent;
  border-color: currentColor;
}

.button--secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background: #f2f4ef;
  border-bottom: 1px solid rgba(0, 81, 60, 0.12);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 81, 60, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 81, 60, 0.045) 1px, transparent 1px);
  background-size: 88px 88px;
  content: "";
  mask-image: linear-gradient(90deg, black, rgba(0, 0, 0, 0.35) 65%, transparent);
  pointer-events: none;
}

.hero__atmosphere {
  position: absolute;
  z-index: -1;
  right: -1.5vw;
  bottom: -0.14em;
  color: rgba(0, 81, 60, 0.035);
  font-family: var(--sans);
  font-size: clamp(9rem, 20vw, 22rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.72;
  pointer-events: none;
  white-space: nowrap;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 690px;
  padding-block: clamp(62px, 6.4vw, 92px);
  align-items: center;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.68fr);
  gap: clamp(52px, 7vw, 100px);
}

.hero__message {
  max-width: 760px;
  animation: hero-in 700ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero__eyebrow {
  display: flex;
  margin-bottom: 31px;
  align-items: center;
  gap: 14px;
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero__eyebrow span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow span:first-child::before {
  width: 8px;
  height: 8px;
  background: var(--green-2);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(7, 142, 107, 0.1);
  content: "";
}

.hero__eyebrow span:last-child {
  padding-left: 14px;
  color: #5c706a;
  border-left: 1px solid rgba(0, 81, 60, 0.2);
}

.hero h1 {
  max-width: 810px;
  margin-bottom: 28px;
  color: var(--navy);
  font-size: clamp(3.7rem, 5.7vw, 5.8rem);
  line-height: 0.99;
}

.hero h1 span {
  color: var(--green);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 32px;
  color: #415750;
  font-size: clamp(1.08rem, 1.45vw, 1.23rem);
  line-height: 1.65;
}

.hero__actions,
.cta-band__actions,
.location-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.inner-hero .button--secondary,
.quote-hero .button--secondary,
.not-found .button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.45);
}

.inner-hero .button--secondary:hover,
.quote-hero .button--secondary:hover,
.not-found .button--secondary:hover {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.hero .button--primary {
  background: var(--green);
  box-shadow: 0 14px 30px rgba(0, 81, 60, 0.18);
}

.hero .button--primary:hover {
  background: var(--green-2);
}

.hero .button--secondary {
  color: var(--green);
  background: rgba(255, 255, 255, 0.52);
  border-color: rgba(0, 81, 60, 0.38);
}

.hero .button--secondary:hover {
  color: var(--white);
  background: var(--green);
  border-color: var(--green);
}

.hero__facts {
  display: grid;
  max-width: 700px;
  margin-top: 38px;
  padding-top: 25px;
  border-top: 1px solid rgba(0, 81, 60, 0.16);
  grid-template-columns: 0.78fr 1.22fr;
}

.hero__facts > div,
.hero__facts > a {
  display: flex;
  min-height: 47px;
  padding-inline: 0 24px;
  align-items: center;
  gap: 12px;
}

.hero__facts > a {
  padding-right: 0;
  padding-left: 24px;
  border-left: 1px solid rgba(0, 81, 60, 0.16);
}

.hero__facts > div > .icon,
.hero__facts > a > .icon:first-child {
  width: 23px;
  height: 23px;
  color: var(--green-2);
}

.hero__facts > a > .icon:last-child {
  width: 17px;
  height: 17px;
  margin-left: auto;
  color: var(--green);
  transition: transform 180ms ease;
}

.hero__facts > a:hover > .icon:last-child {
  transform: translateX(4px);
}

.hero__facts span {
  display: flex;
  flex-direction: column;
  line-height: 1.4;
}

.hero__facts small {
  color: #6e7f79;
  font-size: 0.65rem;
}

.hero__facts strong {
  color: var(--navy);
  font-size: 0.74rem;
}

.hero__place {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 600px;
  padding: 36px 38px 30px;
  flex-direction: column;
  justify-self: stretch;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green);
  clip-path: polygon(0 0, 89% 0, 100% 8%, 100% 100%, 11% 100%, 0 92%);
  filter: drop-shadow(0 24px 35px rgba(0, 48, 36, 0.17));
  animation: hero-place-in 800ms 100ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero__place::before {
  position: absolute;
  inset: 0;
  opacity: 0.13;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(135deg, black, transparent 82%);
}

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

.hero__place-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.hero__place-head img {
  width: 148px;
  height: 40px;
  object-fit: contain;
  object-position: left center;
}

.hero__place-head span {
  font-size: 0.59rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.hero__place-kicker {
  display: flex;
  margin: 83px 0 15px;
  align-items: center;
  gap: 9px;
  color: var(--green-3);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__place-kicker .icon {
  width: 17px;
  height: 17px;
}

.hero__place-name {
  display: flex;
  margin: 0;
  flex-direction: column;
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(3rem, 5vw, 4.7rem);
  font-weight: 800;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.hero__place-name span {
  font-size: 0.55em;
  letter-spacing: 0.06em;
}

.hero__place-name strong {
  font-weight: inherit;
}

.hero__place-route {
  position: absolute;
  z-index: 0;
  top: 150px;
  right: -65px;
  width: 270px;
  height: 245px;
  opacity: 0.34;
  transform: rotate(-8deg);
}

.hero__place-route span {
  position: absolute;
  top: 36px;
  right: 0;
  width: 275px;
  height: 112px;
  border: 2px solid rgba(255, 255, 255, 0.55);
  border-width: 2px 0 0 2px;
  border-radius: 65% 0 0;
  transform: rotate(24deg);
}

.hero__place-route span:nth-child(2) {
  top: 122px;
  right: 32px;
  width: 225px;
  height: 80px;
  transform: rotate(-17deg);
}

.hero__place-route i {
  position: absolute;
  top: 80px;
  left: 85px;
  width: 18px;
  height: 18px;
  background: var(--green-3);
  border: 5px solid var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green-3);
}

.hero__place-address {
  display: flex;
  margin-top: auto;
  padding-top: 21px;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__place-address p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.hero__place-address strong {
  color: var(--white);
  font-size: 0.75rem;
}

.hero__place-address span {
  margin-top: 2px;
  font-size: 0.61rem;
}

.hero__place-address a {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 800;
}

.hero__place-address a .icon {
  width: 17px;
  height: 17px;
}

.hero__opening {
  display: flex;
  margin-top: 21px;
  padding-top: 16px;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__opening span {
  font-size: 0.64rem;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero__opening strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 3.4rem;
  letter-spacing: -0.055em;
  line-height: 0.8;
}

@keyframes hero-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-place-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.intro-section {
  padding-top: clamp(84px, 9vw, 136px);
}

.intro-grid,
.split-heading {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.65fr);
  gap: clamp(50px, 8vw, 130px);
}

.intro-grid h2,
.split-heading h2 {
  margin-bottom: 0;
}

.intro-copy .lead {
  margin-bottom: 28px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  font-size: 0.84rem;
  font-weight: 800;
}

.text-link .icon {
  width: 18px;
  transition: transform 180ms ease;
}

.text-link:hover .icon {
  transform: translateX(5px);
}

.split-heading {
  margin-bottom: 56px;
}

.split-heading > p {
  max-width: 450px;
  margin: 0;
  color: var(--muted);
}

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

.service-row {
  display: grid;
  min-height: 116px;
  padding: 24px 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 64px minmax(220px, 0.75fr) minmax(300px, 1fr) 40px;
  transition:
    color 200ms ease,
    background 200ms ease,
    padding 200ms ease;
}

.service-row:hover {
  padding-inline: 24px;
  color: var(--white);
  background: var(--green);
}

.service-row__number {
  color: var(--green-2);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.service-row:hover .service-row__number {
  color: var(--green-3);
}

.service-row__title {
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.service-row:hover .service-row__title {
  color: var(--white);
}

.service-row__text {
  padding-right: 30px;
  color: var(--muted);
  font-size: 0.88rem;
}

.service-row:hover .service-row__text {
  color: rgba(255, 255, 255, 0.74);
}

.service-row > .icon {
  color: var(--green);
  transition: transform 200ms ease;
}

.service-row:hover > .icon {
  color: var(--white);
  transform: translateX(5px);
}

.section-end {
  display: flex;
  margin-top: 42px;
  justify-content: flex-end;
}

.why-grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 130px);
}

.why-visual {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: 680px;
  padding: clamp(32px, 5vw, 58px);
  flex-direction: column;
  justify-content: space-between;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.why-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(145deg, black, transparent 80%);
}

.why-visual::after {
  position: absolute;
  z-index: -1;
  right: -0.05em;
  bottom: -0.23em;
  color: rgba(255, 255, 255, 0.045);
  content: "RJ";
  font-family: var(--sans);
  font-size: clamp(11rem, 19vw, 17rem);
  font-weight: 800;
  letter-spacing: -0.12em;
  line-height: 1;
}

.why-visual__head,
.why-visual__details {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.why-visual__head {
  padding-bottom: 22px;
  align-items: flex-start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.63rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.why-visual__head span:last-child {
  color: rgba(255, 255, 255, 0.58);
  text-align: right;
}

.why-visual__year {
  display: flex;
  flex-direction: column;
  margin-block: auto 20px;
}

.why-visual__year span {
  color: var(--green-3);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.why-visual__year strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(5rem, 8vw, 7.5rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.86;
}

.why-visual blockquote {
  max-width: 330px;
  margin: 0 0 58px auto;
  color: var(--white);
  font-family: var(--display);
  font-size: clamp(1.55rem, 2.5vw, 2.25rem);
  line-height: 1.13;
  text-align: right;
}

.why-visual__details {
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.why-visual__details p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.why-visual__details p:last-child {
  text-align: right;
}

.why-visual__details span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.why-visual__details strong {
  color: var(--white);
  font-size: 0.66rem;
  line-height: 1.45;
}

.why-copy {
  padding-block: 24px;
}

.feature-list {
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  padding-block: 27px;
  border-top: 1px solid var(--line);
  grid-template-columns: 54px 1fr;
  gap: 16px;
}

.feature-list li > span {
  color: var(--green-2);
  font-size: 0.69rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.feature-list h3 {
  margin-bottom: 8px;
  font-family: var(--sans);
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.process {
  background: linear-gradient(180deg, #fff 0%, #f8faf9 100%);
}

.process__grid {
  display: grid;
  margin-top: 0;
  padding: 0;
  list-style: none;
  grid-template-columns: repeat(4, 1fr);
}

.process__grid li {
  position: relative;
  min-height: 260px;
  padding: 36px 30px;
  border-top: 2px solid var(--green);
  border-right: 1px solid var(--line);
}

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

.process__grid li::before {
  position: absolute;
  top: -7px;
  left: 29px;
  width: 12px;
  height: 12px;
  background: var(--green-2);
  border: 3px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--green-2);
  content: "";
}

.process__grid li > span {
  display: block;
  margin-bottom: 52px;
  color: var(--green-2);
  font-size: 0.74rem;
  font-weight: 800;
}

.process__grid h3 {
  font-family: var(--sans);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
}

.process__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.85rem;
}

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

.enterprise-section {
  padding-top: 0;
}

.enterprise-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  padding: clamp(42px, 6vw, 76px);
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 85% 10%, rgba(155, 222, 200, 0.14), transparent 28%),
    var(--navy);
  border-radius: var(--radius-lg);
  grid-template-columns: 1.05fr 0.8fr;
  gap: clamp(52px, 8vw, 120px);
}

.enterprise-panel::after {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(155, 222, 200, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 222, 200, 0.22) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(110deg, transparent 45%, black);
  pointer-events: none;
}

.enterprise-panel h2 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.enterprise-panel__actions {
  display: flex;
  margin-top: 34px;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.enterprise-panel__actions > a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
}

.enterprise-panel ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0;
  list-style: none;
}

.enterprise-panel li {
  display: flex;
  padding-block: 21px;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.85rem;
}

.enterprise-panel li .icon {
  color: var(--green-3);
}

.location-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.78fr) minmax(400px, 1.05fr);
  gap: clamp(60px, 9vw, 130px);
}

.location-grid .lead {
  margin-bottom: 34px;
}

.map-art {
  position: relative;
  overflow: hidden;
  min-height: 480px;
  background:
    linear-gradient(120deg, transparent 20%, rgba(0, 81, 60, 0.06) 20%, rgba(0, 81, 60, 0.06) 24%, transparent 24%),
    linear-gradient(35deg, transparent 50%, rgba(0, 81, 60, 0.07) 50%, rgba(0, 81, 60, 0.07) 54%, transparent 54%),
    #e8f0ed;
  border-radius: var(--radius-lg);
}

.map-art::before {
  position: absolute;
  top: 52px;
  right: 62px;
  width: 90px;
  height: 90px;
  border: 1px dashed rgba(0, 81, 60, 0.25);
  border-radius: 50%;
  content: "";
}

.map-art__water {
  position: absolute;
  right: -10%;
  bottom: -30%;
  width: 65%;
  height: 78%;
  background: linear-gradient(132deg, transparent 0 22%, #bcdeda 22%);
  transform: rotate(-10deg);
}

.map-art__road {
  position: absolute;
  height: 14px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(9, 30, 62, 0.05);
}

.map-art__road--one {
  top: 37%;
  left: -10%;
  width: 110%;
  transform: rotate(-16deg);
}

.map-art__road--two {
  top: -5%;
  left: 38%;
  width: 14px;
  height: 110%;
  transform: rotate(24deg);
}

.map-art__pin {
  position: absolute;
  z-index: 2;
  top: 44%;
  left: 46%;
  display: flex;
  width: 190px;
  padding: 16px 18px;
  flex-direction: column;
  color: var(--white);
  background: var(--green);
  border-radius: 13px;
  box-shadow: var(--shadow);
  transform: translate(-50%, -50%);
}

.map-art__pin .icon {
  position: absolute;
  top: -40px;
  left: 50%;
  width: 42px;
  height: 42px;
  padding: 10px;
  color: var(--white);
  background: var(--green-2);
  border-radius: 8px;
  transform: translateX(-50%);
}

.map-art__pin .icon svg {
  transform: none;
}

.map-art__pin b {
  font-family: var(--display);
  font-size: 1.3rem;
}

.map-art__pin small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.63rem;
}

.cta-band {
  padding-block: clamp(72px, 8vw, 112px);
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 8% 0%, rgba(155, 222, 200, 0.16), transparent 27%),
    var(--green);
}

.cta-band__inner {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.25fr) minmax(330px, 0.65fr);
  gap: 70px;
}

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

.cta-band p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
}

.cta-band__actions {
  justify-content: flex-end;
}

.cta-band .button--primary {
  color: var(--green);
  background: var(--white);
}

.cta-band .button--primary:hover {
  color: var(--white);
  background: var(--navy);
}

.cta-band .button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.cta-band .button--secondary:hover {
  color: var(--green);
  background: var(--white);
  border-color: var(--white);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding-block: 42px clamp(90px, 10vw, 140px);
  color: rgba(255, 255, 255, 0.74);
  background:
    linear-gradient(120deg, rgba(0, 81, 60, 0.96), rgba(0, 61, 47, 0.97)),
    var(--green);
}

.inner-hero::before {
  position: absolute;
  inset: 0;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.28) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 1px, transparent 1px);
  background-size: 70px 70px;
  content: "";
  mask-image: linear-gradient(90deg, black, transparent 80%);
}

.inner-hero__atmosphere {
  position: absolute;
  right: -0.035em;
  bottom: -0.18em;
  color: rgba(255, 255, 255, 0.04);
  font-family: var(--sans);
  font-size: clamp(10rem, 22vw, 23rem);
  font-weight: 800;
  letter-spacing: -0.1em;
  line-height: 0.72;
  pointer-events: none;
  white-space: nowrap;
}

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

.breadcrumb {
  display: flex;
  margin-bottom: clamp(68px, 8vw, 108px);
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  font-weight: 700;
}

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

.inner-hero__layout {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.42fr);
  gap: 80px;
}

.inner-hero h1 {
  max-width: 870px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.inner-hero__intro {
  max-width: 760px;
  margin-bottom: 36px;
  font-size: clamp(1.04rem, 1.5vw, 1.22rem);
}

.inner-hero__stamp {
  position: relative;
  display: flex;
  min-height: 180px;
  padding: 28px 0 24px 28px;
  flex-direction: column;
  justify-content: flex-end;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.inner-hero__stamp::after {
  position: absolute;
  top: -1px;
  right: 0;
  width: 38px;
  height: 38px;
  border-top: 1px solid var(--green-3);
  border-right: 1px solid var(--green-3);
  content: "";
}

.inner-hero__stamp > .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 22px;
  color: var(--green-3);
}

.inner-hero__stamp span {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.25;
}

.inner-hero__stamp small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
  line-height: 1.45;
}

.detail-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.15fr) minmax(310px, 0.58fr);
  gap: clamp(70px, 10vw, 150px);
}

.detail-copy .lead {
  max-width: 720px;
}

.check-list {
  display: grid;
  margin: 42px 0 0;
  padding: 0;
  gap: 18px;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: #31465b;
  font-size: 0.91rem;
}

.check-list .icon {
  width: 21px;
  height: 21px;
  margin-top: 2px;
  color: var(--green-2);
}

.info-panel {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  padding: clamp(30px, 4vw, 46px);
  color: var(--muted);
  background: var(--green-pale);
  border-radius: var(--radius-md);
}

.info-panel > .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 55px;
  padding: 9px;
  color: var(--white);
  background: var(--green);
  border-radius: 10px;
}

.info-panel__label {
  margin-bottom: 10px;
  color: var(--green);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.info-panel h3 {
  font-size: 1.75rem;
}

.info-panel > p:not(.info-panel__label) {
  font-size: 0.84rem;
}

.info-panel > a {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.79rem;
  font-weight: 800;
}

.info-panel > a .icon {
  width: 17px;
}

.documents-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: clamp(70px, 11vw, 150px);
}

.documents-grid h2 {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
}

.documents-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.documents-grid li {
  display: flex;
  padding-block: 25px;
  align-items: flex-start;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.documents-grid li > .icon {
  width: 24px;
  height: 24px;
  color: var(--green-3);
}

.documents-grid li div {
  display: flex;
  flex-direction: column;
}

.documents-grid li strong {
  color: var(--white);
  font-size: 0.94rem;
}

.documents-grid li span {
  margin-top: 5px;
  font-size: 0.8rem;
}

.faq-list {
  max-width: 970px;
}

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

.faq-list details:first-child {
  border-top: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 94px;
  padding: 24px 4px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
  list-style: none;
}

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

.faq-plus {
  position: relative;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq-plus::before,
.faq-plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 1px;
  background: var(--green);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

details[open] .faq-plus::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq-answer {
  display: grid;
  max-width: 800px;
  grid-template-rows: 0fr;
  opacity: 0;
  color: var(--muted);
  font-size: 0.93rem;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 220ms ease;
}

.faq-list details[open] > .faq-answer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.faq-answer__inner {
  overflow: hidden;
  min-height: 0;
}

.faq-answer p {
  margin: 0;
  padding: 0 56px 28px 4px;
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer,
  .faq-plus::before,
  .faq-plus::after {
    transition: none;
  }
}

.story-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(330px, 0.8fr) minmax(0, 1fr);
  gap: clamp(70px, 10vw, 140px);
}

.story-poster {
  position: relative;
  overflow: hidden;
  display: flex;
  aspect-ratio: 0.84;
  padding: clamp(28px, 3.7vw, 44px);
  flex-direction: column;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.66);
  background: var(--navy);
  border-radius: var(--radius-lg);
  isolation: isolate;
}

.story-poster::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.17;
  background-image:
    linear-gradient(rgba(155, 222, 200, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(155, 222, 200, 0.22) 1px, transparent 1px);
  background-size: 54px 54px;
  content: "";
  mask-image: linear-gradient(145deg, black, transparent 78%);
}

.story-poster::after {
  position: absolute;
  z-index: -1;
  right: -0.08em;
  bottom: -0.21em;
  color: rgba(255, 255, 255, 0.035);
  content: "CENTRO";
  font-family: var(--sans);
  font-size: clamp(5.5rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 1;
  writing-mode: vertical-rl;
}

.story-poster__head {
  display: flex;
  padding-bottom: 22px;
  align-items: flex-start;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.story-poster__head img {
  width: min(46%, 152px);
  height: auto;
}

.story-poster__head span {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.5;
  text-align: right;
  text-transform: uppercase;
}

.story-poster__place {
  display: flex;
  margin-block: auto;
  flex-direction: column;
}

.story-poster__place > span {
  margin-bottom: 13px;
  color: var(--green-3);
  font-size: 0.61rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-poster__place > strong {
  color: var(--white);
  font-family: var(--sans);
  font-size: clamp(3.6rem, 6vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
}

.story-poster__place > p {
  margin: 22px 0 0;
  font-size: 0.69rem;
  line-height: 1.55;
}

.story-poster__facts {
  display: grid;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.story-poster__facts p {
  display: flex;
  margin: 0;
  flex-direction: column;
}

.story-poster__facts p:last-child {
  text-align: right;
}

.story-poster__facts span {
  font-size: 0.53rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.story-poster__facts strong {
  color: var(--white);
  font-family: var(--display);
  font-size: 1.15rem;
}

.story-copy p:not(.eyebrow):not(.lead) {
  color: var(--muted);
}

.story-copy blockquote {
  margin: 42px 0 0;
  padding: 24px 0 24px 30px;
  color: var(--green);
  border-left: 3px solid var(--green-2);
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1.3;
}

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

.principles-grid article {
  min-height: 320px;
  padding: 44px;
  background: var(--white);
  border-right: 1px solid var(--line);
}

.principles-grid article:first-child {
  border-radius: var(--radius-md) 0 0 var(--radius-md);
}

.principles-grid article:last-child {
  border-right: 0;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.principles-grid .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 70px;
  color: var(--green-2);
}

.principles-grid p {
  color: var(--muted);
  font-size: 0.86rem;
}

.services-hub__intro {
  max-width: 820px;
  margin-bottom: 64px;
}

.services-hub__intro > p:last-child {
  max-width: 650px;
  color: var(--muted);
}

.service-catalog {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.service-catalog article {
  min-height: 350px;
  padding: clamp(30px, 4vw, 46px);
  background: var(--white);
}

.service-catalog article > span {
  display: block;
  margin-bottom: 78px;
  color: var(--green-2);
  font-size: 0.7rem;
  font-weight: 800;
}

.service-catalog h3 a {
  transition: color 180ms ease;
}

.service-catalog h3 a:hover {
  color: var(--green-2);
}

.service-catalog p {
  color: var(--muted);
  font-size: 0.84rem;
}

.service-catalog .text-link {
  margin-top: 16px;
}

.decision-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.decision-list > a {
  display: grid;
  min-height: 98px;
  padding: 20px 8px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 0.8fr 1fr 24px;
  gap: 16px;
  transition: padding 180ms ease;
}

.decision-list > a:hover {
  padding-inline: 20px;
}

.decision-list span {
  color: var(--muted);
  font-size: 0.73rem;
}

.decision-list strong {
  color: var(--navy);
  font-size: 0.86rem;
}

.decision-list .icon {
  color: var(--green);
}

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.compare-grid article {
  min-height: 320px;
  padding: clamp(34px, 5vw, 54px);
  background: var(--white);
  border-radius: var(--radius-md);
}

.compare-grid article > span,
.aso-types article > span,
.sst-pillars article > span,
.needs-grid > a > span {
  display: block;
  margin-bottom: 50px;
  color: var(--green-2);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.compare-grid p {
  color: var(--muted);
}

.compare-grid a,
.aso-types a {
  display: inline-flex;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.glossary-section h2 {
  max-width: 780px;
}

.glossary-flow {
  display: grid;
  margin-top: 65px;
  grid-template-columns: repeat(4, 1fr);
}

.glossary-flow > div {
  min-height: 260px;
  padding: 32px;
  border-top: 2px solid var(--green-3);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.glossary-flow > div:last-child {
  border-right: 0;
}

.glossary-flow span {
  display: block;
  margin-bottom: 68px;
  color: var(--green-3);
  font-size: 0.7rem;
  font-weight: 800;
}

.glossary-flow strong {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
  font-family: var(--display);
  font-size: 1.35rem;
}

.glossary-flow p {
  margin: 0;
  font-size: 0.8rem;
}

.aso-types__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
}

.aso-types article {
  min-height: 310px;
  padding: 34px 26px;
  background: var(--white);
}

.aso-types article > span {
  margin-bottom: 70px;
}

.aso-types p {
  color: var(--muted);
  font-size: 0.8rem;
}

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

.sst-pillars article {
  min-height: 350px;
  padding: 42px;
  background: var(--white);
  border-radius: var(--radius-md);
}

.sst-pillars article > .icon {
  width: 38px;
  height: 38px;
  margin-bottom: 52px;
  color: var(--green);
}

.sst-pillars article > span {
  margin-bottom: 14px;
}

.sst-pillars p {
  color: var(--muted);
}

.integration-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 0.65fr 1.2fr;
  gap: 80px;
}

.integration-grid h2 {
  margin-bottom: 0;
}

.integration-flow {
  display: flex;
  align-items: center;
  gap: 15px;
}

.integration-flow > span {
  display: flex;
  min-height: 84px;
  padding: 16px;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.73rem;
  font-weight: 800;
  text-align: center;
}

.integration-flow > .icon {
  flex: 0 0 18px;
  color: var(--green-2);
}

.b2b-grid {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
  gap: clamp(80px, 11vw, 150px);
}

.b2b-outcomes {
  display: grid;
  border-top: 1px solid var(--line);
}

.b2b-outcomes article {
  display: grid;
  min-height: 130px;
  padding-block: 25px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 145px 1fr;
  gap: 25px;
}

.b2b-outcomes strong {
  color: var(--green);
  font-family: var(--display);
  font-size: 1.8rem;
}

.b2b-outcomes p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

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

.needs-grid > a {
  position: relative;
  min-height: 300px;
  padding: clamp(34px, 5vw, 50px);
  background: var(--white);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.needs-grid > a:hover {
  border-color: var(--green-3);
  transform: translateY(-4px);
}

.needs-grid > a > span {
  margin-bottom: 50px;
}

.needs-grid p {
  max-width: 440px;
  color: var(--muted);
  font-size: 0.85rem;
}

.needs-grid > a > .icon {
  position: absolute;
  right: 30px;
  bottom: 30px;
  color: var(--green);
}

.b2b-form-section {
  background: var(--green-pale);
}

.form-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.68fr) minmax(460px, 1fr);
  gap: clamp(70px, 10vw, 130px);
}

.form-layout > div:first-child > p:not(.eyebrow) {
  color: var(--muted);
}

.lead-form {
  padding: clamp(30px, 4vw, 48px);
  color: var(--ink);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 25px 80px rgba(1, 36, 28, 0.14);
}

.lead-form--compact {
  box-shadow: none;
}

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

.field {
  position: relative;
  margin-bottom: 20px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 0.75rem;
  font-weight: 800;
}

.field label span {
  color: #b73535;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 15px;
  background: #fbfcfc;
  border: 1px solid #cfdad7;
  border-radius: 9px;
  font-size: 0.86rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field input,
.field select {
  height: 52px;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  background: var(--white);
  border-color: var(--green-2);
  box-shadow: 0 0 0 4px rgba(7, 142, 107, 0.1);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #84919c;
}

.field > small:not(.field-error) {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.65rem;
}

.field-error {
  display: none;
  margin-top: 6px;
  color: #a22c2c;
  font-size: 0.68rem;
  font-weight: 700;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: #b73535;
}

.field.is-invalid .field-error {
  display: block;
}

.consent {
  display: flex;
  margin: 4px 0 24px;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green);
}

.consent b {
  color: #b73535;
}

.consent.is-invalid {
  color: #a22c2c;
}

.form-submit {
  display: flex;
  align-items: center;
  gap: 18px;
}

.form-submit button {
  border: 0;
}

.form-submit p {
  max-width: 150px;
  margin: 0;
  color: var(--muted);
  font-size: 0.65rem;
  line-height: 1.45;
}

.form-status {
  min-height: 0;
  margin-top: 14px;
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 700;
}

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

.channel {
  display: flex;
  min-height: 270px;
  padding: 36px;
  flex-direction: column;
  color: var(--muted);
  background: var(--soft);
  border: 1px solid transparent;
  border-radius: var(--radius-md);
}

.channel--primary {
  color: rgba(255, 255, 255, 0.7);
  background: var(--green);
}

.channel > .icon {
  width: 32px;
  height: 32px;
  margin-bottom: auto;
  color: var(--green-2);
}

.channel--primary > .icon {
  color: var(--green-3);
}

.channel p {
  margin-bottom: 4px;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel a {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-family: var(--display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 700;
  line-height: 1.25;
}

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

.channel > span {
  margin-top: 8px;
  font-size: 0.72rem;
}

.contact-emails {
  display: grid;
  padding: 38px;
  background: var(--white);
  border-radius: var(--radius-md);
}

.contact-emails > p {
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-emails > a {
  display: grid;
  padding-block: 24px;
  border-bottom: 1px solid var(--line);
  grid-template-columns: 1fr 24px;
}

.contact-emails > a span {
  color: var(--muted);
  font-size: 0.7rem;
  grid-column: 1;
}

.contact-emails > a strong {
  overflow-wrap: anywhere;
  color: var(--navy);
  font-size: 0.83rem;
  grid-column: 1;
}

.contact-emails > a .icon {
  grid-row: 1 / 3;
  grid-column: 2;
}

.quote-hero {
  position: relative;
  overflow: hidden;
  padding-block: 42px clamp(90px, 9vw, 130px);
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 18% 18%, rgba(155, 222, 200, 0.13), transparent 30%),
    var(--navy);
}

.quote-hero::after {
  position: absolute;
  right: -180px;
  bottom: -280px;
  width: 700px;
  height: 700px;
  border: 1px solid rgba(155, 222, 200, 0.11);
  border-radius: 50%;
  content: "";
}

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

.quote-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1fr);
  gap: clamp(70px, 9vw, 120px);
}

.quote-copy {
  padding-top: 34px;
}

.quote-copy h1 {
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5rem);
}

.quote-copy .lead {
  color: rgba(255, 255, 255, 0.68);
}

.quote-proof {
  display: grid;
  margin-top: 50px;
}

.quote-proof > div {
  display: flex;
  padding-block: 19px;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.quote-proof .icon {
  color: var(--green-3);
}

.quote-proof span {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
}

.quote-proof strong {
  color: var(--white);
  font-size: 0.86rem;
}

.quote-help {
  margin-top: 38px;
  font-size: 0.76rem;
}

.quote-help a {
  color: var(--white);
  font-weight: 700;
}

.location-page__grid {
  display: grid;
  align-items: stretch;
  grid-template-columns: minmax(350px, 0.65fr) minmax(500px, 1fr);
  gap: 24px;
}

.address-card {
  padding: clamp(36px, 5vw, 56px);
  background: var(--green-pale);
  border-radius: var(--radius-md);
}

.address-card > .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 60px;
  color: var(--green);
}

.address-card > p:first-of-type {
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.address-card h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.address-card > p:nth-of-type(2) {
  color: var(--muted);
}

.address-card__actions {
  display: flex;
  margin-top: 34px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.address-card__actions > a:not(.button) {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
}

.address-card__note {
  display: flex;
  margin-top: 42px;
  padding-top: 25px;
  align-items: flex-start;
  gap: 12px;
  border-top: 1px solid #c8ded7;
}

.address-card__note .icon {
  color: var(--green-2);
}

.address-card__note span {
  display: flex;
  flex-direction: column;
  color: var(--muted);
  font-size: 0.7rem;
}

.address-card__note strong {
  color: var(--navy);
  font-size: 0.8rem;
}

.map-frame {
  overflow: hidden;
  min-height: 520px;
  background: var(--soft);
  border-radius: var(--radius-md);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.72) contrast(1.03);
}

.arrival-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.arrival-grid article {
  min-height: 260px;
  padding: 38px;
  background: var(--white);
}

.arrival-grid span {
  display: block;
  margin-bottom: 65px;
  color: var(--green-2);
  font-size: 0.7rem;
  font-weight: 800;
}

.arrival-grid p {
  color: var(--muted);
  font-size: 0.84rem;
}

.not-found {
  display: flex;
  min-height: 620px;
  padding-block: 110px;
  align-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: var(--green);
  text-align: center;
}

.not-found .eyebrow,
.not-found .hero__actions {
  justify-content: center;
}

.not-found h1 {
  color: var(--white);
}

.not-found p:not(.eyebrow) {
  margin-bottom: 35px;
}

.site-footer {
  padding-top: 76px;
  color: rgba(255, 255, 255, 0.56);
  background: #06172f;
}

.footer__top {
  display: grid;
  padding-bottom: 70px;
  grid-template-columns: 1.25fr 0.68fr 0.68fr 1.05fr;
  gap: clamp(42px, 6vw, 80px);
}

.footer__brand img {
  width: 210px;
  height: 56px;
  object-fit: contain;
  object-position: left center;
}

.footer__brand > p {
  max-width: 260px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--display);
  font-size: 1.18rem;
  line-height: 1.35;
}

.footer__brand .footer__address {
  color: rgba(255, 255, 255, 0.48);
  font-family: var(--sans);
  font-size: 0.72rem;
  line-height: 1.7;
}

.site-footer h2 {
  margin-bottom: 25px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer li {
  margin-bottom: 12px;
}

.site-footer li a {
  font-size: 0.73rem;
  transition: color 180ms ease;
}

.site-footer li a:hover {
  color: var(--green-3);
}

.footer__contact {
  display: flex;
  flex-direction: column;
}

.footer__contact > a {
  display: flex;
  padding-block: 13px;
  align-items: center;
  gap: 13px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}

.footer__contact > a .icon {
  color: var(--green-3);
}

.footer__contact > a span {
  display: flex;
  flex-direction: column;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.74rem;
  overflow-wrap: anywhere;
}

.footer__contact small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.6rem;
}

.footer__bottom {
  display: flex;
  min-height: 66px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.64rem;
}

.footer__bottom p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 22px;
  bottom: 22px;
  display: flex;
  min-height: 50px;
  padding: 0 17px;
  align-items: center;
  gap: 9px;
  color: var(--white);
  background: var(--green-2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 28px;
  box-shadow: 0 14px 36px rgba(0, 81, 60, 0.26);
  font-size: 0.72rem;
  font-weight: 800;
  transition:
    transform 180ms ease,
    background 180ms ease;
}

.floating-whatsapp:hover {
  background: var(--green);
  transform: translateY(-3px);
}

.mobile-actions {
  display: none;
}

@media (max-width: 1120px) {
  :root {
    --container: min(100% - 40px, 1040px);
  }

  .desktop-nav {
    gap: 18px;
  }

  .desktop-nav a {
    font-size: 0.76rem;
  }

  .header-cta {
    display: none;
  }

  .hero__layout {
    grid-template-columns: minmax(0, 1fr) minmax(340px, 0.62fr);
    gap: 44px;
  }

  .hero h1 {
    font-size: clamp(3.35rem, 5.25vw, 4.75rem);
  }

  .hero__place {
    min-height: 570px;
    padding-inline: 31px;
  }

  .hero__place-head span {
    display: none;
  }

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

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

  .footer__top {
    grid-template-columns: 1.3fr 0.7fr 0.7fr;
  }

  .footer__contact {
    grid-column: 1 / -1;
  }

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

  .footer__contact h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 880px) {
  :root {
    --header-height: 72px;
  }

  .utility {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .brand img {
    width: 172px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: grid;
    width: 44px;
    height: 44px;
    padding: 10px;
    place-items: center;
    color: var(--green);
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 9px;
  }

  .menu-toggle svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.8;
  }

  .menu-close {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-open {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] .menu-close {
    display: block;
  }

  .mobile-nav {
    position: absolute;
    z-index: 98;
    inset: 100% 0 auto;
    display: block;
    height: calc(100dvh - var(--header-height));
    overflow-y: auto;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.98);
    opacity: 0;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
  }

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

  .mobile-nav__inner {
    display: flex;
    width: var(--container);
    margin-inline: auto;
    padding-block: 24px 44px;
    flex-direction: column;
  }

  .mobile-nav__inner > a:not(.button):not(.mobile-nav__phone) {
    padding-block: 13px;
    color: var(--navy);
    border-bottom: 1px solid var(--line);
    font-family: var(--display);
    font-size: 1.32rem;
    font-weight: 700;
  }

  .mobile-nav__inner > a[aria-current="page"] {
    color: var(--green-2);
  }

  .mobile-nav .button {
    margin-top: 24px;
  }

  .mobile-nav__phone {
    display: flex;
    min-height: 46px;
    margin-top: 17px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 800;
  }

  .hero__layout {
    min-height: auto;
    padding-block: 60px 70px;
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero__message {
    max-width: 720px;
  }

  .hero__place {
    width: min(100%, 500px);
    min-height: 550px;
    justify-self: start;
  }

  .intro-section {
    padding-top: 84px;
  }

  .intro-grid,
  .split-heading,
  .why-grid,
  .enterprise-panel,
  .location-grid,
  .cta-band__inner,
  .inner-hero__layout,
  .detail-grid,
  .documents-grid,
  .story-grid,
  .integration-grid,
  .b2b-grid,
  .form-layout,
  .quote-layout,
  .location-page__grid {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .split-heading,
  .why-grid,
  .location-grid,
  .detail-grid,
  .story-grid,
  .b2b-grid,
  .location-page__grid {
    gap: 50px;
  }

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

  .service-row {
    grid-template-columns: 54px minmax(190px, 0.8fr) 1fr 30px;
  }

  .why-visual {
    width: min(100%, 560px);
    min-height: 620px;
  }

  .story-poster {
    width: min(100%, 560px);
  }

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

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

  .enterprise-panel ul {
    padding-top: 10px;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }

  .inner-hero__layout {
    align-items: start;
  }

  .inner-hero__stamp {
    width: min(100%, 320px);
  }

  .info-panel {
    position: static;
  }

  .principles-grid,
  .sst-pillars__grid,
  .channels-grid,
  .arrival-grid {
    grid-template-columns: 1fr;
  }

  .principles-grid article,
  .principles-grid article:first-child,
  .principles-grid article:last-child {
    min-height: 240px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .principles-grid article:first-child {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
  }

  .principles-grid article:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .principles-grid .icon {
    margin-bottom: 35px;
  }

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

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

  .integration-flow {
    flex-wrap: wrap;
  }

  .integration-flow > span {
    min-width: calc(50% - 45px);
  }

  .quote-copy {
    padding-top: 0;
  }

  .quote-layout {
    gap: 60px;
  }

  .map-frame {
    min-height: 460px;
  }

  .channel {
    min-height: 230px;
  }
}

@media (max-width: 620px) {
  :root {
    --container: calc(100% - 32px);
    --radius-lg: 24px;
  }

  body {
    padding-bottom: calc(64px + env(safe-area-inset-bottom));
    font-size: 15px;
  }

  h1 {
    font-size: clamp(2.55rem, 11.5vw, 3.6rem);
  }

  h2 {
    font-size: clamp(2rem, 9.4vw, 2.85rem);
  }

  .section {
    padding-block: 68px;
  }

  .eyebrow {
    margin-bottom: 18px;
    font-size: 0.68rem;
  }

  .button {
    width: 100%;
    min-height: 52px;
  }

  .hero__layout {
    padding-block: 38px 56px;
    gap: 38px;
  }

  .hero__eyebrow {
    margin-bottom: 22px;
    flex-wrap: wrap;
    gap: 7px 12px;
    font-size: 0.61rem;
  }

  .hero__eyebrow span:last-child {
    padding-left: 0;
    border-left: 0;
    flex-basis: 100%;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 10.7vw, 3.35rem);
    line-height: 1.01;
  }

  .hero__lead {
    margin-bottom: 24px;
    font-size: 1rem;
    line-height: 1.58;
  }

  .cta-band__actions,
  .location-actions {
    width: 100%;
    flex-direction: column;
  }

  .hero__actions {
    display: grid;
    width: 100%;
    grid-template-columns: 1.08fr 0.92fr;
  }

  .hero__actions .button {
    min-height: 54px;
    padding-inline: 14px;
    gap: 9px;
    font-size: 0.72rem;
  }

  .hero__facts {
    margin-top: 27px;
    padding-top: 10px;
    grid-template-columns: 1fr;
  }

  .hero__facts > div,
  .hero__facts > a {
    min-height: 53px;
    padding-inline: 0;
  }

  .hero__facts > a {
    border-top: 1px solid rgba(0, 81, 60, 0.13);
    border-left: 0;
  }

  .hero__place {
    width: 100%;
    min-height: 395px;
    padding: 25px 24px 23px;
    clip-path: polygon(0 0, 90% 0, 100% 7%, 100% 100%, 10% 100%, 0 93%);
  }

  .hero__place-head img {
    width: 128px;
    height: 34px;
  }

  .hero__place-kicker {
    margin: 40px 0 12px;
    font-size: 0.59rem;
  }

  .hero__place-name {
    font-size: clamp(3.5rem, 17vw, 4.6rem);
  }

  .hero__place-route {
    top: 80px;
    right: -105px;
    transform: rotate(-13deg) scale(0.82);
  }

  .hero__place-address {
    padding-top: 14px;
  }

  .hero__place-address p {
    max-width: 190px;
  }

  .hero__place-address a {
    width: auto;
  }

  .hero__opening {
    margin-top: 14px;
    padding-top: 12px;
  }

  .hero__opening strong {
    font-size: 2.85rem;
  }

  .intro-section {
    padding-top: 68px;
  }

  .intro-grid,
  .split-heading {
    gap: 28px;
  }

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

  .service-row {
    min-height: 124px;
    padding: 20px 6px;
    grid-template-columns: 34px 1fr 24px;
  }

  .service-row__number {
    align-self: start;
    padding-top: 8px;
  }

  .service-row__title {
    align-self: start;
  }

  .service-row__text {
    padding: 8px 30px 0 0;
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .service-row > .icon {
    grid-column: 3;
    grid-row: 1;
  }

  .service-row:hover {
    padding-inline: 12px;
  }

  .section-end {
    justify-content: stretch;
  }

  .why-grid {
    gap: 44px;
  }

  .why-visual {
    min-height: 450px;
    padding: 30px 25px;
  }

  .why-visual blockquote {
    margin-bottom: 34px;
  }

  .why-visual__year strong {
    font-size: clamp(4.6rem, 23vw, 6.2rem);
  }

  .feature-list li {
    grid-template-columns: 38px 1fr;
  }

  .feature-list {
    margin-top: 34px;
  }

  .process__grid,
  .process__grid--three {
    grid-template-columns: 1fr;
  }

  .process__grid li,
  .process__grid li:nth-child(2) {
    min-height: 195px;
    padding: 30px 24px;
    border-right: 0;
  }

  .process__grid li > span {
    margin-bottom: 29px;
  }

  .enterprise-panel {
    padding: 30px 22px;
    gap: 32px;
  }

  .enterprise-panel__actions {
    align-items: stretch;
  }

  .enterprise-panel__actions > a:not(.button) {
    overflow-wrap: anywhere;
  }

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

  .cta-band__inner {
    gap: 30px;
  }

  .inner-hero {
    padding-block: 25px 72px;
  }

  .breadcrumb {
    margin-bottom: 46px;
  }

  .inner-hero h1 {
    margin-bottom: 22px;
    font-size: clamp(2.58rem, 11.4vw, 3.8rem);
  }

  .inner-hero__intro {
    margin-bottom: 28px;
    line-height: 1.62;
  }

  .inner-hero__layout {
    gap: 0;
  }

  .inner-hero__stamp {
    display: none;
  }

  .detail-grid {
    gap: 36px;
  }

  .info-panel {
    padding: 28px 24px;
  }

  .info-panel > .icon {
    margin-bottom: 38px;
  }

  .documents-grid {
    gap: 34px;
  }

  .faq-list summary {
    min-height: 80px;
    padding-block: 18px;
  }

  .faq-answer p {
    padding-right: 20px;
  }

  .story-poster {
    width: 100%;
    min-height: 430px;
    aspect-ratio: auto;
    padding: 26px 24px;
  }

  .story-poster__place > strong {
    font-size: clamp(3.7rem, 18vw, 5rem);
  }

  .principles-grid article {
    padding: 28px;
  }

  .service-catalog,
  .compare-grid,
  .glossary-flow,
  .aso-types__grid,
  .needs-grid {
    grid-template-columns: 1fr;
  }

  .service-catalog article {
    min-height: 275px;
  }

  .service-catalog article > span {
    margin-bottom: 44px;
  }

  .decision-list > a {
    grid-template-columns: 1fr 24px;
  }

  .decision-list > a span {
    grid-column: 1;
  }

  .decision-list > a strong {
    grid-column: 1;
  }

  .decision-list > a .icon {
    grid-row: 1 / 3;
    grid-column: 2;
  }

  .glossary-flow > div {
    min-height: 205px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .glossary-flow span {
    margin-bottom: 36px;
  }

  .aso-types article {
    min-height: 240px;
  }

  .aso-types article > span {
    margin-bottom: 38px;
  }

  .sst-pillars article {
    min-height: 275px;
    padding: 30px;
  }

  .integration-flow {
    display: grid;
    grid-template-columns: 1fr;
  }

  .integration-flow > span {
    min-width: 0;
  }

  .integration-flow > .icon {
    justify-self: center;
    transform: rotate(90deg);
  }

  .b2b-outcomes article {
    grid-template-columns: 110px 1fr;
  }

  .form-layout {
    gap: 36px;
  }

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

  .lead-form {
    padding: 24px 18px;
    border-radius: 14px;
  }

  .field {
    margin-bottom: 17px;
  }

  .form-submit {
    flex-direction: column;
    align-items: flex-start;
  }

  .form-submit p {
    max-width: none;
  }

  .channel {
    min-height: 215px;
    padding: 28px;
  }

  .contact-emails {
    padding: 26px;
  }

  .quote-layout {
    gap: 38px;
  }

  .quote-hero .breadcrumb {
    margin-bottom: 48px;
  }

  .map-frame {
    min-height: 360px;
  }

  .address-card {
    padding: 30px 24px;
  }

  .footer__top {
    padding-bottom: 54px;
    grid-template-columns: 1fr 1fr;
    gap: 34px 26px;
  }

  .footer__brand {
    grid-column: 1 / -1;
  }

  .footer__contact {
    display: flex;
    grid-column: 1 / -1;
  }

  .footer__bottom {
    padding-block: 20px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 6px;
  }

  .floating-whatsapp {
    display: none;
  }

  .site-footer {
    padding-top: 60px;
  }

  .mobile-actions {
    position: fixed;
    z-index: 95;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    min-height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
    color: var(--white);
    background: var(--navy);
    box-shadow: 0 -8px 26px rgba(9, 30, 62, 0.15);
    grid-template-columns: repeat(3, 1fr);
  }

  .mobile-actions a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.67rem;
    font-weight: 800;
  }

  .mobile-actions a:nth-child(2) {
    background: var(--green-2);
  }

  .mobile-actions .icon {
    width: 17px;
    height: 17px;
  }
}

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