@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Rajdhani:wght@600;700&display=swap");

:root {
  --bg: #080b10;
  --bg-deep: #05070a;
  --surface: #0f151e;
  --surface-2: #151e29;
  --surface-3: #1b2633;
  --line: #2a3542;
  --line-soft: #1d2732;
  --text: #f4f7fa;
  --muted: #aab5c2;
  --steel: #718198;
  --orange: #ff7900;
  --orange-light: #ff9c43;
  --green: #2dbb86;
  --light-bg: #f4f6f8;
  --light-surface: #ffffff;
  --light-text: #111923;
  --light-muted: #5b6775;
  --radius: 6px;
  --shadow: 0 22px 60px rgba(0, 0, 0, 0.32);
  --shell: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body,
button,
input,
select,
textarea {
  letter-spacing: 0;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

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

.utility-bar {
  min-height: 34px;
  color: #c7d0da;
  background: var(--bg-deep);
  border-bottom: 1px solid #171e27;
  font-size: 0.78rem;
}

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

.utility-inner > div {
  display: flex;
  gap: 22px;
}

.utility-inner a {
  font-weight: 700;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 11, 16, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
}

.header-inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
  min-height: 78px;
}

.brand-link {
  display: inline-flex;
  min-width: 230px;
}

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

.brand-lockup strong {
  color: #ffffff;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 2.1rem;
  font-style: italic;
  line-height: 0.9;
}

.brand-lockup strong span {
  color: var(--orange);
}

.brand-lockup small {
  margin-top: 7px;
  color: #aeb8c5;
  font-size: 0.68rem;
  font-style: italic;
  font-weight: 700;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.site-nav a {
  position: relative;
  min-height: 44px;
  padding: 12px 0;
  color: #d6dce4;
  font-size: 0.88rem;
  font-weight: 700;
}

.site-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #ffffff;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.header-cta,
.button-primary {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.header-cta:hover,
.header-cta:focus-visible,
.button-primary:hover,
.button-primary:focus-visible {
  background: #e66d00;
  border-color: #e66d00;
  transform: translateY(-2px);
}

.header-whatsapp-icon {
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
}

.button-ghost {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.26);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}

.menu-button {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  color: #ffffff;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.menu-button span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  min-height: min(720px, calc(100svh - 118px));
  overflow: hidden;
  background: #0b1119;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/trazzlog-hero.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.04);
  animation: hero-drift 16s ease-in-out infinite alternate;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 9, 15, 0.98) 0%, rgba(7, 13, 22, 0.92) 38%, rgba(8, 14, 23, 0.48) 68%, rgba(8, 11, 16, 0.16) 100%),
    linear-gradient(0deg, rgba(8, 11, 16, 0.76) 0%, rgba(8, 11, 16, 0.04) 48%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  align-items: center;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 64px;
}

.hero-copy {
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange-light);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.operation-copy h2,
.values-layout h2,
.quote-copy h2 {
  margin: 0;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  color: #ffffff;
  font-size: 7.8rem;
  font-style: italic;
  line-height: 0.78;
}

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

.hero-tagline {
  margin: 26px 0 0;
  color: #ffffff;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-description {
  max-width: 650px;
  margin: 18px 0 0;
  color: #c9d1db;
  font-size: 1.1rem;
}

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

.direction-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  margin-top: 14px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.direction-link span {
  color: var(--orange-light);
  font-size: 1rem;
  transition: transform 180ms ease;
}

.direction-link:hover span,
.direction-link:focus-visible span {
  transform: translateX(5px);
}

.proof-band {
  background: linear-gradient(90deg, #0d141d 0%, #111b28 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.proof-grid > * {
  display: block;
  min-width: 0;
  min-height: 116px;
  padding: 24px;
}

.proof-grid > * + * {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid strong {
  color: #ffffff;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.5rem;
  line-height: 1;
}

.proof-grid span {
  margin-top: 7px;
  color: #cbd4df;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
}

.proof-feature strong {
  color: var(--orange-light);
  font-size: 2.8rem;
  animation: metric-glow 3.6s ease-in-out infinite;
}

.proof-feature:nth-child(2) strong {
  animation-delay: -1.8s;
}

.proof-link {
  position: relative;
  transition:
    background-color 180ms ease,
    transform 180ms ease;
}

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

.proof-link:nth-child(3),
.proof-link:nth-child(3) strong {
  color: #ffffff;
}

.proof-link:nth-child(3) span {
  color: #cbd4df;
}

.proof-link:nth-child(3) b {
  color: var(--orange-light);
}

.proof-link:nth-child(4),
.proof-link:nth-child(4) strong,
.proof-link:nth-child(4) span,
.proof-link:nth-child(4) b {
  color: #111923;
}

.proof-link:nth-child(4) {
  background: linear-gradient(90deg, #ff7900 0%, #ff9c43 100%);
}

.proof-link:nth-child(4)::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: -34px;
  width: 35px;
  background: #ff7900;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.proof-link b {
  display: inline-block;
  animation: arrow-drift 1.8s ease-in-out infinite;
}

.proof-link:hover,
.proof-link:focus-visible {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-3px);
}

.proof-link:nth-child(4):hover,
.proof-link:nth-child(4):focus-visible {
  background: linear-gradient(90deg, #ff8a23 0%, #ffac62 100%);
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 850px;
  margin-bottom: 44px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.operation-copy h2,
.values-layout h2,
.quote-copy h2 {
  color: #ffffff;
  font-size: 3.6rem;
  line-height: 0.98;
}

.section-heading > p:not(.eyebrow),
.operation-copy > p:not(.eyebrow),
.quote-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.services-section {
  color: var(--light-text);
  background: var(--light-bg);
}

.services-section .section-heading h2,
.process-section .section-heading h2,
.units-section .section-heading h2 {
  color: var(--light-text);
}

.services-section .eyebrow,
.process-section .eyebrow,
.units-section .eyebrow {
  color: #c85f00;
}

.services-section .section-heading > p:not(.eyebrow),
.units-section .section-heading > p:not(.eyebrow) {
  color: var(--light-muted);
}

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

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  background: var(--light-surface);
  border: 1px solid #dce2e8;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(25, 39, 56, 0.08);
  transition:
    border-color 180ms ease,
    transform 180ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--orange);
}

.service-card:hover {
  border-color: rgba(255, 121, 0, 0.55);
  transform: translateY(-4px);
}

.service-card > span {
  color: #c85f00;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.service-card h3,
.process-grid h3,
.unit-card h3 {
  margin: 30px 0 12px;
  color: var(--light-text);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.65rem;
  line-height: 1.05;
}

.service-card p,
.process-grid p,
.unit-card p {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.92rem;
}

.service-card a {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 28px;
  color: var(--light-text);
  font-size: 0.82rem;
  font-weight: 800;
}

.service-card a b,
.map-link b {
  color: var(--orange);
}

.operation-band {
  padding: 104px 0;
  background: linear-gradient(125deg, #09101a 0%, #111c29 68%, #2a1607 100%);
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.operation-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 68px;
  align-items: center;
}

.operation-image {
  display: grid;
  place-items: center;
  width: min(100%, 620px);
  aspect-ratio: 1;
  margin-inline: auto;
  overflow: hidden;
  background: #0d1827;
  border-radius: 50%;
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.32);
}

.operation-image img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  transition: transform 600ms ease;
}

.operation-image:hover img {
  transform: scale(1.012);
}

.operation-copy > p:not(.eyebrow) {
  max-width: 600px;
}

.operation-copy ul {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.operation-copy li {
  display: grid;
  grid-template-columns: 122px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.operation-copy li strong {
  color: var(--orange-light);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.operation-copy li span {
  color: #d2d9e2;
  font-size: 0.9rem;
}

.process-section {
  color: var(--light-text);
  background: #ffffff;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #dce2e8;
  border-bottom: 1px solid #dce2e8;
}

.process-grid article {
  min-height: 250px;
  padding: 28px 24px;
}

.process-grid article + article {
  border-left: 1px solid #dce2e8;
}

.process-grid > article > span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #080b10;
  background: var(--orange);
  border-radius: 50%;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-weight: 700;
}

.process-grid h3 {
  margin-top: 34px;
}

.values-band {
  padding: 74px 0;
  color: #0b1017;
  background: linear-gradient(125deg, #ff9c43 0%, #ff7900 55%, #ffb14f 100%);
}

.values-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 72px;
  align-items: center;
}

.values-layout .eyebrow,
.values-layout h2 {
  color: #0b1017;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: rgba(8, 11, 16, 0.28);
  border: 1px solid rgba(8, 11, 16, 0.28);
}

.values-list div {
  min-height: 110px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.16);
}

.values-list strong,
.values-list span {
  display: block;
}

.values-list strong {
  color: rgba(8, 11, 16, 0.62);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.1rem;
}

.values-list span {
  margin-top: 14px;
  color: #080b10;
  font-weight: 800;
  line-height: 1.25;
}

.units-section {
  color: var(--light-text);
  background: var(--light-bg);
}

.units-map-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
  margin-bottom: 34px;
}

.units-map-figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #dce2e8;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(25, 39, 56, 0.09);
}

.units-map-figure img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  transition: transform 520ms ease;
}

