:root {
  --navy: #08283a;
  --navy2: #0e3b54;
  --green: #4f8b42;
  --green2: #78b85f;
  --mint: #e8f5e3;
  --white: #fff;
  --ink: #10212b;
  --muted: #667780;
  --shadow: 0 24px 70px rgba(8, 40, 58, 0.16);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: #fff;
  color: var(--ink);
  overflow-x: hidden;
}
.cursor-glow {
  position: fixed;
  inset: auto;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(120, 184, 95, 0.25),
    transparent 65%
  );
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: rgba(255, 255, 255, 0.83);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(8, 40, 58, 0.08);
}
.brand img {
  height: 112px;
  display: block;
}
.brand {
  filter: drop-shadow(0 12px 22px rgba(8, 40, 58, 0.1));
}
nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  font-size: 14px;
}
.nav-cta {
  background: var(--green);
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 999px;
}
.hero-logo-stamp {
  width: 245px;
  max-width: 70%;
  margin: 16px 0 8px;
  padding: 12px 18px;
  background: #fff;
  border: 1px solid rgba(8, 40, 58, 0.08);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.hero-logo-stamp img {
  width: 100%;
  display: block;
}
.footer-links a {
  color: #dff6d8;
  text-decoration: none;
  font-weight: 800;
}
.footer-links a:hover {
  text-decoration: underline;
}
.hero {
  min-height: 84vh;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 50px;
  align-items: center;
  padding: 70px 6vw 60px;
  background: linear-gradient(135deg, #fff 0%, #fff 45%, var(--mint) 100%);
  position: relative;
}
.hero:before {
  content: "";
  position: absolute;
  right: -120px;
  top: 80px;
  width: 440px;
  height: 440px;
  background: linear-gradient(135deg, var(--green), var(--navy));
  border-radius: 50%;
  opacity: 0.1;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 900;
  color: var(--green);
  font-size: 12px;
}
.hero h1,
.section h2,
.banner h2,
.contact-card h2 {
  font-size: clamp(38px, 5vw, 74px);
  line-height: 0.94;
  margin: 15px 0;
  color: var(--navy);
  letter-spacing: -0.05em;
}
.lead,
.section-copy p,
.contact-card p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 720px;
}
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin: 32px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 15px 23px;
  font-weight: 900;
  text-decoration: none;
  border: 0;
}
.primary {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: white;
  box-shadow: 0 18px 34px rgba(79, 139, 66, 0.28);
}
.ghost {
  color: var(--navy);
  border: 1px solid rgba(8, 40, 58, 0.18);
  background: #fff;
}
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 38px;
}
.stats-strip span {
  background: #fff;
  border: 1px solid rgba(8, 40, 58, 0.08);
  border-radius: 22px;
  padding: 18px;
  box-shadow: var(--shadow);
  color: var(--muted);
}
.stats-strip strong {
  display: block;
  color: var(--navy);
  font-size: 20px;
}
.hero-visual {
  position: relative;
  min-height: 560px;
}
.image-card.main {
  position: absolute;
  inset: 44px 0 0 30px;
  border-radius: 46px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.warehouse {
  background-image:
    linear-gradient(135deg, rgba(8, 40, 58, 0.16), rgba(79, 139, 66, 0.32)),
    url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1200&q=80");
}
.floating-card {
  position: absolute;
  background: #fff;
  border: 1px solid rgba(8, 40, 58, 0.08);
  box-shadow: var(--shadow);
  border-radius: 22px;
  padding: 18px 24px;
  font-weight: 900;
  color: var(--navy);
  animation: float 4s ease-in-out infinite;
}
.fc1 {
  top: 90px;
  left: 0;
}
.fc2 {
  right: 25px;
  bottom: 70px;
  animation-delay: 1.4s;
}
.orbit {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 170px;
  height: 170px;
  border: 2px dashed rgba(79, 139, 66, 0.45);
  border-radius: 50%;
  animation: spin 14s linear infinite;
}
.ticker {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  gap: 40px;
  padding: 18px 0;
  animation: ticker 24s linear infinite;
}
.ticker span {
  font-weight: 900;
  color: #d9f2d2;
}
.section {
  padding: 100px 6vw;
}
.split-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 40px;
  align-items: start;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.glass-card,
.sector-card,
.step,
.contact-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(8, 40, 58, 0.08);
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.glass-card {
  padding: 30px;
  transition: 0.35s;
}
.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(79, 139, 66, 0.35);
}
.glass-card span {
  color: var(--green);
  font-weight: 1000;
}
.glass-card h3,
.sector-card h3,
.step h3 {
  color: var(--navy);
  font-size: 24px;
}
.glass-card p,
.sector-card p,
.step p {
  color: var(--muted);
  line-height: 1.65;
}
.sectors {
  background: linear-gradient(180deg, #fff, var(--mint));
}
.section-head {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}
.sector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.sector-card {
  overflow: hidden;
}
.sector-card h3,
.sector-card p {
  padding: 0 24px;
}
.sector-card p {
  padding-bottom: 28px;
}
.sector-img {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.household {
  background-image: url("https://images.unsplash.com/photo-1556228453-efd6c1ff04f6?auto=format&fit=crop&w=900&q=80");
}
.beauty {
  background-image: url("https://images.unsplash.com/photo-1596462502278-27bfdc403348?auto=format&fit=crop&w=900&q=80");
}
.electronics {
  background-image: url("https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=900&q=80");
}
.retail {
  background-image: url("https://images.unsplash.com/photo-1556741533-6e6a62bd8b49?auto=format&fit=crop&w=900&q=80");
}
.banner {
  margin: 40px 6vw;
  padding: 48px;
  border-radius: 42px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  box-shadow: var(--shadow);
}
.banner h2 {
  color: #fff;
  font-size: 44px;
}
.banner .eyebrow {
  color: #dff6d8;
}
.process {
  background: #fff;
}
.timeline {
  max-width: 1020px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.step {
  padding: 30px;
}
.step b {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  font-size: 22px;
}
.contact-section {
  padding: 90px 6vw;
  background: linear-gradient(135deg, var(--mint), #fff);
}
.contact-card {
  max-width: 900px;
  margin: auto;
  padding: 48px;
  text-align: center;
}
.contact-card img {
  height: 92px;
}
.contact-card h2 {
  font-size: 50px;
}
form {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}
input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(8, 40, 58, 0.14);
  border-radius: 18px;
  padding: 17px 18px;
  font-size: 16px;
  font-family: inherit;
}
textarea {
  min-height: 120px;
}
footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 6vw;
  background: var(--navy);
  color: #dff6d8;
  font-size: 14px;
}
.reveal-left,
.reveal-right,
.reveal-up {
  opacity: 0;
  transition: all 0.85s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal-left {
  transform: translateX(-45px);
}
.reveal-right {
  transform: translateX(45px);
}
.reveal-up {
  transform: translateY(45px);
}
.visible {
  opacity: 1;
  transform: none;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-16px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}
.legal-page {
  max-width: 1050px;
  margin: auto;
}
.legal-page h1 {
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.95;
  margin: 15px 0;
  color: var(--navy);
  letter-spacing: -0.05em;
}
.legal-card {
  margin-top: 34px;
  background: #fff;
  border: 1px solid rgba(8, 40, 58, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
  padding: 42px;
}
.legal-card h2 {
  color: var(--navy);
  font-size: 28px;
  margin-top: 28px;
}
.legal-card h2:first-child {
  margin-top: 0;
}
.legal-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 17px;
}
@media (max-width: 900px) {
  nav {
    display: none;
  }
  .hero,
  .split-section,
  .timeline {
    grid-template-columns: 1fr;
  }
  .hero-visual {
    min-height: 430px;
  }
  .stats-strip,
  .sector-grid,
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .banner,
  footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 46px;
  }
}

/* Premium expansion pages */
.page-hero {
  position: relative;
  overflow: hidden;
  padding: 96px 6vw 74px;
  background: linear-gradient(135deg, #fff 0%, #fff 44%, var(--mint) 100%);
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 44px;
  align-items: center;
}
.page-hero:before {
  content: "";
  position: absolute;
  right: -140px;
  top: -80px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--navy));
  opacity: 0.11;
  animation: pulseOrb 7s ease-in-out infinite;
}
.page-hero h1 {
  font-size: clamp(44px, 6vw, 86px);
  line-height: 0.9;
  color: var(--navy);
  letter-spacing: -0.06em;
  margin: 15px 0;
}
.page-hero p {
  font-size: 19px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 760px;
}
.page-visual {
  min-height: 440px;
  border-radius: 48px;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.page-visual:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(8, 40, 58, 0.08),
    rgba(79, 139, 66, 0.24)
  );
}
.warehouse-wide {
  background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1400&q=80");
}
.pallets {
  background-image: url("https://images.unsplash.com/photo-1578575437130-527eed3abbec?auto=format&fit=crop&w=1400&q=80");
}
.process-img {
  background-image: url("https://images.unsplash.com/photo-1601597111158-2fceff292cdc?auto=format&fit=crop&w=1400&q=80");
}
.detail-section {
  padding: 86px 6vw;
}
.deep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.deep-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(8, 40, 58, 0.08);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 32px;
  transition: 0.35s;
}
.deep-card:hover {
  transform: translateY(-10px) scale(1.01);
  border-color: rgba(79, 139, 66, 0.42);
}
.deep-card:before {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--mint);
  z-index: 0;
}
.deep-card > * {
  position: relative;
}
.deep-card span,
.launch-card span {
  display: inline-flex;
  background: var(--mint);
  color: var(--green);
  font-weight: 1000;
  border-radius: 999px;
  padding: 8px 14px;
}
.deep-card h3 {
  font-size: 27px;
  color: var(--navy);
  margin: 20px 0 10px;
}
.deep-card p,
.deep-card li {
  color: var(--muted);
  line-height: 1.7;
}
.deep-card ul {
  padding-left: 20px;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.launch-card {
  min-height: 230px;
  text-decoration: none;
  color: inherit;
  background: linear-gradient(180deg, #fff, #f9fff7);
  border: 1px solid rgba(8, 40, 58, 0.08);
  border-radius: 34px;
  padding: 32px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  transition: 0.35s;
}
.launch-card:hover {
  transform: translateY(-10px);
}
.launch-card:after {
  content: "→";
  position: absolute;
  right: 28px;
  bottom: 22px;
  font-size: 42px;
  color: var(--green);
  font-weight: 900;
}
.launch-card h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 18px 0 10px;
}
.launch-card p {
  color: var(--muted);
  line-height: 1.65;
}
.mega-band {
  margin: 20px 6vw 70px;
  border-radius: 46px;
  padding: 54px;
  background: linear-gradient(135deg, var(--navy), #104c58 45%, var(--green));
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.mega-band h2 {
  font-size: clamp(36px, 5vw, 62px);
  line-height: 0.95;
  margin: 0;
}
.mega-band p {
  line-height: 1.75;
  color: #e9ffe4;
  font-size: 18px;
}
.sector-page-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.sector-page-card {
  min-height: 360px;
  border-radius: 38px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: 0.35s;
}
.sector-page-card:hover {
  transform: translateY(-10px);
}
.sector-page-card .pic {
  height: 210px;
  background-size: cover;
  background-position: center;
}
.sector-page-card .body {
  padding: 28px;
}
.sector-page-card h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 10px;
}
.sector-page-card p {
  color: var(--muted);
  line-height: 1.65;
}
.process-rail {
  max-width: 1120px;
  margin: auto;
  position: relative;
}
.process-rail:before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(var(--green), var(--navy));
}
.process-block {
  position: relative;
  margin: 0 0 28px 78px;
  padding: 34px;
  background: #fff;
  border: 1px solid rgba(8, 40, 58, 0.08);
  border-radius: 34px;
  box-shadow: var(--shadow);
}
.process-block b {
  position: absolute;
  left: -72px;
  top: 24px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  font-size: 24px;
  box-shadow: 0 14px 34px rgba(79, 139, 66, 0.3);
}
.process-block h3 {
  font-size: 30px;
  color: var(--navy);
  margin: 0 0 10px;
}
.process-block p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.75;
}
.side-tabs {
  position: fixed;
  right: 18px;
  top: 38%;
  z-index: 30;
  display: grid;
  gap: 10px;
}
.side-tabs a {
  writing-mode: vertical-rl;
  text-decoration: none;
  background: #fff;
  color: var(--navy);
  font-weight: 900;
  border: 1px solid rgba(8, 40, 58, 0.1);
  box-shadow: var(--shadow);
  border-radius: 16px;
  padding: 14px 10px;
}
.spark {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--green2);
  box-shadow: 0 0 28px var(--green2);
  animation: spark 6s ease-in-out infinite;
}
.spark.s1 {
  left: 8%;
  top: 24%;
}
.spark.s2 {
  right: 12%;
  bottom: 18%;
  animation-delay: 1.5s;
}
.spark.s3 {
  left: 54%;
  top: 12%;
  animation-delay: 3s;
}
@keyframes pulseOrb {
  50% {
    transform: scale(1.08) translateY(24px);
  }
}
@keyframes spark {
  0%,
  100% {
    transform: translate(0, 0);
    opacity: 0.35;
  }
  50% {
    transform: translate(28px, -34px);
    opacity: 1;
  }
}
@media (max-width: 900px) {
  .brand img {
    height: 86px;
  }
  .page-hero,
  .mega-band,
  .deep-grid,
  .launch-grid,
  .sector-page-grid {
    grid-template-columns: 1fr;
  }
  .side-tabs {
    display: none;
  }
  .page-visual {
    min-height: 300px;
  }
  .process-block {
    margin-left: 58px;
  }
  .process-rail:before {
    left: 20px;
  }
  .process-block b {
    left: -62px;
  }
}


