:root {
  --ink: #07100b;
  --black: #050705;
  --panel: #101612;
  --green: #00a859;
  --green-dark: #06723f;
  --lime: #b8f34b;
  --mint: #eafff2;
  --paper: #ffffff;
  --steel: #f3f6f4;
  --ash: #dfe8e2;
  --muted: #5f6d65;
  --amber: #f4b943;
  --danger: #cb3c3c;
  --line: rgba(7, 16, 11, 0.12);
  --shadow: 0 22px 60px rgba(7, 16, 11, 0.18);
  --radius: 8px;
  --header-height: 84px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.modal-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

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

button {
  cursor: pointer;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section.tight {
  padding: 64px 0;
}

.band {
  background: var(--steel);
}

.dark-band {
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 168, 89, 0.16), transparent 34%),
    linear-gradient(180deg, #07100b 0%, #101612 100%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  content: "";
  background: var(--green);
}

.dark-band .eyebrow {
  color: var(--lime);
}

.section-head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section-head.center .eyebrow {
  justify-content: center;
}

.section-head.center .eyebrow::before {
  display: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: inherit;
  line-height: 1.08;
}

h1 {
  max-width: 980px;
  font-size: clamp(2.6rem, 5.6vw, 6rem);
  font-weight: 900;
}

h2 {
  font-size: clamp(2rem, 3.8vw, 3.7rem);
  font-weight: 880;
}

h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 820;
}

p {
  margin: 0;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
}

.dark-band .lead {
  color: rgba(255, 255, 255, 0.78);
}

.text-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 54px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--green);
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(0, 168, 89, 0.24);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 16px 32px rgba(0, 168, 89, 0.28);
}

.btn.secondary {
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: none;
}

.btn.secondary:hover,
.btn.secondary:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.btn.dark {
  color: var(--paper);
  background: var(--black);
  box-shadow: 0 14px 28px rgba(7, 16, 11, 0.24);
}

.btn.dark:hover,
.btn.dark:focus-visible {
  background: #142219;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  color: var(--paper);
  background: var(--green-dark);
  border-radius: var(--radius);
  transform: translateY(-130%);
}

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

.site-topbar {
  color: rgba(255, 255, 255, 0.82);
  background: var(--black);
  font-size: 0.86rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 38px;
}

.topbar-list {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.topbar-list span {
  color: var(--lime);
  font-weight: 800;
}

.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}

.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.18s ease;
}

.topbar-contact a:hover {
  color: var(--lime);
}

.topbar-contact a svg {
  width: 13px;
  height: 13px;
  color: var(--lime);
  flex-shrink: 0;
}

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

.site-header.is-scrolled {
  box-shadow: 0 14px 30px rgba(7, 16, 11, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  font-weight: 900;
}

.brand-mark {
  display: grid;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--black);
  background: linear-gradient(135deg, var(--lime), var(--green));
  border-radius: var(--radius);
  font-size: 1.05rem;
  box-shadow: 0 12px 24px rgba(0, 168, 89, 0.24);
}

.brand small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 750;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.primary-nav a {
  padding: 10px 9px;
  color: #203027;
  border-radius: var(--radius);
  font-size: 0.91rem;
  font-weight: 790;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a.active {
  color: var(--green-dark);
  background: rgba(0, 168, 89, 0.09);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
}

.hero-slider {
  position: relative;
  min-height: min(900px, calc(100svh - var(--header-height) - 38px));
  height: calc(100svh - var(--header-height) - 38px);
  max-height: 960px;
  overflow: hidden;
  color: var(--paper);
  background: var(--black);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms ease;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.hero-slide::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 7, 5, 0.88) 0%, rgba(5, 7, 5, 0.62) 42%, rgba(5, 7, 5, 0.22) 100%),
    linear-gradient(0deg, rgba(5, 7, 5, 0.68) 0%, transparent 34%);
}

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

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(1.05) contrast(1.02);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 104px 0 160px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 7px 12px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.hero-content .lead {
  max-width: 720px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.12rem, 1.8vw, 1.45rem);
}

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

.hero-dots {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 44px;
  z-index: 2;
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 42px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.28);
}

.hero-dot.active {
  background: var(--lime);
}

/* Hero Progress Bar */
.hero-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.12);
  z-index: 10;
  overflow: hidden;
}

.hero-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--lime);
  transition: width linear;
}

