:root {
  color-scheme: dark;
  --bg: #07100d;
  --bg-2: #0b1712;
  --panel: rgba(17, 38, 30, 0.64);
  --panel-strong: rgba(19, 55, 42, 0.8);
  --line: rgba(223, 255, 231, 0.13);
  --line-strong: rgba(223, 255, 231, 0.22);
  --line-bright: rgba(255, 122, 28, 0.52);
  --text: #f0f7ef;
  --muted: #9caea3;
  --green: #31553a;
  --green-bright: #73d785;
  --green-deep: #12291d;
  --orange: #ff7a1c;
  --orange-2: #ffae42;
  --steel: #9fb7c2;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius: 8px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 8%, rgba(49, 85, 58, 0.38), transparent 30rem),
    radial-gradient(circle at 90% 4%, rgba(255, 122, 28, 0.2), transparent 25rem),
    radial-gradient(circle at 50% 100%, rgba(115, 215, 133, 0.11), transparent 28rem),
    linear-gradient(135deg, #07100d 0%, #0a1410 52%, #10110d 100%);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.7), transparent 74%);
}

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

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

button {
  border: 0;
  cursor: pointer;
}

img {
  max-width: 100%;
}

.site-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
  padding: 106px 14px 14px;
}

main:focus {
  outline: none;
}

.glass-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.02)),
    var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px) saturate(140%);
}

.glass-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), transparent 22%, transparent 74%, rgba(255, 122, 28, 0.11));
  opacity: 0.52;
}

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

.site-header {
  display: grid;
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  width: min(calc(100% - 28px), 1472px);
  min-height: 78px;
  padding: 12px 14px;
  transform: translateX(-50%);
  border-color: rgba(223, 255, 231, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.035)),
    rgba(18, 41, 29, 0.58);
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(26px) saturate(165%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
}

.brand-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(115, 215, 133, 0.38), rgba(255, 122, 28, 0.24)),
    rgba(10, 30, 22, 0.84);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 14px 34px rgba(0, 0, 0, 0.32);
}

.brand-mark img {
  width: 88%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(0, 0, 0, 0.34));
}

.brand-copy strong,
.brand-copy small {
  display: block;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: 0;
}

.brand-copy small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.76rem;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.main-nav a {
  display: flex;
  align-items: center;
  min-height: 38px;
  flex-shrink: 0;
  padding: 0 8px;
  border: 1px solid transparent;
  border-radius: 7px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 800;
  white-space: nowrap;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    color 160ms ease;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--text);
  border-color: rgba(255, 122, 28, 0.34);
  background: linear-gradient(90deg, rgba(255, 122, 28, 0.18), rgba(115, 215, 133, 0.09));
}

.header-cta,
.primary-link,
.secondary-link,
.quiet-link,
.store-action,
.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 7px;
  font-weight: 900;
}

