:root {
  --green-950: #07150d;
  --green-900: #0d2115;
  --green-800: #0b3a25;
  --green-700: #116b38;
  --green-600: #168046;
  --gold-500: #d99b14;
  --gold-400: #efbd43;
  --ink: #132017;
  --muted: #68736c;
  --line: #dbe3dc;
  --paper: #f7f8f4;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(7, 21, 13, 0.14);
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.08); }
}

@keyframes heroImageDrift {
  0%, 100% { transform: scale(1.02) translate3d(0, 0, 0); }
  50%      { transform: scale(1.08) translate3d(-1.2%, 0.8%, 0); }
}

@keyframes heroLineSweep {
  0%   { transform: translateX(-100%); opacity: 0; }
  18%  { opacity: 0.85; }
  72%  { opacity: 0.3; }
  100% { transform: translateX(100%); opacity: 0; }
}

@keyframes contentRise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  from { transform: translateX(-130%) skewX(-16deg); }
  to   { transform: translateX(130%) skewX(-16deg); }
}

@keyframes wordLift {
  from { opacity: 0; transform: translateY(0.52em) rotateX(28deg); }
  to   { opacity: 1; transform: translateY(0) rotateX(0); }
}

@keyframes wordLeave {
  from { opacity: 1; transform: translateY(0) rotateX(0); }
  to   { opacity: 0; transform: translateY(-0.42em) rotateX(-18deg); }
}

@keyframes copyReveal {
  from { opacity: 0; transform: translateY(18px); filter: blur(8px); }
  to   { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes copyLeave {
  from { opacity: 1; transform: translateY(0); filter: blur(0); }
  to   { opacity: 0; transform: translateY(-16px); filter: blur(7px); }
}

@keyframes markerSlide {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: minmax(130px, 220px) 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(219, 227, 220, 0.86);
  backdrop-filter: blur(16px);
  animation: fadeInDown 0.6s ease-out;
}

.brand img {
  width: 232px;
  height: auto;
  object-position: left center;
}

.main-nav {
  display: flex;
  justify-content: flex-end;
  gap: clamp(16px, 2.6vw, 34px);
  font-size: 0.83rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.main-nav a {
  color: var(--green-900);
  opacity: 0.82;
}

.main-nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 2px;
  background: var(--gold-400);
  transition: width 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--green-700);
  opacity: 1;
}

.language-switch {
  display: flex;
  align-items: center;
  padding: 4px;
  border: 1px solid var(--line);
  background: var(--white);
}

.lang-btn {
  min-width: 38px;
  height: 34px;
  border: 0;
  color: var(--green-900);
  background: transparent;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
}

.lang-btn.is-active {
  color: var(--white);
  background: var(--green-800);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 6px auto;
  background: var(--green-900);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: var(--green-950);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.hero::before {
  left: 0;
  right: 0;
  bottom: clamp(148px, 22vh, 250px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 189, 67, 0.82), transparent);
  animation: heroLineSweep 5.8s ease-in-out infinite;
}

.hero::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(120deg, transparent 12%, rgba(239, 189, 67, 0.08) 24%, transparent 38%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px 100%);
  background-size: 100% 100%, 120px 100%;
  opacity: 0.34;
  mix-blend-mode: screen;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero picture {
  overflow: hidden;
}

.hero picture img {
  object-fit: cover;
  object-position: center;
  will-change: transform;
  transform-origin: center;
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    scale(var(--parallax-scale, 1.16));
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(7, 21, 13, 0.82), rgba(7, 21, 13, 0.28) 56%, rgba(7, 21, 13, 0.12)),
    linear-gradient(0deg, rgba(7, 21, 13, 0.82), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100% - 36px));
  margin: 0 0 clamp(48px, 10vh, 110px) clamp(18px, 7vw, 92px);
  color: var(--white);
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(12px);
  margin: 0 0 14px;
  color: var(--gold-400);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  transition: opacity 0.45s ease, transform 0.45s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.eyebrow.is-visible,
.hero-content .eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.eyebrow.is-exiting:not(.hero-content .eyebrow) {
  opacity: 0;
  transform: translateY(-12px);
  transition-delay: 0ms;
}

.eyebrow::before {
  content: "";
  width: 0;
  height: 2px;
  background: currentColor;
  transition: width 0.52s ease;
}

.eyebrow.is-visible::before,
.hero-content .eyebrow::before {
  width: 34px;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.6rem, 6.8vw, 6.6rem);
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

@media (min-width: 721px) and (max-width: 1366px), (min-width: 721px) and (max-height: 820px) {
  .hero-content h1 {
    max-width: 680px;
    font-size: clamp(2.35rem, 5.4vw, 4.85rem);
    line-height: 1;
  }
}