.units-map-figure:hover img {
  transform: scale(1.018);
}

.units-map-figure figcaption {
  position: absolute;
  top: 18px;
  left: 18px;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(11, 17, 24, 0.9);
  border-left: 3px solid var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.units-map-copy h3 {
  margin: 12px 0 16px;
  color: var(--light-text);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.units-map-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.96rem;
}

.facility-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: clamp(30px, 4vw, 52px);
  margin: 52px 0 42px;
}

.facility-photo {
  position: relative;
  justify-self: center;
  width: min(calc(100% - 8px), 520px);
  margin: 4px;
  padding: 5px;
  overflow: hidden;
  background: var(--orange);
  border: 8px solid #123777;
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(25, 39, 56, 0.16);
}

.facility-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform 600ms ease;
}

.facility-photo:hover img {
  transform: scale(1.018);
}

.facility-photo figcaption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  width: fit-content;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  color: #ffffff;
  background: rgba(11, 17, 24, 0.9);
  border-left: 3px solid var(--orange);
  font-size: 0.76rem;
  font-weight: 800;
}

.facility-copy h3 {
  margin: 12px 0 16px;
  color: var(--light-text);
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 2.8rem;
  line-height: 1;
}

.facility-copy > p:not(.eyebrow) {
  margin: 0;
  color: var(--light-muted);
  font-size: 0.96rem;
}