.header-cta,
.primary-link,
.store-action,
.submit-button {
  padding: 0 13px;
  background: linear-gradient(135deg, var(--orange), #ff9c2e);
  color: #1b0c00;
  box-shadow: 0 14px 34px rgba(255, 122, 28, 0.24);
}

.secondary-link,
.quiet-link {
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.quiet-link {
  color: var(--muted);
}

.menu-toggle {
  display: none;
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 900;
}

main {
  min-height: 70vh;
}

.page {
  display: grid;
  gap: 18px;
  padding-top: 18px;
}

.hero {
  display: grid;
  position: relative;
  min-height: calc(100vh - 122px);
  overflow: hidden;
  border-radius: var(--radius);
  align-items: end;
  padding: clamp(26px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(7, 16, 13, 0.96), rgba(7, 16, 13, 0.7) 48%, rgba(7, 16, 13, 0.88)),
    url("/assets/public-home-wide.webp") center / cover no-repeat,
    linear-gradient(90deg, rgba(7, 16, 13, 0.92), rgba(7, 16, 13, 0.52) 48%, rgba(7, 16, 13, 0.88)),
    radial-gradient(circle at 72% 44%, rgba(255, 122, 28, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(20, 59, 51, 0.96), rgba(7, 16, 13, 0.96));
  box-shadow: var(--shadow);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 38px),
    radial-gradient(circle at 64% 45%, rgba(115, 215, 133, 0.18), transparent 21rem);
  opacity: 0.68;
}

.hero::after {
  position: absolute;
  right: -4%;
  bottom: -4%;
  width: min(780px, 70vw);
  height: min(540px, 52vw);
  content: "";
  background: url("/assets/hvector-angle.webp") center / contain no-repeat;
  opacity: 0.58;
  filter: drop-shadow(0 34px 28px rgba(0, 0, 0, 0.48));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--orange-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: clamp(2.25rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 3vw, 2.35rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

p {
  color: var(--muted);
  line-height: 1.58;
}

.lead {
  width: min(760px, 100%);
  color: #dce9df;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  width: min(700px, 100%);
  margin-top: 30px;
}

.metric {
  min-height: 86px;
  padding: 14px;
}

.metric strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-size: 1.15rem;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.section {
  padding: clamp(24px, 4vw, 46px);
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 18px;
  align-items: start;
}

.section-copy {
  position: sticky;
  top: 112px;
}

.cards-grid,
.tech-grid,
.sector-grid,
.rent-grid,
.feature-grid {
  display: grid;
  gap: 12px;
}

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

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

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

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

.card,
.tech-card,
.sector-card,
.rent-card,
.feature-card,
.timeline-card,
.contact-card {
  padding: 18px;
}

.tech-card,
.rent-card,
.feature-card {
  min-height: 260px;
}

.card-tag,
.status-pill,
.rent-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0 9px;
  border: 1px solid rgba(255, 122, 28, 0.36);
  border-radius: 999px;
  color: var(--orange-2);
  background: rgba(255, 122, 28, 0.11);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.patent-line {
  display: block;
  margin-top: 14px;
  color: var(--green-bright);
  font-size: 0.82rem;
  font-weight: 900;
}

.product-visual {
  display: grid;
  position: relative;
  min-height: 220px;
  margin: 0 0 18px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 52% 40%, rgba(255, 122, 28, 0.18), transparent 15rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(115, 215, 133, 0.08)),
    rgba(0, 0, 0, 0.2);
}

.product-visual::before {
  position: absolute;
  inset: 0;
  content: "";
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 28px);
}

.product-visual img {
  position: relative;
  z-index: 1;
  max-height: 210px;
  object-fit: contain;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.35));
}

.product-visual.photo-cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  filter: none;
}

.product-visual.photo-cover.focus-bottom img {
  object-position: center bottom;
}

.product-visual.device-shot {
  background:
    radial-gradient(circle at 54% 45%, rgba(255, 122, 28, 0.16), transparent 16rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(115, 215, 133, 0.08)),
    rgba(0, 0, 0, 0.2);
}

.product-visual.device-shot img {
  width: 92%;
  height: 92%;
  max-height: none;
  object-fit: contain;
  object-position: center;
  filter: drop-shadow(0 24px 18px rgba(0, 0, 0, 0.35));
}

.product-visual.video-shot {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(115, 215, 133, 0.08)),
    rgba(0, 0, 0, 0.42);
}

.product-visual.video-shot video {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.product-visual.video-shot.focus-bottom video {
  object-position: center bottom;
}

.product-visual.video-contain {
  height: auto;
  min-height: 0;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(circle at 16% 82%, rgba(115, 215, 133, 0.12), transparent 15rem),
    radial-gradient(circle at 88% 18%, rgba(255, 122, 28, 0.12), transparent 15rem),
    #04100c;
}

.product-visual.video-contain video {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #04100c;
}

.tech-card .product-visual {
  min-height: 0;
  aspect-ratio: 16 / 9;
  margin-bottom: 14px;
}

.tech-card .product-visual img,
.tech-card .product-visual video {
  width: 100%;
  height: 100%;
  max-height: none;
}

.tech-card .product-visual.photo-cover img {
  object-fit: cover;
}

.tech-card .product-visual.device-shot img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.card-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 76%, rgba(115, 215, 133, 0.1), transparent 10rem),
    radial-gradient(circle at 88% 22%, rgba(255, 122, 28, 0.12), transparent 10rem),
    rgba(5, 15, 11, 0.56);
  object-fit: contain;
  filter: saturate(0.9) contrast(1.06);
}