.hero-content h1 {
  transform-origin: left center;
  transition: transform 0.46s cubic-bezier(0.2, 0.72, 0.2, 1), filter 0.46s ease, text-shadow 0.46s ease;
  will-change: transform, filter;
}

.hero-content h1.hero-title-scroll-down {
  transform: translate3d(0, -18px, 0) scale(0.95) skewY(-1deg);
  filter: saturate(1.16) contrast(1.04);
  text-shadow: 0 18px 42px rgba(239, 189, 67, 0.16);
}

.hero-content h1.hero-title-scroll-up {
  transform: translate3d(0, 10px, 0) scale(1.025) skewY(0.65deg);
  filter: saturate(1.04) contrast(1);
  text-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.fx-title {
  perspective: 900px;
}

.fx-word {
  display: inline-block;
  opacity: 0;
  transform-origin: bottom left;
}

.fx-title.is-visible .fx-word {
  animation: wordLift 0.64s cubic-bezier(0.2, 0.72, 0.2, 1) forwards;
  animation-delay: calc(var(--word-base-delay, 0ms) + (var(--word-index) * 70ms));
}

.fx-title.is-exiting .fx-word {
  animation: wordLeave 0.34s ease forwards;
  animation-delay: calc(var(--word-index) * 24ms);
}

.fx-copy {
  opacity: 0;
  transform: translateY(18px);
}

.fx-copy.is-visible {
  animation: copyReveal 0.72s ease forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

.fx-copy.is-exiting {
  animation: copyLeave 0.34s ease forwards;
  animation-delay: 0ms;
}

.fx-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.48s ease,
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.fx-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fx-card.is-exiting {
  opacity: 0;
  transform: translateY(-22px);
  transition-delay: 0ms;
}

.fx-card.is-visible:hover {
  transition-delay: 0ms;
}

.hero-content .eyebrow,
.hero-content h1,
.hero-content p:not(.eyebrow),
.hero-actions {
  opacity: 0;
  animation: contentRise 0.72s ease forwards;
}

.hero-content h1 {
  animation-delay: var(--reveal-delay, 100ms);
}

.hero-content p:not(.eyebrow) {
  animation-delay: var(--reveal-delay, 200ms);
}

.hero-actions {
  animation-delay: var(--reveal-delay, 300ms);
}

.hero-actions.is-visible {
  animation: contentRise 0.72s ease forwards;
  animation-delay: var(--reveal-delay, 300ms);
}

.hero-actions.is-exiting {
  opacity: 0;
  transform: translateY(-18px);
  animation: none;
  transition: opacity 0.32s ease, transform 0.32s ease;
  transition-delay: 0ms;
}

.hero-content p:not(.eyebrow) {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.03rem, 2vw, 1.3rem);
  line-height: 1.62;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  overflow: hidden;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: -35% -55%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.36), transparent);
  transform: translateX(-130%) skewX(-16deg);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(7, 21, 13, 0.2);
}

.btn:hover::after {
  animation: shimmer 0.72s ease;
}

.btn-primary {
  color: var(--green-950);
  background: var(--gold-400);
}

.btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.52);
  background: rgba(255, 255, 255, 0.08);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--green-950);
  color: var(--white);
}

.trust-band div {
  position: relative;
  min-height: 132px;
  padding: 32px clamp(22px, 4vw, 56px);
  overflow: hidden;
  background: var(--green-900);
  transition: background 0.28s ease, transform 0.28s ease;
}

.trust-band div::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.32s ease;
}

.trust-band div:hover {
  background: var(--green-800);
  transform: translateY(-4px);
}

.trust-band div:hover::after {
  transform: scaleX(1);
}

.trust-band strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-400);
  font-size: 0.92rem;
  text-transform: uppercase;
  transition: transform 0.28s ease, color 0.28s ease;
}

.trust-band span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.55;
  transition: color 0.28s ease;
}

.trust-band div:hover strong {
  color: var(--white);
  transform: translateX(6px);
}

.trust-band div:hover span {
  color: rgba(255, 255, 255, 0.9);
}

.section {
  --section-x: clamp(18px, 5vw, 72px);
  padding: clamp(70px, 10vw, 126px) var(--section-x);
}

.section-heading {
  max-width: 980px;
  margin-bottom: clamp(32px, 6vw, 62px);
}

.intro-marquee,
.services-marquee {
  width: auto;
  max-width: none;
  margin-left: calc(var(--section-x) * -1);
  margin-right: calc(var(--section-x) * -1);
  padding: clamp(20px, 3vw, 34px) 0;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 21, 13, 0.98), rgba(13, 33, 21, 0.96)),
    var(--green-900);
  border-top: 1px solid rgba(239, 189, 67, 0.28);
  border-bottom: 1px solid rgba(239, 189, 67, 0.28);
  box-shadow: 0 20px 46px rgba(7, 21, 13, 0.16);
}