/* Hero Slide Counter */
.hero-counter {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 70px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(0, 0, 0, 0.35);
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.hero-counter-current {
  color: var(--lime);
  font-size: 0.92rem;
}

.hero-counter-sep {
  color: rgba(255, 255, 255, 0.45);
  margin: 0 1px;
}

.hero-proof {
  position: absolute;
  left: max(16px, calc((100vw - 1180px) / 2));
  right: max(16px, calc((100vw - 1180px) / 2));
  bottom: 22px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  max-width: 760px;
}

.proof-item {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
}

.proof-item strong {
  display: block;
  color: var(--lime);
  line-height: 1;
}

.proof-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.25;
}

.breadcrumb-hero {
  position: relative;
  display: grid;
  min-height: 430px;
  overflow: hidden;
  color: var(--paper);
  background: var(--black);
  align-items: end;
}

.breadcrumb-hero::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 7, 5, 0.9), rgba(5, 7, 5, 0.36));
}

.breadcrumb-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
  padding: 120px 0 72px;
}

.breadcrumb-content p {
  max-width: 760px;
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--lime);
  font-weight: 850;
}

.crumbs a {
  color: rgba(255, 255, 255, 0.84);
}

.feature-card,
.service-card,
.product-card,
.client-card,
.blog-card,
.faq-item,
.contact-panel,
.gallery-card,
.stat-card,
.testimonial {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

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

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

.feature-card {
  padding: 26px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 168, 89, 0.32);
  box-shadow: 0 18px 40px rgba(7, 16, 11, 0.1);
}

.feature-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  place-items: center;
  color: var(--green-dark);
  background: rgba(0, 168, 89, 0.1);
  border-radius: var(--radius);
}

.feature-card h3,
.service-card h2,
.service-card h3,
.blog-card h2,
.blog-card h3,
.client-card h3 {
  margin-bottom: 12px;
}

.service-card h2,
.blog-card h2 {
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-weight: 820;
}

.feature-card p,
.service-card p,
.blog-card p,
.client-card p {
  color: var(--muted);
}

.media-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--black);
}

.media-panel img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 16px;
  color: var(--paper);
  background: rgba(5, 7, 5, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
}

.media-caption strong {
  color: var(--lime);
  font-size: 1.45rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.stat-card {
  padding: 24px;
}

.stat-card strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.stat-card span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 740;
}

.service-card {
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 168, 89, 0.32);
  box-shadow: 0 22px 48px rgba(7, 16, 11, 0.11);
}

.service-image {
  position: relative;
  height: 185px;
  overflow: hidden;
  background: var(--black);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 380ms ease;
}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-icon {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: var(--radius);
}

.service-body {
  padding: 24px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.tag-list span,
.product-chip,
.area-chip {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  color: var(--green-dark);
  background: rgba(0, 168, 89, 0.09);
  border: 1px solid rgba(0, 168, 89, 0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 820;
}

.infrastructure-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 42px;
  align-items: start;
}

.capacity-board {
  padding: 34px;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(0, 168, 89, 0.28), rgba(7, 16, 11, 0.08)),
    var(--black);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.capacity-board h3 {
  color: var(--lime);
}

.capacity-board ul,
.check-list,
.plain-list {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.capacity-board li,
.check-list li,
.plain-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.capacity-board li svg,
.check-list li svg {
  flex: 0 0 18px;
  width: 18px;
  margin-top: 4px;
  color: var(--green);
}

.capacity-math {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.math-cell {
  min-height: 112px;
  padding: 18px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
}

.math-cell strong {
  display: block;
  color: var(--lime);
  font-size: 1.75rem;
  line-height: 1;
}

.math-cell span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.86rem;
}

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

.product-card {
  min-height: 118px;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(0, 168, 89, 0.08), transparent 58%),
    var(--paper);
}

.product-card h3 {
  font-size: 1.05rem;
}

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

.industry-item {
  display: flex;
  min-height: 86px;
  align-items: center;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.industry-item svg {
  flex: 0 0 24px;
  color: var(--lime);
}

.client-rail {
  overflow: hidden;
  padding: 14px 0;
}

.client-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: marquee 32s linear infinite;
}

.client-logo {
  display: grid;
  min-width: 230px;
  height: 86px;
  place-items: center;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-weight: 850;
  text-align: center;
}

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

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

.gallery-card {
  overflow: hidden;
  padding: 0;
  text-align: left;
}

.gallery-button {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
}

.gallery-thumb {
  position: relative;
  height: 242px;
  overflow: hidden;
  background: var(--black);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 350ms ease, opacity 350ms ease;
}

.gallery-card:hover img {
  transform: scale(1.07);
  opacity: 0.78;
}

.gallery-thumb::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  content: "View";
  color: var(--black);
  background: rgba(184, 243, 75, 0.82);
  font-weight: 900;
  opacity: 0;
  transition: opacity 220ms ease;
}