.card-image--contain {
  padding: 8px;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 122, 28, 0.12), transparent 12rem),
    rgba(6, 18, 13, 0.52);
  object-fit: contain;
}

.card-image--home-cetreria {
  aspect-ratio: 16 / 7.4;
  object-position: 12% 42%;
}

.sector-card .card-image {
  height: clamp(150px, 14vw, 190px);
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.card-image--airport {
  object-position: 13% 43%;
}

.card-image--industry {
  object-position: center 46%;
}

.card-image--agriculture {
  object-position: center 52%;
}

.card-image--administration {
  object-position: center 42%;
}

.card-image--large {
  aspect-ratio: 16 / 9;
}

.feature-card--large {
  align-self: stretch;
}

.media-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: 18px;
  align-items: center;
}

.efalcon-design-section,
.efalcon-flight-section {
  display: grid;
  gap: 18px;
}

.efalcon-design-section .section-copy,
.efalcon-flight-section .section-copy {
  position: relative;
  top: auto;
  width: min(1040px, 100%);
}

.efalcon-design-section h1 {
  margin-bottom: 16px;
  font-size: clamp(2.2rem, 5.6vw, 5rem);
  line-height: 0.96;
}

.full-width-video {
  width: 100%;
  min-height: 0;
  margin: 0;
  aspect-ratio: 16 / 9;
}

.full-width-video video {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #04100c;
}

.spotlight-media {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background: rgba(4, 13, 10, 0.72);
}

.spotlight-media img {
  display: block;
  width: 100%;
  max-height: 460px;
  object-fit: contain;
  background: #08110d;
}

.fleet-software .product-visual {
  height: auto;
  min-height: 0;
  margin: 0;
  aspect-ratio: 16 / 9;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06), rgba(115, 215, 133, 0.08)),
    #04100c;
}

.fleet-software .product-visual video {
  height: 100%;
  min-height: 0;
  object-fit: contain;
  background: #04100c;
}

.software-section .product-visual {
  margin: 0;
  max-height: 520px;
}

.software-video video,
.efalcon-design-video video {
  filter: saturate(1.08) contrast(1.06);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.mini-card {
  padding: 14px;
}

.mini-card strong,
.mini-card span {
  display: block;
}

.mini-card strong {
  color: var(--text);
}

.mini-card span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hardware-section .section-copy p:last-child {
  color: #dce9df;
  font-size: 1.02rem;
}

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

.hardware-grid .mini-card {
  min-height: 132px;
}

.visual-falcon,
.visual-rover {
  position: relative;
  z-index: 1;
  width: min(370px, 88%);
  height: 150px;
}

.visual-falcon::before,
.visual-falcon::after {
  position: absolute;
  top: 58px;
  height: 22px;
  content: "";
  border-radius: 999px 12px 999px 12px;
  background: linear-gradient(90deg, rgba(255, 122, 28, 0.92), rgba(115, 215, 133, 0.74));
  box-shadow: 0 0 28px rgba(255, 122, 28, 0.24);
}

.visual-falcon::before {
  left: 16px;
  width: 170px;
  transform: rotate(-18deg);
}

.visual-falcon::after {
  right: 16px;
  width: 170px;
  transform: rotate(18deg);
}

.visual-falcon span {
  display: block;
  position: absolute;
  top: 48px;
  left: 50%;
  width: 94px;
  height: 44px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px 999px 18px 18px;
  background: rgba(6, 18, 13, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.visual-rover::before {
  position: absolute;
  top: 50px;
  left: 14%;
  width: 72%;
  height: 52px;
  content: "";
  border: 2px solid rgba(255, 122, 28, 0.68);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(49, 85, 58, 0.94), rgba(16, 40, 29, 0.94));
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.3);
}

.visual-rover::after {
  position: absolute;
  top: 112px;
  left: 20%;
  width: 60%;
  height: 20px;
  content: "";
  border-radius: 999px;
  background:
    radial-gradient(circle at 12% 50%, #111 0 12px, transparent 13px),
    radial-gradient(circle at 88% 50%, #111 0 12px, transparent 13px),
    linear-gradient(90deg, rgba(255, 122, 28, 0.94), rgba(115, 215, 133, 0.72));
}

.route-lines {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.route-lines span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--orange), transparent);
}

.route-lines span:nth-child(2) {
  width: 76%;
  margin-left: 18%;
  background: linear-gradient(90deg, var(--green-bright), transparent);
}

.route-lines span:nth-child(3) {
  width: 54%;
  margin-left: 6%;
}

.store-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
  margin-bottom: 18px;
}