.intro-marquee .eyebrow,
.services-marquee .eyebrow {
  margin-left: clamp(18px, 5vw, 72px);
}

.section-heading h2,
.alliance-copy h2,
.image-break h2,
.contact-card h2 {
  position: relative;
  margin-bottom: 0;
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 1;
  letter-spacing: 0;
}

.marquee-title {
  display: flex;
  width: max-content;
  max-width: none;
  white-space: nowrap;
  color: var(--white);
  animation: marqueeLeft 24s linear infinite;
  will-change: transform;
}

.marquee-title span {
  flex: 0 0 auto;
  padding-right: clamp(48px, 8vw, 120px);
}

.marquee-title::after {
  display: none;
}

.section-heading h2::after,
.alliance-copy h2::after,
.image-break h2::after,
.contact-card h2::after {
  content: "";
  display: block;
  width: clamp(68px, 10vw, 140px);
  height: 4px;
  margin-top: 22px;
  background: linear-gradient(90deg, var(--gold-400), transparent);
  transform: scaleX(0);
  transform-origin: left;
}

.section-heading .marquee-title::after {
  content: none;
  display: none;
}

.section-heading h2.is-visible::after,
.alliance-copy h2.is-visible::after,
.image-break h2.is-visible::after,
.contact-card h2.is-visible::after {
  animation: markerSlide 0.74s ease 0.22s forwards;
}

.section-heading h2.is-exiting::after,
.alliance-copy h2.is-exiting::after,
.image-break h2.is-exiting::after,
.contact-card h2.is-exiting::after {
  transform: scaleX(0);
  transition: transform 0.28s ease;
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  gap: clamp(22px, 4vw, 52px);
}

.text-panel,
.mission-stack article,
.service-card,
.contact-card {
  box-shadow: var(--shadow);
}

.text-panel {
  position: relative;
  min-height: 440px;
  padding: clamp(30px, 5vw, 56px);
  overflow: hidden;
  background: var(--white);
}

.text-panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-400), var(--green-700));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.46s ease;
}

.text-panel:hover::before {
  transform: scaleY(1);
}

.text-panel h3 {
  margin-bottom: 24px;
  color: var(--green-700);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  transition: transform 0.28s ease, color 0.28s ease;
}

.text-panel:hover h3 {
  color: var(--green-900);
  transform: translateX(8px);
}

.text-panel p,
.mission-stack p,
.service-card p,
.alliance-copy p,
.image-break p,
.contact-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.mission-stack {
  display: grid;
  gap: 22px;
}

.mission-stack article {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 208px;
  padding: clamp(28px, 4vw, 46px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-700);
}

.mission-stack article::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(239, 189, 67, 0.18), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mission-stack article:hover {
  transform: translateY(-5px);
}

.mission-stack article:hover::before {
  opacity: 1;
}

.mission-stack article:nth-child(2) {
  background: var(--green-950);
}

.mission-stack span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 20px;
  color: var(--gold-400);
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.mission-stack p {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.83);
}

.services-section {
  background: var(--white);
}

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