.route-line {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 26px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid #dce2e8;
  box-shadow: 0 10px 28px rgba(25, 39, 56, 0.06);
  border-radius: var(--radius);
}

.route-line span {
  color: var(--light-text);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.route-line i {
  position: relative;
  display: block;
  width: 2px;
  height: 28px;
  margin: 6px 0 6px 8px;
  background: #cbd3dc;
}

.route-line i::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  transform: translate(-50%, 50%);
  animation: route-pulse 2.4s ease-out infinite;
}

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

.unit-card {
  display: grid;
  align-content: start;
  min-height: 335px;
  padding: 26px;
  background: #ffffff;
  border: 1px solid #dce2e8;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(25, 39, 56, 0.07);
}

.unit-card:nth-child(2) {
  border-color: rgba(255, 121, 0, 0.5);
}

.unit-card:nth-child(3) {
  border-color: rgba(45, 187, 134, 0.45);
}

.unit-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.unit-topline > span {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 50%;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.unit-card:nth-child(3) .unit-topline > span {
  background: var(--green);
}

.unit-topline small {
  color: var(--steel);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.unit-card h3 {
  margin-top: 26px;
  font-size: 2.15rem;
}

.unit-card p {
  min-height: 86px;
}

.unit-card > a:not(.map-link) {
  width: fit-content;
  margin-top: 18px;
  color: var(--light-text);
  font-size: 0.92rem;
  font-weight: 800;
}

.map-link {
  align-self: end;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 22px;
  color: #344252;
  font-size: 0.8rem;
  font-weight: 800;
}

.quote-band {
  padding: 104px 0;
  background: linear-gradient(130deg, #0a1018 0%, #101b29 70%, #25160b 100%);
  border-top: 1px solid var(--line-soft);
}

.quote-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 76px;
  align-items: start;
}

.quote-copy {
  position: sticky;
  top: 120px;
}

.contact-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.contact-list a {
  display: grid;
  gap: 4px;
  padding: 15px 0;
  color: #ffffff;
  border-bottom: 1px solid var(--line);
  font-size: 0.88rem;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.contact-list a span {
  color: var(--orange-light);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.quote-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form > label,
.requirements {
  min-width: 0;
}

.quote-form label {
  display: grid;
  gap: 7px;
  color: #ced6df;
  font-size: 0.78rem;
  font-weight: 700;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 12px;
  color: #ffffff;
  background: #0a0f16;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

select {
  color-scheme: dark;
}

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

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 121, 0, 0.14);
}

.requirements {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 16px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.requirements legend {
  padding: 0 7px;
  color: #ced6df;
  font-size: 0.78rem;
  font-weight: 700;
}

.requirements label {
  display: grid;
  grid-template-columns: 20px 1fr;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 7px 9px;
  background: var(--surface-2);
  border-radius: var(--radius);
}

.requirements input {
  width: 18px;
  min-height: 18px;
  margin: 0;
  padding: 0;
  accent-color: var(--orange);
}

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

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: transparent;
  font-size: 0.8rem;
  font-weight: 700;
}

.form-status.is-visible {
  color: var(--green);
}

.site-footer {
  padding: 48px 0 30px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: start;
  gap: 34px;
}

.footer-grid > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.footer-grid > div {
  display: flex;
  gap: 20px;
  color: #e6ebf1;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-grid small {
  grid-column: 1 / -1;
  padding-top: 24px;
  color: #6f7b89;
  border-top: 1px solid var(--line-soft);
  font-size: 0.72rem;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 50px;
  padding: 11px 16px;
  color: #ffffff;
  background: #168a62;
  border: 1px solid #2dbb86;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.42);
  font-size: 0.82rem;
  font-weight: 800;
}

.whatsapp-icon {
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: #117552;
}

.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 680ms ease,
    transform 680ms ease;
}

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

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.09) translate3d(-1.2%, -0.7%, 0);
  }
}