.rent-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
}

.rent-card ul,
.check-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rent-card li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.rent-card li::before,
.check-list li::before {
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 14px rgba(255, 122, 28, 0.6);
}

.price-line {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 8px 0 0;
}

.price-line strong {
  font-size: 1.5rem;
}

.price-line span {
  color: var(--muted);
  font-size: 0.84rem;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
}

.compare-table th,
.compare-table td {
  padding: 13px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--muted);
  text-align: left;
}

.compare-table th {
  color: var(--orange-2);
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.compare-table td:first-child {
  color: var(--text);
  font-weight: 900;
}

.split-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: stretch;
}

.page-hero-copy {
  padding: clamp(28px, 4vw, 54px);
}

.page-hero-copy h1 {
  font-size: clamp(2rem, 5vw, 4.2rem);
}

.hero-copy-image {
  display: block;
  width: 100%;
  height: clamp(150px, 16vw, 230px);
  margin-top: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 76%, rgba(115, 215, 133, 0.1), transparent 10rem),
    radial-gradient(circle at 88% 22%, rgba(255, 122, 28, 0.12), transparent 10rem),
    rgba(5, 15, 11, 0.56);
  object-fit: contain;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
}

.hero-copy-video {
  height: clamp(190px, 16vw, 285px);
  margin-top: 18px;
  aspect-ratio: auto;
}

.hero-copy-video video {
  height: 100%;
}

.page-hero-visual {
  min-height: 420px;
}

.page-hero-visual .product-visual {
  height: 100%;
  min-height: 420px;
  margin: 0;
}

.page-hero-visual .product-visual img {
  width: 86%;
  max-height: 360px;
}

.page-hero-visual .product-visual.photo-cover img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
}

.page-hero-visual .product-visual.video-shot video {
  min-height: 420px;
}

.page-hero-visual .product-visual.video-contain video {
  min-height: 0;
  object-fit: contain;
}

.page-hero-visual .visual-falcon,
.page-hero-visual .visual-rover {
  transform: scale(1.22);
}

.wide-band {
  display: grid;
  gap: 18px;
}

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

.timeline-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 18px;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  grid-column: 1 / -1;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-weight: 800;
}

.form-status--success {
  color: #e8fff0;
  background: rgba(62, 170, 91, 0.18);
}

.form-status--error {
  color: #fff0e6;
  background: rgba(255, 122, 28, 0.16);
}

.field {
  display: grid;
  gap: 7px;
}

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

.field span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background: rgba(6, 18, 13, 0.72);
  color: var(--text);
  outline: none;
}

.field textarea {
  min-height: 132px;
  padding-top: 12px;
  resize: vertical;
}

.submit-button {
  grid-column: 1 / -1;
  width: fit-content;
  border: 0;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  margin-top: 18px;
  padding: 16px;
}

