@font-face {
  font-family: "Mohave";
  src: url("assets/fonts/Mohave-Bold.woff2") format("woff2"),
       url("assets/fonts/Mohave-Bold.woff") format("woff");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --rove-blue: #00548B;
  --deep-blue: #00548B;
  --orange: #f5a800;
  --red-orange: #c84a32;
  --dark: #1f1f1f;
  --white: #ffffff;
  --light-grey: #f4f4f4;
  --text-dark: #1e1e1e;
  --line-light: rgba(255, 255, 255, 0.42);
  --font-heading: "Mohave", Impact, "Arial Black", sans-serif;
  --font-body: "Barlow", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text-dark);
  background: var(--white);
  font-family: var(--font-body);
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.btn {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

p {
  margin: 0;
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.5;
  font-weight: 500;
}

strong {
  font-weight: 800;
}

.section {
  padding: clamp(78px, 7vw, 128px) clamp(20px, 5vw, 92px);
}

.hero {
  position: relative;
  height: 1000px;
  overflow: hidden;
  background: #00548B;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% + 40px);
  max-width: none;
  object-fit: cover;
  object-position: center top;
  transform: translate3d(0, var(--hero-y, 0px), 0) scale(1.015);
  will-change: transform;
}

/* Dark gradient behind top logo for readability */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 220px;
  background: linear-gradient(180deg, rgba(0, 84, 139, 0.38) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

/* White Rove logo — top centre */
.hero-logo {
  position: absolute;
  top: clamp(32px, 4vw, 56px);
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.hero-logo img {
  width: clamp(140px, 13vw, 230px);
  height: auto;
  display: block;
}

/* Left-side text content — vertically centred in the middle band */
.hero-content {
  position: absolute;
  z-index: 2;
  left: clamp(32px, 8vw, 160px);
  top: 30%;
  transform: translateY(-54%);
  width: min(820px, calc(100% - 64px));
}

.hero h1 {
  color: var(--rove-blue);
  font-size: clamp(3rem, 5vw, 6.8rem);
  line-height: 0.96;
  white-space: nowrap;
}

.hero-subtitle {
  margin-top: clamp(10px, 1.2vw, 18px);
  color: var(--text-dark);
  font-size: clamp(1rem, 1.15vw, 1.3rem);
  font-weight: 500;
  line-height: 1.3;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: clamp(28px, 3vw, 44px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 28px 11px;
  border: 0;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(0.88rem, 0.95vw, 1.05rem);
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, filter 220ms ease;
}

.btn-red {
  background: #c0392b;
}

.btn:hover,
.btn:focus-visible,
.download-section a:hover,
.download-section a:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn:focus-visible,
.download-section a:focus-visible,
.back-to-top:focus-visible {
  outline: 3px solid var(--rove-blue);
  outline-offset: 4px;
}

/* LEO logo — bottom left, always clear of h1 */
.hero-leo {
  position: absolute;
  z-index: 3;
  bottom: 20%;
  left: clamp(32px, 8vw, 160px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

}

.hero-leo img {
  width: auto;
  height: 132px;
  display: block;
}

.hero-leo span {
  color: var(--rove-blue);
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 0.75vw, 0.86rem);
  font-weight: 900;
  letter-spacing: 0.14em;
}

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

.about-inner {
  width: min(1380px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(48px, 5.4vw, 92px);
  align-items: center;
}

.about-image {
  margin: 0;
  overflow: hidden;
  background: var(--light-grey);
  height: clamp(320px, 32vw, 440px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.about-copy h2,
.why-section h2,
.live-section h2,
.download-section h2 {
  color: var(--rove-blue);
  font-size: clamp(3.1rem, 3.2vw, 4.7rem);
}

.about-copy p {
  max-width: 650px;
  margin-top: 26px;
  font-weight: 400;
}

.partner-logos {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 64px);
  margin-top: 32px;
  flex-wrap: wrap;
}

.partner-logos img {
  max-width: 120px;
  max-height: 120px;
}

.centered {
  text-align: center;
}

.section-heading {
  width: min(840px, 100%);
  margin: 0 auto;
}

.section-heading span {
  display: block;
  max-width: 760px;
  margin: 28px auto 0;
  font-size: clamp(1rem, 1.08vw, 1.17rem);
  line-height: 1.5;
}

.why-section {
  position: relative;
  min-height: clamp(700px, 52vw, 920px);
  overflow: hidden;
  background: #00548B;
}

.why-bg {
  position: absolute;
  inset: -5% 0 -5%;
  width: 100%;
  height: 135%;
  max-width: none;
  object-fit: cover;
  object-position: center bottom;
  transform: translate3d(0, var(--why-y, 0px), 0) scale(1.02);
  will-change: transform;
}

.why-overlay {
  display: none;
}

.why-content {
  position: relative;
  z-index: 2;
  width: min(1370px, calc(100% - 42px));
  margin: 0 auto;
  padding-top: clamp(82px, 7vw, 100px);
  text-align: center;
}

.benefits {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(18px, 2.1vw, 38px);
  margin-top: clamp(40px, 6vw, 64px);
}

.benefit {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.benefit p {
  font-weight: 400;
  line-height: 1.2;
  color: var(--text-dark);
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: clamp(50px, 5.4vw, 60px);
  flex-shrink: 0;
}

.benefit-icon img {
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Direct img inside benefit (no .benefit-icon wrapper) — match icon height */
.benefit > img {
  height: clamp(50px, 5.4vw, 60px);
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.download-section {
  background: var(--orange);
}

.download-section a {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 20vw, 370px);
  padding: 60px 22px;
  color: var(--text-dark);
  text-align: center;
  text-decoration: none;
  transition: transform 220ms ease, filter 220ms ease;
}

.download-section h2 {
  color: var(--text-dark);
}

.download-section p {
  margin-top: 8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: clamp(1.1rem, 1.5vw, 1.8rem);
}

.footer {
  color: rgba(255, 255, 255, 0.92);
  background: var(--rove-blue);
}

.footer-inner {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.7fr 1.4fr 0.9fr 1.5fr;
  gap: clamp(28px, 4vw, 70px);
  align-items: start;
  padding: clamp(60px, 6vw, 96px) 0 clamp(32px, 3.5vw, 52px);
}

.footer address {
  font-style: normal;
}

/* Col 1 — Developer */
.ft-developer {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.ft-dev-label {
  margin: 0 0 16px;
  font-size: clamp(0.85rem, 0.9vw, 1rem);
  opacity: 0.7;
}

.ft-leo-logo {
  width: clamp(54px, 5vw, 60px);
  object-fit: contain;
}

.ft-dev-name {
  margin: 10px 0 0;
  font-family: var(--font-heading);
  font-size: clamp(0.9rem, 1vw, 1.1rem);
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}

/* Col 2 & 4 — Contact lists */
.ft-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ft-contact-row {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.88rem, 0.95vw, 1.05rem);
}

.ft-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

/* Col 3 — Rove brand logo */
.ft-brand {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.ft-brand img {
  width: clamp(120px, 12vw, 180px);
  object-fit: contain;
}

/* Socials row */
.ft-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.ft-social-label {
  font-size: clamp(0.78rem, 0.85vw, 0.92rem);
  font-weight: 700;
  opacity: 0.7;
  margin-right: 4px;
  letter-spacing: 0.06em;
}

.ft-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 220ms ease;
}

.ft-socials a:hover {
  opacity: 0.7;
}

.ft-social-icon {
  display: block;
  width: 24px;
  height: 24px;
  min-width: 24px;
  min-height: 24px;
  max-width: 24px;
  max-height: 24px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  width: min(1360px, calc(100% - 44px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(18px, 2vw, 28px) 0 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a,
.footer-bottom span {
  font-size: 0.95rem;
}

.back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: var(--rove-blue);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.24);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 220ms ease, transform 220ms ease, background 220ms ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--orange);
}

/* ── Scroll-reveal animations ── */

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(38px);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-left {
  opacity: 0;
  transform: translateX(-48px);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-enabled .reveal-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-enabled .reveal-right {
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-enabled .reveal-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.js-enabled .reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 850ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 850ms cubic-bezier(0.22, 1, 0.36, 1);
}
.js-enabled .reveal-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays via data-delay attribute */
.js-enabled [data-delay="1"] { transition-delay: 100ms; }
.js-enabled [data-delay="2"] { transition-delay: 200ms; }
.js-enabled [data-delay="3"] { transition-delay: 300ms; }
.js-enabled [data-delay="4"] { transition-delay: 400ms; }
.js-enabled [data-delay="5"] { transition-delay: 500ms; }
.js-enabled [data-delay="6"] { transition-delay: 600ms; }

/* Hero load animations */
.reveal-on-load {
  animation: loadReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.load-delay-2 { animation-delay: 350ms; }
.load-delay-3 { animation-delay: 700ms; }

.parallax-media img {
  transform: translate3d(0, var(--image-y, 0px), 0) scale(1.03);
  will-change: transform;
}

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

/* ── A New Chapter for Muscat ── */

.chapter-section {
  position: relative;
  overflow: hidden;
  height: clamp(560px, 52vw, 900px);
}

.chapter-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 30%;
}

.chapter-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(36px, 5vw, 80px);
  align-content: start;
  align-items: start;
  padding: clamp(48px, 6vw, 96px) clamp(32px, 8vw, 160px);
}

.chapter-content h2 {
  color: var(--white);
  font-size: clamp(3.4rem, 5vw, 6.5rem);
  line-height: 0.92;
  margin: 0;
}

.chapter-text p {
  color: var(--white);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.5;
  font-weight: 400;
}

.chapter-text p + p {
  margin-top: clamp(16px, 1.5vw, 22px);
}

/* 3-column override for Why Invest */
.benefits-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

@media (max-width: 1180px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-copy {
    width: min(900px, 100%);
  }

  .chapter-section {
    height: clamp(560px, 120vw, 800px);
  }

  .chapter-content {
    grid-template-columns: 1fr;
    gap: clamp(20px, 3vw, 36px);
    padding-bottom: clamp(48px, 6vw, 80px);
  }

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

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}

@media (max-width: 820px) {
  .hero {
    height: 680px;
  }

  .hero-image {
    object-position: 60% top;
  }

  .hero h1 {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
    white-space: normal;
  }

  .hero-content {
    left: 22px;
    width: calc(100% - 44px);
    top: 42%;
  }

  .hero-leo img {
    height: 80px;
  }

  .hero-actions {
    max-width: 380px;
  }

  .btn {
    min-height: 50px;
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .about-inner {
    gap: 38px;
  }

  .chapter-section {
    height: clamp(600px, 110vw, 800px);
  }

  .chapter-bg {
    object-position: center 50%;
  }

  .chapter-content h2 {
    font-size: clamp(2.2rem, 8vw, 3.4rem);
  }

  .why-section {
    min-height: auto;
  }

  .why-bg {
    object-position: center bottom;
  }

  .why-content {
    padding-bottom: 320px;
  }

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

  .benefits-3 {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    align-items: center;
    text-align: center;
  }

  .ft-developer {
    align-items: center;
  }

  .ft-contact {
    align-items: center;
  }

  .ft-contact-row {
    justify-content: center;
  }

  .ft-socials {
    justify-content: center;
  }

  .ft-brand {
    justify-content: center;
    align-self: auto;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.rove-all-slider {
  --rove-blue: #00548B;
  --panel-grey: #d9d9d9;
  --white: #ffffff;
  --text-dark: #2b2b2b;
  --tab-muted: rgba(255, 255, 255, 0.24);

  padding: clamp(64px, 7vw, 110px) clamp(20px, 5vw, 92px);
  background: var(--rove-blue);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}

.rove-all-slider h2 {
  margin: 0 0 clamp(20px, 2vw, 28px);
  font-family: "Mohave", Impact, "Arial Black", sans-serif;
  font-size: clamp(3rem, 4vw, 4.8rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rove-all-intro {
  max-width: min(720px, calc(100% - 44px));
  margin: 0 auto clamp(36px, 3.6vw, 54px);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.5;
  font-weight: 400;
}

.rove-all-stage {
  width: min(1144px, calc(100vw - 44px));
  height: min(560px, 53vw);
  min-height: 420px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 328fr 468fr 336fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  text-align: left;
}

.rove-all-copy {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(34px, 3.3vw, 54px);
  background: var(--panel-grey);
  color: var(--text-dark);
  overflow: hidden;
}

.rove-all-copy h3 {
  margin: 0 0 clamp(22px, 2vw, 32px);
  color: var(--rove-blue);
  font-family: "Mohave", Impact, "Arial Black", sans-serif;
  font-size: clamp(2.05rem, 2.05vw, 2.65rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.rove-all-copy p {
  max-width: 24ch;
  margin: 0;
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw, 1.12rem);
  line-height: 1.36;
}

.rove-all-images {
  grid-column: 2 / 4;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: 468fr 336fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
}

.rove-img {
  margin: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.16);
}

.rove-img-top {
  grid-column: 1;
  grid-row: 1;
}

.rove-img-bottom {
  grid-column: 1;
  grid-row: 2;
}

.rove-img-tall {
  grid-column: 2;
  grid-row: 1 / 3;
}

.rove-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 900ms ease, opacity 420ms ease;
}

.rove-all-stage.is-changing .rove-all-copy h3,
.rove-all-stage.is-changing .rove-all-copy p {
  animation: roveTextIn 520ms ease both;
}

.rove-all-stage.is-changing .rove-img img {
  animation: roveImageIn 650ms ease both;
}

.rove-all-tabs {
  width: min(720px, calc(100vw - 44px));
  margin: clamp(42px, 4.2vw, 62px) auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 4vw, 72px);
  align-items: center;
}

.rove-all-tabs button {
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--tab-muted);
  cursor: pointer;
  font-family: "Mohave", Impact, "Arial Black", sans-serif;
  font-size: clamp(1.35rem, 1.35vw, 1.65rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  transition: color 240ms ease, transform 240ms ease;
}

.rove-all-tabs button:hover,
.rove-all-tabs button:focus-visible,
.rove-all-tabs button.is-active {
  color: var(--white);
  transform: translateY(-2px);
}

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

@keyframes roveImageIn {
  from {
    opacity: 0.2;
    transform: scale(1.08);
  }
  to {
    opacity: 1;
    transform: scale(1.02);
  }
}

@media (max-width: 900px) {
  .rove-all-stage {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .rove-all-copy,
  .rove-all-images {
    grid-column: 1;
    grid-row: auto;
  }

  .rove-all-copy p {
    max-width: 36ch;
  }

  .rove-all-images {
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
  }

  .rove-img-tall {
    grid-column: 1 / 3;
    grid-row: 2;
  }

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

@media (max-width: 560px) {
  .rove-all-slider {
    padding-top: 76px;
  }

  .rove-all-images {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .rove-img,
  .rove-img-top,
  .rove-img-bottom,
  .rove-img-tall {
    grid-column: 1;
    grid-row: auto;
    min-height: 240px;
  }

  .rove-all-tabs {
    gap: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rove-all-stage.is-changing .rove-all-copy h3,
  .rove-all-stage.is-changing .rove-all-copy p,
  .rove-all-stage.is-changing .rove-img img {
    animation: none;
  }

  .rove-img img,
  .rove-all-tabs button {
    transition: none;
  }
}




@media (max-width: 560px) {
  .section {
    padding: 56px 18px;
  }

  .hero {
    height: 600px;
  }

  .hero-logo img {
    width: clamp(110px, 36vw, 160px);
  }

  .hero-content {
    left: 18px;
    top: 30%;
    width: calc(100% - 36px);
  }

  .hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .chapter-section {
    height: clamp(560px, 130vw, 720px);
  }

  .chapter-content {
    padding: clamp(32px, 5vw, 56px) 18px;
  }

  .chapter-content h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .chapter-text p {
    font-size: clamp(0.92rem, 3.6vw, 1.1rem);
  }

  .hero-actions {
    gap: 8px;
    flex-direction: column;
    max-width: 260px;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-leo {
    left: 18px;
    bottom: 20px;
  }

  .hero-leo img {
    height: 60px;
  }

  .hero-leo span {
    font-size: 0.7rem;
  }

  .partner-logos img {
    max-width: 130px;
  }

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

  .why-content {
    padding-bottom: 200px;
  }

  .hero-leo {
    position: absolute;
    z-index: 3;
    bottom: 48px;
    left: clamp(32px, 8vw, 160px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 10px;
    padding: 10px 14px 8px;
}
}

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

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

  .hero-image,
  .why-bg,
  .parallax-media img {
    transform: none !important;
  }
}

.units-section {
  --unit-blue: #00548B;
  --unit-white: #ffffff;
  --unit-line: rgba(0, 84, 139, 0.18);

  background: var(--unit-white);
  color: var(--text-dark);
  padding: clamp(86px, 7.4vw, 118px) clamp(24px, 5vw, 92px) clamp(118px, 9vw, 172px);
  text-align: center;
}

.units-inner {
  width: min(1472px, 100%);
  margin: 0 auto;
}

.units-section .section-heading {
  width: min(880px, 100%);
  margin: 0 auto clamp(48px, 4.4vw, 72px);
}

.units-section .section-heading h2 {
  margin: 0 0 18px;
  color: var(--unit-blue);
  font-family: "Mohave", Impact, "Arial Black", sans-serif;
  font-size: 44px;
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.units-section .section-heading span {
  display: block;
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 1.2vw, 1.28rem);
  line-height: 1.45;
}

.unit-image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(12px, 1vw, 16px);
  margin: 0 auto clamp(52px, 5vw, 72px);
}

.unit-image-strip figure {
  height: clamp(220px, 16vw, 321px);
  margin: 0;
  overflow: hidden;
  background: var(--light-grey);
}

.unit-image-strip img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 700ms ease;
}

.unit-image-strip figure:hover img {
  transform: scale(1.04);
}

.unit-divider {
  width: 100%;
  height: 1px;
  margin: 0 0 clamp(38px, 3.4vw, 50px);
  background: var(--unit-line);
}

.unit-summary h3 {
  margin: 0 0 clamp(28px, 2.4vw, 34px);
  color: var(--unit-blue);
  font-family: "Mohave", Impact, "Arial Black", sans-serif;
  font-size: clamp(3.6rem, 4.1vw, 5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.unit-summary-grid {
  width: min(1226px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--unit-line);
}

.unit-summary-card {
  min-height: 128px;
  display: grid;
  place-content: center;
  padding: 24px 20px;
  border-right: 1px solid var(--unit-line);
}

.unit-summary-card:last-child {
  border-right: 0;
}

.unit-summary-card h4 {
  margin: 0 0 10px;
  color: var(--unit-blue);
  font-family: "Mohave", Impact, "Arial Black", sans-serif;
  font-size: clamp(2.2rem, 2.2vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.unit-summary-card p {
  margin: 0;
  color: var(--unit-blue);
  font-family: var(--font-body);
  font-size: clamp(1.1rem, 1.1vw, 1.3rem);
  line-height: 1.2;
}

@media (max-width: 900px) {
  .unit-image-strip {
    grid-template-columns: 1fr;
  }

  .unit-image-strip figure {
    height: clamp(240px, 48vw, 420px);
  }

  .unit-summary-grid {
    grid-template-columns: 1fr;
  }

  .unit-summary-card {
    min-height: 112px;
    border-right: 0;
    border-bottom: 1px solid var(--unit-line);
  }

  .unit-summary-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 560px) {
  .units-section {
    padding: 72px 20px 92px;
  }

  .units-section .section-heading h2 {
    font-size: clamp(2.6rem, 11vw, 3.6rem);
  }

  .unit-summary h3 {
    font-size: clamp(3rem, 13vw, 4rem);
  }

  .unit-image-strip {
    margin-bottom: 46px;
  }
}


/* ── Live Connected ── */

.live-section {
  background: var(--white);
  text-align: center;
}

.live-inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.live-section h2 {
  margin-bottom: clamp(14px, 1.4vw, 20px);
}

.live-desc {
  max-width: 680px;
  margin: 0 auto clamp(44px, 4.8vw, 72px);
  font-weight: 400;
}

.map-wrap {
  width: 100%;
  overflow: hidden;
  background: var(--light-grey);
  min-height: 300px;
}

.map-wrap img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}


/* ── LEO Developments ── */

.leo-section {
  position: relative;
  overflow: hidden;
  height: clamp(480px, 52vw, 800px);
}

.leo-bg {
  position: absolute;
  inset: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.leo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.leo-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: clamp(44px, 5.5vw, 80px) clamp(40px, 6vw, 100px);
  display: grid;
  grid-template-columns: auto 1fr 1.4fr;
  gap: clamp(20px, 3vw, 56px);
  align-content: start;
  align-items: start;
}

.leo-logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.leo-logo-block span {
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 0.8vw, 0.88rem);
  font-weight: 900;
  letter-spacing: 0.2em;
  color: var(--text-dark);
  text-transform: uppercase;
}

.leo-section-logo {
  width: clamp(56px, 5.5vw, 78px);
}

.leo-heading {
  color: var(--rove-blue);
  font-size: clamp(3.4rem, 5vw, 6.5rem);
  line-height: 0.92;
  margin: 0;
}

.leo-copy {
  padding-top: clamp(6px, 0.8vw, 12px);
}

.leo-copy p {
  font-size: clamp(1rem, 1.08vw, 1.16rem);
  line-height: 1.5;
  font-weight: 400;
  max-width: 560px;
}

.leo-copy p + p {
  margin-top: clamp(16px, 1.5vw, 22px);
}

@media (max-width: 900px) {
  .leo-section {
    height: auto;
    display: flex;
    flex-direction: column;
  }

  .leo-bg {
    position: relative;
    flex-shrink: 0;
    height: clamp(300px, 56vw, 520px);
    order: 2;
  }

  .leo-overlay {
    position: relative;
    order: 1;
    background: var(--white);
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    padding: clamp(44px, 5.5vw, 72px) clamp(24px, 5vw, 48px);
  }

  .leo-copy {
    grid-column: 1 / 3;
  }
}

@media (max-width: 560px) {
  .leo-overlay {
    grid-template-columns: 1fr;
    gap: clamp(16px, 4vw, 28px);
  }

  .leo-logo-block {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
  }

  .leo-copy {
    grid-column: 1;
  }
}