.service-card {
  position: relative;
  min-height: 310px;
  padding: 30px;
  overflow: hidden;
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(239, 189, 67, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(7, 21, 13, 0.18);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 5px;
  background: var(--green-700);
}

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

.service-card.highlighted {
  color: var(--white);
  background: var(--green-900);
  border-color: var(--green-900);
}

.service-card.highlighted p {
  color: rgba(255, 255, 255, 0.77);
}

.service-card.highlighted::after {
  background: var(--gold-400);
}

.service-mark {
  opacity: 0;
  transform: translateY(12px);
  margin-bottom: 58px;
  color: var(--gold-500);
  font-size: 0.86rem;
  font-weight: 800;
  transition: opacity 0.42s ease, transform 0.28s ease, color 0.28s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.service-mark.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.service-mark.is-exiting {
  opacity: 0;
  transform: translateY(-12px);
  transition-delay: 0ms;
}

.service-card h3 {
  min-height: 58px;
  margin-bottom: 14px;
  font-size: 1.25rem;
  transition: transform 0.28s ease;
}

.service-card:hover .service-mark {
  color: var(--green-700);
  transform: translateY(-6px);
  transition-delay: 0ms;
}

.service-card.highlighted:hover .service-mark {
  color: var(--gold-400);
}

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

.alliance {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  min-height: 620px;
  color: var(--white);
  background: var(--green-950);
}

.alliance-image {
  min-height: 420px;
  background: var(--white);
}

.alliance-image img {
  --parallax-scale: 1.08;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: clamp(20px, 4vw, 52px);
  background: #f4f4f4;
  will-change: transform;
  transition: filter 0.34s ease;
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    scale(var(--parallax-scale));
}

.alliance:hover .alliance-image img {
  --parallax-scale: 1.12;
  filter: saturate(1.08) contrast(1.03);
}

.alliance-copy {
  align-self: center;
  padding: clamp(44px, 8vw, 92px);
}

.alliance-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  max-width: 720px;
  margin-top: 24px;
}

.alliance-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.alliance-stats span {
  opacity: 0;
  transform: translateY(12px);
  padding: 12px 16px;
  color: var(--green-950);
  background: var(--gold-400);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: opacity 0.42s ease, transform 0.24s ease, box-shadow 0.24s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.alliance-stats span.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.alliance-stats span.is-exiting {
  opacity: 0;
  transform: translateY(-12px);
  transition-delay: 0ms;
}

.alliance-stats span:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(239, 189, 67, 0.22);
  transition-delay: 0ms;
}

.image-break {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  padding: clamp(26px, 6vw, 78px);
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.image-break img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform;
  transform-origin: center;
  transform:
    translate3d(var(--parallax-x, 0px), var(--parallax-y, 0px), 0)
    scale(var(--parallax-scale, 1.18));
}

.image-break::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(7, 21, 13, 0.82), rgba(7, 21, 13, 0.08) 58%);
}

.image-break div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.image-break p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

.contact-section {
  background: var(--paper);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 5vw, 76px);
  padding: clamp(34px, 7vw, 72px);
  color: var(--white);
  background: var(--green-900);
}

.contact-card p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.76);
}

.contact-list {
  display: grid;
  gap: 18px;
  align-content: center;
}

.contact-list a,
.contact-list address {
  position: relative;
  display: block;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.9);
  font-style: normal;
  line-height: 1.55;
  transition: color 0.24s ease, transform 0.24s ease;
}

.contact-list a::after,
.contact-list address::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.contact-list a:hover {
  color: var(--gold-400);
  transform: translateX(6px);
}

.contact-list a:hover::after,
.contact-list address:hover::after {
  transform: scaleX(1);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.72);
  background: var(--green-950);
  font-size: 0.92rem;
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--white);
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(7, 21, 13, 0.28);
  animation: pulse 2s ease-in-out infinite;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  animation: none;
  transform: translateY(-3px);
  background: #1ebe5d;
  box-shadow: 0 20px 42px rgba(7, 21, 13, 0.34);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
  fill: currentColor;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 180px auto auto;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 18px 20px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
  }

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

  .language-switch {
    justify-self: end;
  }

  .intro-grid,
  .alliance,
  .contact-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    min-height: 68px;
    padding: 10px 14px;
  }

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

  .language-switch {
    padding: 3px;
  }

  .lang-btn {
    min-width: 32px;
    height: 30px;
  }

  .hero {
    min-height: 760px;
  }

  .hero::before {
    bottom: 270px;
  }

  .hero::after {
    background-size: 100% 100%, 86px 100%;
    opacity: 0.22;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(7, 21, 13, 0.9), rgba(7, 21, 13, 0.34) 70%),
      linear-gradient(90deg, rgba(7, 21, 13, 0.58), rgba(7, 21, 13, 0.1));
  }

  .hero-content {
    width: calc(100% - 28px);
    margin: 0 14px 42px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.05rem, 10.5vw, 3.15rem);
    line-height: 1.02;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .trust-band,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .text-panel {
    min-height: auto;
  }

  .mission-stack article,
  .service-card {
    min-height: auto;
  }

  .service-mark {
    margin-bottom: 34px;
  }

  .alliance-copy,
  .alliance-image img {
    padding: 28px 18px;
  }

  .alliance-stats span {
    width: 100%;
    text-align: center;
  }

  .image-break {
    min-height: 560px;
  }

  .footer {
    flex-direction: column;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 420px) {
  .hero {
    min-height: 700px;
  }

  .hero-content {
    margin-bottom: 34px;
  }

  h1 {
    font-size: clamp(1.95rem, 10vw, 2.55rem);
  }

  .hero-content p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }
}

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

  .hero picture img,
  .hero-content h1,
  .image-break img {
    transform: none;
  }

  .alliance-image img {
    transform: none;
  }

  .marquee-title {
    animation: none;
    transform: none;
  }

  .fx-word,
  .fx-copy,
  .fx-card,
  .eyebrow,
  .hero-actions,
  .service-mark,
  .alliance-stats span {
    opacity: 1;
    transform: none;
    filter: none;
  }
}