.footer-logo {
  display: grid;
  grid-column: 1 / -1;
  min-height: clamp(250px, 24vw, 430px);
  place-items: center;
  overflow: hidden;
  padding: clamp(10px, 1.4vw, 18px);
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 7px;
  background:
    radial-gradient(circle at 18% 78%, rgba(115, 215, 133, 0.2), transparent 13rem),
    radial-gradient(circle at 84% 16%, rgba(255, 122, 28, 0.18), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(235, 246, 239, 0.88) 48%, rgba(255, 240, 221, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 18px 44px rgba(0, 0, 0, 0.22);
}

.footer-logo-video {
  display: block;
  width: 100%;
  height: clamp(230px, 22vw, 400px);
  border-radius: 5px;
  object-fit: contain;
  filter: drop-shadow(0 12px 16px rgba(13, 38, 25, 0.22));
}

.footer strong,
.footer span,
.footer a {
  display: block;
}

.footer span,
.footer a {
  color: var(--muted);
}

.footer-contact {
  display: grid;
  gap: 6px;
  text-align: right;
}

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

  .main-nav {
    display: none;
    grid-column: 1 / -1;
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .site-header.nav-open .main-nav {
    display: flex;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    justify-self: end;
    align-items: center;
  }

  .section-grid,
  .split-hero,
  .media-spotlight,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .site-shell {
    padding: 86px 8px 8px;
  }

  main {
    min-height: 0;
  }

  .site-header {
    top: 8px;
    width: calc(100% - 16px);
    min-height: 68px;
    padding: 9px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
  }

  .brand-copy strong {
    max-width: 210px;
    font-size: 0.96rem;
    line-height: 1.05;
  }

  .brand-copy small {
    display: none;
  }

  .menu-toggle {
    min-height: 42px;
    padding: 0 13px;
  }

  .site-header.nav-open .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .main-nav a {
    justify-content: center;
    min-height: 44px;
    padding: 0 8px;
    white-space: normal;
    text-align: center;
  }

  .page {
    gap: 14px;
    padding-top: 12px;
  }

  .hero {
    min-height: auto;
    padding: 26px 18px 22px;
  }

  .hero-content {
    width: 100%;
  }

  h1 {
    font-size: 2.55rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 1.7rem;
    line-height: 1.08;
  }

  h3 {
    font-size: 1rem;
  }

  .hero::after {
    right: -26%;
    bottom: 2%;
    width: 112vw;
    opacity: 0.32;
  }

  .hero-actions,
  .section-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions a,
  .section-actions a,
  .store-action,
  .submit-button {
    width: 100%;
  }

  .hero-metrics,
  .tech-grid,
  .sector-grid,
  .rent-grid,
  .feature-grid,
  .mini-grid,
  .timeline,
  .contact-form,
  .footer {
    grid-template-columns: 1fr;
  }

  .store-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 20px 14px;
  }

  .card,
  .tech-card,
  .sector-card,
  .rent-card,
  .feature-card,
  .timeline-card,
  .contact-card {
    padding: 15px;
  }

  .product-visual {
    min-height: 200px;
  }

  .product-visual img {
    max-height: 190px;
  }

  .card-image {
    aspect-ratio: 16 / 9;
  }

  .card-image--home-cetreria,
  .sector-card .card-image {
    aspect-ratio: 16 / 9;
  }

  .card-image--large {
    aspect-ratio: 16 / 9;
  }

  .split-hero {
    gap: 12px;
  }

  .page-hero-copy {
    padding: 22px 18px;
  }

  .page-hero-copy h1 {
    font-size: 2.15rem;
    line-height: 1;
  }

  .hero-copy-image {
    height: 172px;
  }

  .hero-copy-video {
    height: 180px;
  }

  .page-hero-visual {
    min-height: 0;
  }

  .page-hero-visual .product-visual {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .page-hero-visual .product-visual img {
    width: 92%;
    height: 100%;
    max-height: none;
  }

  .page-hero-visual .product-visual.video-shot video {
    min-height: 0;
  }

  .fleet-software .product-visual,
  .fleet-software .product-visual video {
    min-height: 0;
  }

  .mini-card {
    padding: 13px;
  }

  .compare-table {
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }

  .compare-table th,
  .compare-table td {
    min-width: 170px;
  }

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

  .footer-logo {
    min-height: 124px;
  }

  .footer-logo-video {
    height: 118px;
  }

  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    max-width: 172px;
  }

  h1 {
    font-size: 2.2rem;
  }

  .lead {
    font-size: 0.98rem;
  }

  .hero {
    padding: 22px 16px 20px;
  }

  .hero::after {
    right: -38%;
    bottom: -1%;
    width: 126vw;
  }

  .page-hero-copy h1 {
    font-size: 1.92rem;
  }

  .hero-copy-image {
    height: 148px;
  }

  .hero-copy-video {
    height: 164px;
  }

  .page-hero-visual,
  .page-hero-visual .product-visual {
    min-height: 0;
  }

  .page-hero-visual .product-visual.video-shot video {
    min-height: 0;
  }

  .fleet-software .product-visual,
  .fleet-software .product-visual video {
    min-height: 0;
  }

  .card-image {
    aspect-ratio: 16 / 9;
  }

  .card-image--home-cetreria,
  .sector-card .card-image {
    aspect-ratio: 16 / 9;
  }

  .card-image--large {
    aspect-ratio: 16 / 9;
  }
}