.gallery-card:hover .gallery-thumb::after {
  opacity: 1;
}

.gallery-label {
  padding: 16px 18px 18px;
}

.gallery-label strong {
  display: block;
}

.gallery-label span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-wrap {
  position: relative;
  overflow: hidden;
}

.testimonial {
  display: none;
  padding: 32px;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 1.8vw, 1.5rem);
  font-weight: 780;
  line-height: 1.42;
}

.testimonial cite {
  display: block;
  margin-top: 18px;
  color: var(--green-dark);
  font-style: normal;
  font-weight: 850;
}

.review-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: rgba(244, 185, 67, 0.12);
  border: 1px solid rgba(244, 185, 67, 0.28);
  border-radius: var(--radius);
  font-weight: 850;
}

.review-badge svg {
  color: var(--amber);
}

.blog-card {
  overflow: hidden;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px;
}

.blog-meta {
  display: block;
  margin-bottom: 12px;
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  border: 0;
  color: var(--ink);
  background: var(--paper);
  text-align: left;
  font-weight: 850;
}

.faq-question svg {
  flex: 0 0 20px;
  transition: transform 200ms ease;
}

.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 22px 22px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-panel {
  padding: 28px;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item svg {
  color: var(--green-dark);
  flex: 0 0 22px;
  margin-top: 4px;
}

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

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

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

.field label {
  color: #22352a;
  font-size: 0.86rem;
  font-weight: 820;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fbfdfc;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(0, 168, 89, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 168, 89, 0.1);
}

.form-note {
  display: none;
  margin-top: 14px;
  padding: 12px;
  color: var(--green-dark);
  background: rgba(0, 168, 89, 0.1);
  border: 1px solid rgba(0, 168, 89, 0.18);
  border-radius: var(--radius);
  font-weight: 760;
}

.form-note.show {
  display: block;
}

.map-frame {
  width: 100%;
  height: 380px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
}

.video-banner {
  position: relative;
  min-height: 520px;
  display: grid;
  overflow: hidden;
  align-items: center;
  color: var(--paper);
  background: var(--black);
}

.video-banner video,
.video-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.video-banner::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(5, 7, 5, 0.86), rgba(5, 7, 5, 0.18));
}

.video-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.play-mark {
  display: inline-grid;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  place-items: center;
  color: var(--black);
  background: var(--lime);
  border-radius: 50%;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  color: var(--paper);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  font-weight: 820;
}

.badge svg {
  color: var(--lime);
}

.areas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-section {
  padding: 64px 0;
  color: var(--paper);
  background:
    linear-gradient(135deg, rgba(184, 243, 75, 0.2), transparent 38%),
    var(--black);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-inner p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #050705;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.85fr 1fr;
  gap: 34px;
  padding: 64px 0 42px;
}

.site-footer h3,
.site-footer h4 {
  color: var(--paper);
}

.site-footer h4 {
  margin-bottom: 16px;
  font-size: 1rem;
}

.site-footer ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  gap: 10px;
}

.float-btn {
  display: inline-grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--paper);
  background: var(--green);
  box-shadow: 0 14px 30px rgba(7, 16, 11, 0.24);
}

.float-btn.call {
  background: var(--black);
}

.back-to-top {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

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

.modal,
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: rgba(5, 7, 5, 0.78);
}

.modal.open,
.lightbox.open {
  display: flex;
}

.modal-dialog {
  width: min(720px, 100%);
  max-height: calc(100svh - 44px);
  overflow: auto;
  padding: 28px;
  background: var(--paper);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 22px;
}

.modal-close {
  border: 0;
  background: transparent;
}

.lightbox-content {
  position: relative;
  width: min(1040px, 100%);
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  background: var(--black);
  border-radius: var(--radius);
}

