:root {
  --navy: #06131f;
  --navy-2: #091d2b;
  --green: #00f58a;
  --green-2: #17c964;
  --blue: #00b7ff;
  --silver: #d8e3ea;
  --muted: #91a8b6;
  --white: #ffffff;
  --dark: #03080d;
  --line: rgba(255, 255, 255, 0.12);
  --glass: rgba(7, 24, 35, 0.72);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--white);
  background: var(--dark);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(5, 18, 29, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(4, 15, 24, 0.94);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.34);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 190px;
  max-width: 42vw;
  max-height: 64px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  position: relative;
  color: #dcebf2;
  font-weight: 700;
  font-size: 0.93rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background: var(--green);
  box-shadow: 0 0 18px var(--green);
  transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.call-chip,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 18px;
  border: 1px solid rgba(0, 245, 138, 0.42);
  color: var(--white);
  font-weight: 800;
  background: linear-gradient(135deg, rgba(0, 245, 138, 0.18), rgba(0, 183, 255, 0.12));
  box-shadow: 0 0 22px rgba(0, 245, 138, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover,
.call-chip:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 245, 138, 0.9);
  box-shadow: 0 0 28px rgba(0, 245, 138, 0.36);
}

.btn.primary {
  background: linear-gradient(135deg, var(--green), var(--blue));
  color: #02111b;
}

.btn.dark {
  background: rgba(255, 255, 255, 0.08);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.hero,
.page-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(110deg, rgba(2, 12, 20, 0.9), rgba(2, 35, 34, 0.7), rgba(2, 12, 20, 0.66)),
    var(--hero-img);
  background-size: cover;
  background-position: center;
}

.page-hero {
  min-height: 62vh;
  padding-top: 120px;
}

.hero::before,
.page-hero::before,
.footer::before,
.ecosystem::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 245, 138, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 183, 255, 0.08) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(to bottom, black, transparent 75%);
  pointer-events: none;
}

.hero-content,
.page-hero .container {
  position: relative;
  z-index: 2;
  max-width: 850px;
  padding-top: 80px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.78rem;
  margin-bottom: 18px;
}

h1,
h2,
h3 {
  font-family: "Sora", sans-serif;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: clamp(2.65rem, 7vw, 6.8rem);
  line-height: 0.96;
  max-width: 980px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.05;
}

h3 {
  font-size: 1.15rem;
}

p {
  color: #c5d6de;
  line-height: 1.72;
}

.hero p {
  max-width: 780px;
  font-size: 1.08rem;
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 44px;
  max-width: 760px;
}

.stat-box,
.counter-card,
.contact-card,
.testimonial,
.form-panel {
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.stat-box {
  padding: 18px;
  border-radius: 8px;
}

.stat-box strong,
.counter-card strong {
  display: block;
  color: var(--green);
  font-size: 2rem;
  font-family: "Sora", sans-serif;
}

.stat-box span,
.counter-card span {
  color: var(--silver);
  font-weight: 700;
}

.energy-line {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green), var(--blue), transparent);
  animation: scan 4s linear infinite;
  opacity: 0.9;
}

.floating-icons i {
  position: absolute;
  z-index: 2;
  color: var(--green);
  font-size: 2rem;
  filter: drop-shadow(0 0 16px rgba(0, 245, 138, 0.8));
  animation: float 5s ease-in-out infinite;
}

.floating-icons i:nth-child(1) { top: 24%; right: 10%; }
.floating-icons i:nth-child(2) { top: 58%; right: 20%; animation-delay: 1.2s; color: var(--blue); }
.floating-icons i:nth-child(3) { bottom: 16%; left: 8%; animation-delay: 2.1s; }

.particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(0, 245, 138, 0.55) 1px, transparent 2px),
    radial-gradient(circle, rgba(0, 183, 255, 0.35) 1px, transparent 2px);
  background-size: 86px 86px, 132px 132px;
  animation: drift 18s linear infinite;
  opacity: 0.35;
}