@keyframes metric-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 121, 0, 0);
  }

  50% {
    text-shadow: 0 0 18px rgba(255, 121, 0, 0.32);
  }
}

@keyframes arrow-drift {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(4px);
  }
}

@keyframes route-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 121, 0, 0.38);
  }

  70%,
  100% {
    box-shadow: 0 0 0 9px rgba(255, 121, 0, 0);
  }
}

@media (max-width: 1080px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    background: #0b1118;
    border: 1px solid var(--line);
    border-radius: 0 0 var(--radius) var(--radius);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-soft);
  }

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

  .header-cta {
    justify-self: end;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 680px);
  }

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

  .process-grid article:nth-child(3) {
    border-left: 0;
    border-top: 1px solid #dce2e8;
  }

  .process-grid article:nth-child(4) {
    border-top: 1px solid #dce2e8;
  }

  .operation-grid,
  .values-layout,
  .quote-layout {
    grid-template-columns: 1fr;
  }

  .operation-image {
    width: min(100%, 580px);
  }

  .operation-image img {
    min-height: 0;
  }

  .quote-copy {
    position: static;
  }

  .units-map-layout {
    grid-template-columns: minmax(0, 720px);
    align-items: start;
  }

  .units-map-copy,
  .facility-copy {
    max-width: 720px;
  }

  .facility-showcase {
    grid-template-columns: minmax(0, 720px);
    align-items: start;
  }

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

  .unit-card:last-child {
    grid-column: 1 / -1;
    min-height: 250px;
  }

  .unit-card p {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  body {
    padding-bottom: 72px;
  }

  .shell {
    width: calc(100% - 28px);
  }

  .utility-bar {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto auto;
    gap: 9px;
    min-height: 68px;
  }

  .brand-link {
    min-width: 0;
  }

  .brand-lockup strong {
    font-size: 1.7rem;
  }

  .brand-lockup small {
    display: none;
  }

  .header-cta {
    width: 46px;
    min-height: 46px;
    padding: 0;
  }

  .header-cta-label {
    display: none;
  }

  .header-whatsapp-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }

  .hero {
    min-height: min(670px, calc(100svh - 112px));
  }

  .hero-media {
    background-position: 66% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 9, 15, 0.97) 0%, rgba(7, 13, 22, 0.88) 58%, rgba(8, 14, 23, 0.4) 100%),
      linear-gradient(0deg, rgba(8, 11, 16, 0.88) 0%, rgba(8, 11, 16, 0.08) 55%);
  }

  .hero-inner {
    gap: 28px;
    padding-top: 48px;
    padding-bottom: 46px;
  }

  .hero h1 {
    font-size: 4.25rem;
    line-height: 0.86;
  }

  .hero-tagline {
    margin-top: 18px;
    font-size: 1.45rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
    margin-top: 24px;
  }

  .hero-actions .button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
    font-size: 0.8rem;
  }

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

  .proof-grid > * {
    padding: 18px 14px;
  }

  .proof-grid > :nth-child(3) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-left: 0;
  }

  .proof-grid > :nth-child(4) {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .section,
  .operation-band,
  .quote-band {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 30px;
  }

  .section-heading h2,
  .operation-copy h2,
  .values-layout h2,
  .quote-copy h2 {
    font-size: 2.65rem;
    line-height: 1;
  }

  .service-grid,
  .process-grid,
  .unit-grid,
  .quote-form,
  .requirements {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 260px;
    padding: 22px;
  }

  .operation-grid,
  .quote-layout {
    gap: 38px;
  }

  .operation-image,
  .operation-image img {
    min-height: 0;
  }

  .process-grid article {
    min-height: 210px;
    border-left: 0 !important;
    border-top: 1px solid #dce2e8;
  }

  .process-grid article:first-child {
    border-top: 0;
  }

  .values-band {
    padding: 62px 0;
  }

  .values-layout {
    gap: 34px;
  }

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

  .route-line {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 18px;
  }

  .units-map-copy h3 {
    font-size: 2.3rem;
  }

  .facility-copy h3 {
    font-size: 2.3rem;
  }

  .facility-showcase {
    gap: 26px;
    margin: 38px 0 34px;
  }

  .facility-photo {
    margin: 3px;
    padding: 3px;
    border-width: 5px;
  }

  .facility-photo figcaption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .units-map-figure figcaption {
    top: 12px;
    left: 12px;
    max-width: calc(100% - 24px);
  }

  .route-line i {
    width: 2px;
    height: 22px;
    margin-left: 9px;
  }

  .route-line i::after {
    right: auto;
    bottom: 0;
    left: 50%;
    top: auto;
    transform: translate(-50%, 50%);
  }

  .unit-card,
  .unit-card:last-child {
    grid-column: auto;
    min-height: 300px;
    padding: 22px;
  }

  .quote-form {
    padding: 20px;
  }

  .field-wide {
    grid-column: auto;
  }

  input,
  select,
  textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .requirements label {
    min-height: 46px;
  }

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

  .footer-grid > div {
    flex-wrap: wrap;
  }

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

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    left: 12px;
    justify-content: center;
    width: auto;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .hero h1 {
    font-size: 3.6rem;
  }

  .hero-tagline {
    font-size: 1.25rem;
  }

  .section-heading h2,
  .operation-copy h2,
  .values-layout h2,
  .quote-copy h2 {
    font-size: 2.25rem;
  }

}

@media (max-width: 360px) {
  .hero-actions {
    grid-template-columns: 1fr;
  }
}

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

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

  .motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