.lightbox-caption {
  margin-top: 12px;
  color: var(--paper);
  text-align: center;
  font-weight: 780;
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 1;
  border: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

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

.split-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.split-card img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.split-body {
  padding: 26px;
}

.split-body p {
  color: var(--muted);
  margin-top: 10px;
}

@media (max-width: 1100px) {
  .primary-nav {
    position: fixed;
    inset: 122px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100svh - 150px);
    overflow: auto;
    padding: 16px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.open {
    display: flex;
  }

  .primary-nav a {
    padding: 13px 12px;
  }

  .nav-toggle {
    display: inline-grid;
  }

  .header-actions .btn {
    display: none;
  }

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

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

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .section {
    padding: 72px 0;
  }

  .topbar-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  .topbar-list {
    flex-wrap: wrap;
    gap: 8px 14px;
  }

  .topbar-contact {
    gap: 12px;
    flex-wrap: wrap;
  }

  .topbar-contact a {
    font-size: 0.82rem;
  }

  .brand {
    min-width: auto;
  }

  .brand small {
    display: none;
  }

  .hero-slider {
    min-height: 100svh;
    height: 100svh;
    max-height: none;
  }

  .hero-content {
    padding: 88px 0 260px;
  }

  .hero-proof {
    grid-template-columns: repeat(3, 1fr);
    bottom: 66px;
  }

  .hero-dots {
    right: 16px;
    bottom: 28px;
  }

  .text-grid,
  .infrastructure-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .industries-strip,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-row,
  .capacity-math {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .split-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-topbar {
    display: none;
  }

  .primary-nav {
    top: 82px;
  }

  .header-inner {
    min-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .brand > span:last-child {
    max-width: 150px;
    line-height: 1.1;
  }

  .hero-slider {
    min-height: 100svh;
    height: 100svh;
  }

  .hero-slide::after {
    background:
      linear-gradient(180deg, rgba(5, 7, 5, 0.84), rgba(5, 7, 5, 0.58)),
      linear-gradient(0deg, rgba(5, 7, 5, 0.74), transparent);
  }

  .hero-content {
    padding: 72px 0 260px;
  }

  .hero-actions,
  .cta-inner .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-proof {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .proof-item {
    padding: 10px;
  }

  .proof-item span {
    font-size: 0.72rem;
  }

  .breadcrumb-hero {
    min-height: 360px;
  }

  .breadcrumb-content {
    padding: 90px 0 48px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .gallery-grid,
  .industries-strip,
  .product-grid,
  .footer-main,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-image,
  .gallery-thumb {
    height: 220px;
  }

  .media-panel img {
    min-height: 320px;
  }

  .media-caption {
    grid-template-columns: 1fr;
  }

  .video-banner {
    min-height: 460px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }
}

@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;
  }
}

/* ── Video Modal ───────────────────────────────────────────── */
.play-mark {
  cursor: pointer;
  border: none;
  transition: transform .18s ease, box-shadow .18s ease;
}
.play-mark:hover,
.play-mark:focus-visible {
  transform: scale(1.1);
  box-shadow: 0 0 0 5px rgba(var(--lime-rgb, 130,190,60),.28);
  outline: none;
}

.video-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.video-modal.open {
  opacity: 1;
  pointer-events: all;
}
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
  cursor: pointer;
}
.video-modal-box {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #0d0f0d;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: scale(.93);
  transition: transform .25s ease;
}
.video-modal.open .video-modal-box {
  transform: scale(1);
}
.video-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255,255,255,.04);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.video-modal-label {
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  letter-spacing: .04em;
}
.video-modal-body {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}
.video-modal-iframe,
.video-modal-mp4 {
  width: 100%;
  height: 100%;
  display: block;
}
.video-modal-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: rgba(255,255,255,.5);
  text-align: center;
  padding: 24px;
}
.video-modal-placeholder svg {
  width: 52px;
  height: 52px;
  opacity: .4;
}
.video-modal-placeholder p {
  font-size: .9rem;
  line-height: 1.6;
}
.video-modal-placeholder code {
  background: rgba(255,255,255,.1);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: .82rem;
  color: #8fc;
}

/* ── Video Banner Background Video ─────────────────────────── */
.video-banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .6s ease;
  z-index: 0;
}
.video-banner-bg.loaded {
  opacity: 0.72;
}
/* Poster image — shown until video loads, then hidden */
.video-banner-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  z-index: 0;
  transition: opacity .6s ease;
}
.video-banner-poster.hidden {
  opacity: 0;
  pointer-events: none;
}
/* Overlay gradient sits above video */
.video-banner::after {
  z-index: 1;
}
/* Content above everything */
.video-content {
  z-index: 2;
}
@media(max-width:860px){.services-section,.products-section,.trust-section,.process-section,.faq-section,.blog-section{content-visibility:auto;contain-intrinsic-size:0 500px}.marquee-track{animation-duration:30s}.hero-slide{will-change:auto}}.site-header{will-change:auto}.topbar-list span{color:var(--green-dark)!important}.topbar-contact a svg{color:var(--green-dark)!important}