section {
  position: relative;
  padding: 96px 0;
}

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

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

.light {
  background: #f4f9fb;
  color: #06131f;
}

.light p,
.light .muted {
  color: #526a78;
}

.strip-grid,
.services-grid,
.values-grid,
.why-grid,
.contact-grid,
.counter-grid,
.page-grid {
  display: grid;
  gap: 22px;
}

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

.image-card,
.service-card,
.value-card,
.why-card,
.eco-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.image-card:hover,
.service-card:hover,
.value-card:hover,
.why-card:hover,
.eco-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 245, 138, 0.55);
  box-shadow: 0 24px 52px rgba(0, 245, 138, 0.13);
}

.image-card img {
  height: 255px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-card:hover img,
.service-card:hover img,
.gallery-item:hover img,
.why-card:hover img {
  transform: scale(1.07);
}

.image-card h3,
.gallery-item span {
  position: absolute;
  inset: auto 16px 16px;
  z-index: 2;
}

.image-card::after,
.gallery-item::after,
.why-card .media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78), transparent 60%);
}

.split {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 54px;
  align-items: center;
}

.media-frame {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(0, 245, 138, 0.24);
  box-shadow: var(--shadow);
}

.media-frame img {
  min-height: 520px;
  object-fit: cover;
}

.media-frame.contain img {
  object-fit: contain;
  background: linear-gradient(135deg, #071823, #0b302d);
}

.media-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(0, 245, 138, 0.28);
  pointer-events: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 0;
  margin: 26px 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #11242f;
  font-weight: 800;
}

.check-list i {
  color: var(--green-2);
}

.services {
  background:
    radial-gradient(circle at top right, rgba(0, 183, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #04111c, #062821 58%, #031018);
}

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

.service-card {
  background: linear-gradient(145deg, rgba(10, 40, 52, 0.96), rgba(5, 16, 25, 0.96));
}

.service-card img {
  height: 178px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card.object-contain img {
  object-fit: contain;
  background: #08232d;
}

.service-body {
  padding: 22px;
}

.service-icon,
.value-icon,
.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #031018;
  background: linear-gradient(135deg, var(--green), var(--blue));
  margin-bottom: 16px;
}

.mini-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.ecosystem {
  background: #030b12;
  overflow: hidden;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  position: relative;
}

.eco-grid::before {
  content: "";
  position: absolute;
  inset: 22% 10%;
  border: 1px dashed rgba(0, 245, 138, 0.35);
  border-radius: 50%;
  animation: rotate 28s linear infinite;
}

.eco-card {
  z-index: 1;
  padding: 28px;
  min-height: 190px;
  background: rgba(9, 29, 43, 0.9);
}

.eco-card::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: block;
  margin-bottom: 20px;
  background: var(--green);
  box-shadow: 0 0 24px var(--green);
}

.fleet-band {
  background: linear-gradient(135deg, #f5fbfd, #dfeff3);
  color: var(--navy);
}

.counter-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 30px;
}

.counter-card {
  padding: 24px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
}

.values-grid {
  grid-template-columns: repeat(6, 1fr);
}

.value-card {
  padding: 26px 20px;
  text-align: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.09), rgba(255,255,255,0.03));
  clip-path: polygon(10% 0, 90% 0, 100% 14%, 100% 86%, 90% 100%, 10% 100%, 0 86%, 0 14%);
}

.value-icon {
  margin-inline: auto;
}

.gallery {
  background: #f4f9fb;
  color: var(--navy);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 210px;
  gap: 16px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.gallery-item.tall {
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item.contain img {
  object-fit: contain;
  background: #081924;
}

.gallery-item span {
  color: var(--white);
  font-weight: 900;
}

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

.why-card {
  background: #071622;
}

.why-card .media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.why-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.why-card .content {
  padding: 24px;
}

.testimonials {
  background:
    radial-gradient(circle at 15% 20%, rgba(0, 245, 138, 0.15), transparent 28%),
    linear-gradient(135deg, #06131f, #09251f);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial {
  padding: 32px;
  border-radius: 8px;
}

.stars {
  color: #f9d65c;
  margin: 12px 0;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 26px;
}

.dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
}

.dots span:first-child {
  background: var(--green);
}

.contact-section {
  background: #f4f9fb;
  color: var(--navy);
}

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

.contact-card {
  padding: 26px;
  border-radius: 8px;
  background: #ffffff;
}

.contact-card p,
.contact-card a {
  color: #526a78;
  font-weight: 700;
}

.cta-form {
  background:
    linear-gradient(135deg, rgba(3, 10, 16, 0.94), rgba(4, 42, 33, 0.9)),
    url("../images/docx/docx-20.jpeg");
  background-size: cover;
  background-position: center;
}

.form-panel {
  border-radius: 8px;
  padding: 34px;
}

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

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

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 0 16px;
  font: inherit;
  outline: none;
}

textarea {
  min-height: 130px;
  padding-top: 14px;
  resize: vertical;
}

select option {
  color: #06131f;
}

.footer {
  position: relative;
  min-height: 560px;
  padding: 76px 0 28px;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 18%, rgba(0, 183, 255, 0.2), transparent 30%),
    linear-gradient(135deg, #02070c, #061d22 48%, #02070c);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.9fr 1.15fr;
  gap: 34px;
  position: relative;
  z-index: 2;
}

.footer h3 {
  margin-bottom: 18px;
}

.footer .brand img {
  width: 280px;
  max-width: 100%;
  max-height: none;
}

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

.footer a,
.footer p {
  color: #bfd1d9;
}

.footer a:hover {
  color: var(--green);
}

.footer-cta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin: 54px 0 28px;
  padding: 26px;
  border: 1px solid rgba(0, 245, 138, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.socials a,
.float-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--line);
  padding-top: 22px;
  color: #8fa5af;
}

.floating-actions {
  position: fixed;
  inset: auto 18px 18px 18px;
  z-index: 60;
  pointer-events: none;
}

.float-btn {
  position: absolute;
  bottom: 0;
  pointer-events: auto;
  color: #02111b;
  background: linear-gradient(135deg, var(--green), var(--blue));
  box-shadow: 0 0 28px rgba(0, 245, 138, 0.4);
}

.float-btn.call {
  left: 0;
}

.float-btn.whatsapp {
  right: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

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

.content-panel {
  padding: 30px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid rgba(6, 19, 31, 0.08);
  box-shadow: 0 20px 52px rgba(7, 24, 35, 0.08);
}

.content-panel h3 {
  color: var(--navy);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-18px); }
}

@keyframes scan {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

@keyframes drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 240px 180px, -180px 260px; }
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@media (max-width: 980px) {
  .menu-toggle {
    display: grid;
    place-items: center;
  }

  .nav-links,
  .call-chip {
    display: none;
  }

  .nav-links.open {
    position: fixed;
    inset: 82px 16px auto;
    display: grid;
    gap: 0;
    padding: 18px;
    border-radius: 8px;
    background: rgba(4, 15, 24, 0.98);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open a {
    padding: 15px 6px;
  }

  .strip-grid,
  .services-grid,
  .values-grid,
  .contact-grid,
  .counter-grid,
  .page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .footer-top,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .eco-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 640px) {
  .nav-wrap {
    min-height: 76px;
  }

  .brand img {
    width: 156px;
    max-height: 54px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 116px 0 76px;
  }

  .hero-content {
    padding-top: 0;
  }

  h1 {
    font-size: 2.55rem;
  }

  section {
    padding: 68px 0;
  }

  .hero-stats,
  .strip-grid,
  .services-grid,
  .values-grid,
  .contact-grid,
  .counter-grid,
  .page-grid,
  .form-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-item.wide,
  .gallery-item.tall {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .media-frame img {
    min-height: 360px;
  }
}
