:root {
  --green-950: #071b14;
  --green-900: #0c261d;
  --green-800: #12392a;
  --green-700: #176344;
  --green-600: #23885b;
  --green-500: #35aa6d;
  --mint: #dff8ea;
  --aqua: #73d5d0;
  --gold: #d8ad5b;
  --ivory: #f8fbf5;
  --white: #ffffff;
  --ink: #10231b;
  --muted: #617067;
  --line: rgba(15, 46, 34, 0.14);
  --glass: rgba(255, 255, 255, 0.14);
  --shadow: 0 24px 70px rgba(5, 28, 20, 0.16);
  --shadow-soft: 0 16px 45px rgba(5, 28, 20, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 8px;
  --container: 1180px;
  --header-height: 82px;
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Poppins", "Inter", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(53, 170, 109, 0.12), transparent 34rem),
    linear-gradient(180deg, #fbfdf8 0%, #f4f8f1 44%, #ffffff 100%);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

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

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

button {
  border: 0;
  cursor: pointer;
}

svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.section {
  padding: 110px 0;
  position: relative;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

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

.section-eyebrow::before,
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--gold), var(--green-500));
}

.section-title {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.7rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.section-text {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.glass-card {
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.btn,
.learn-link,
.icon-button {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  box-shadow: 0 18px 42px rgba(21, 111, 73, 0.32);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 55px rgba(21, 111, 73, 0.42);
}

.btn-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.16);
}

.ripple {
  position: absolute;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: ripple 0.6s ease-out;
  pointer-events: none;
}

@keyframes ripple {
  to {
    opacity: 0;
    transform: scale(3.2);
  }
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  color: var(--white);
  background:
    radial-gradient(circle at 50% 42%, rgba(53, 170, 109, 0.4), transparent 18rem),
    linear-gradient(140deg, var(--green-950), #020806);
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader p {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
}

.loader-mark {
  position: relative;
  width: 70px;
  height: 70px;
}

.loader-mark span {
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-top-color: var(--green-500);
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
}

.loader-mark span:nth-child(2) {
  inset: 8px;
  border-top-color: var(--gold);
  animation-duration: 1.8s;
  animation-direction: reverse;
}

.loader-mark span:nth-child(3) {
  inset: 18px;
  border-top-color: var(--aqua);
  animation-duration: 1s;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.site-header.scrolled {
  background: rgba(7, 27, 20, 0.82);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(53, 170, 109, 0.92), rgba(7, 27, 20, 0.9));
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

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

.brand strong {
  font-family: var(--font-display);
  line-height: 1.05;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 7px;
  list-style: none;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.nav-link {
  display: block;
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 999px;
  font-size: 0.91rem;
  font-weight: 700;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 99px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 96svh;
  overflow: hidden;
  color: var(--white);
  background: var(--green-950);
}

.hero-bg,
.hero-overlay,
.particles {
  position: absolute;
  inset: 0;
}

.hero-bg {
  width: 100%;
  height: 112%;
  object-fit: cover;
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.02);
}

.hero-overlay {
  background:
    linear-gradient(105deg, rgba(7, 27, 20, 0.92), rgba(7, 27, 20, 0.7) 44%, rgba(7, 27, 20, 0.32)),
    linear-gradient(180deg, rgba(7, 27, 20, 0.2), rgba(7, 27, 20, 0.8));
}

.particles span {
  position: absolute;
  width: var(--size);
  height: var(--size);
  left: var(--left);
  top: var(--top);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 0 22px rgba(115, 213, 208, 0.55);
  animation: particleFloat var(--duration) ease-in-out var(--delay) infinite alternate;
}

@keyframes particleFloat {
  to {
    transform: translate3d(16px, -28px, 0);
    opacity: 0.35;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 96svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: center;
  gap: 64px;
  padding: calc(var(--header-height) + 54px) 0 48px;
}

.hero-copy {
  max-width: 790px;
}

.hero .eyebrow {
  color: var(--mint);
}

.hero h1 {
  margin: 0;
  max-width: 820px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 7.4vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 680px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(1.04rem, 2vw, 1.24rem);
}

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

.hero-panel {
  align-self: end;
  margin-bottom: 36px;
  padding: 28px;
  border-radius: var(--radius-lg);
}

.hero-panel strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.panel-kicker {
  color: var(--mint);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.mini-stats span {
  padding: 14px 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
}

.mini-stats b {
  display: block;
  color: var(--white);
  font-size: 1.15rem;
}

.float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.11);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  font-size: 0.84rem;
  font-weight: 800;
  animation: floatSoft 4.6s ease-in-out infinite;
}

.float-card-one {
  right: 28%;
  top: 24%;
}

.float-card-two {
  right: 8%;
  top: 36%;
  animation-delay: -1.3s;
}

@keyframes floatSoft {
  50% {
    transform: translateY(-16px);
  }
}

.about-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(248, 251, 245, 0.96)),
    radial-gradient(circle at 92% 12%, rgba(216, 173, 91, 0.12), transparent 26rem);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 76px;
}

.about-media {
  position: relative;
  min-height: 560px;
}

.image-stack {
  position: absolute;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.image-stack:hover img {
  transform: scale(1.06);
}

.image-stack-large {
  inset: 0 70px 70px 0;
}

.image-stack-small {
  right: 0;
  bottom: 0;
  width: 48%;
  height: 44%;
  border: 10px solid var(--ivory);
}

.experience-badge {
  position: absolute;
  left: 28px;
  bottom: 26px;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, rgba(12, 38, 29, 0.92), rgba(35, 136, 91, 0.86));
  box-shadow: var(--shadow);
  text-align: center;
}

.experience-badge strong {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
}

.experience-badge span {
  max-width: 90px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.about-points span {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green-800);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 800;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 34px;
}

.stat-card {
  padding: 22px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.stat-number,
.stat-suffix {
  color: var(--green-700);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.55rem);
  font-weight: 800;
  line-height: 1;
}

.stat-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.products-section {
  background: linear-gradient(180deg, #f4f8f1 0%, #ffffff 100%);
}

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

.product-card,
.feature-card,
.testimonial-card {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.product-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.product-card:hover {
  transform: translateY(-10px);
  border-color: rgba(35, 136, 91, 0.26);
  box-shadow: 0 28px 70px rgba(5, 28, 20, 0.16);
}

.product-image {
  height: 245px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-800), var(--green-500));
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}

.product-body {
  padding: 26px;
}

.product-body h3,
.feature-card h3,
.process-step h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
  font-size: 1.22rem;
}

.product-body p,
.feature-card p,
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
}

.learn-link {
  display: inline-flex;
  margin-top: 20px;
  padding: 9px 14px;
  border-radius: 999px;
  color: var(--green-700);
  background: rgba(53, 170, 109, 0.1);
  font-size: 0.88rem;
  font-weight: 800;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.learn-link:hover {
  color: var(--white);
  background: var(--green-700);
  transform: translateX(4px);
}

.global-section {
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 20%, rgba(115, 213, 208, 0.18), transparent 28rem),
    linear-gradient(145deg, var(--green-950), #0a1411 72%, #04100b);
}

.global-section .section-title,
.global-section .section-text {
  color: var(--white);
}

.global-section .section-text {
  color: rgba(255, 255, 255, 0.72);
}

.global-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 56px;
}

.global-highlights {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.global-highlights span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 800;
}

.global-highlights svg {
  color: var(--aqua);
}

.map-shell {
  position: relative;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 68% 52%, rgba(53, 170, 109, 0.18), transparent 20rem),
    rgba(255, 255, 255, 0.06);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.map-shell > img,
.route-layer {
  position: absolute;
  inset: 6%;
  width: 88%;
  height: 88%;
}

.map-shell > img {
  opacity: 0.76;
  object-fit: contain;
}

.route-layer {
  overflow: visible;
}

.route {
  fill: none;
  stroke: rgba(115, 213, 208, 0.78);
  stroke-width: 2.6;
  stroke-dasharray: 10 10;
  animation: routeMove 3.8s linear infinite;
}

.route-one,
.route-three {
  stroke: var(--gold);
}

.route-two,
.route-four,
.route-five {
  stroke: var(--aqua);
}

@keyframes routeMove {
  to {
    stroke-dashoffset: -120;
  }
}

.map-dot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-500), var(--green-800));
  box-shadow: 0 0 0 8px rgba(53, 170, 109, 0.12), 0 12px 30px rgba(0, 0, 0, 0.28);
  transform: translate(-50%, -50%);
  font-size: 0.73rem;
  font-weight: 900;
}

.dot-bd {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, var(--gold), var(--green-600));
}

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

.feature-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 62px rgba(5, 28, 20, 0.15);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  border-radius: 17px;
  color: var(--green-800);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(53, 170, 109, 0.44), rgba(216, 173, 91, 0.46)) border-box;
  border: 1px solid transparent;
  box-shadow: 0 15px 35px rgba(35, 136, 91, 0.14);
}

.process-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8f1 100%),
    radial-gradient(circle at 10% 20%, rgba(115, 213, 208, 0.16), transparent 24rem);
}

.process-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(53, 170, 109, 0.12), rgba(53, 170, 109, 0.6), rgba(216, 173, 91, 0.22));
}

.process-step {
  position: relative;
  padding: 92px 22px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.process-step span {
  position: absolute;
  top: 18px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(145deg, var(--green-600), var(--green-900));
  font-family: var(--font-display);
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(35, 136, 91, 0.24);
}

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

.gallery-item {
  position: relative;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--green-900);
  box-shadow: var(--shadow-soft);
}

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

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, filter 0.7s ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(7, 27, 20, 0.76));
}

.gallery-item span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 1;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  text-align: left;
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: saturate(1.16);
}

.testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 10%, rgba(216, 173, 91, 0.14), transparent 24rem),
    #ffffff;
}

.testimonial-slider {
  position: relative;
  max-width: 820px;
  margin-inline: auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.55s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: clamp(28px, 5vw, 46px);
  border-radius: var(--radius-lg);
}

.buyer {
  display: flex;
  align-items: center;
  gap: 16px;
}

.buyer > img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}

.buyer h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--font-display);
}

.buyer p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.buyer p img {
  width: 24px;
  height: 16px;
  object-fit: cover;
  border-radius: 3px;
}

blockquote {
  margin: 28px 0 0;
  color: var(--ink);
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  line-height: 1.55;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 28px;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--green-800);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.icon-button:hover {
  color: var(--white);
  background: var(--green-700);
  transform: translateY(-2px);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 999px;
  background: rgba(23, 99, 68, 0.22);
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dots button.active {
  width: 28px;
  background: var(--green-700);
}

.contact-section {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(7, 27, 20, 0.94), rgba(7, 27, 20, 0.82)),
    url("https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=1800&q=80") center/cover;
}

.contact-section .section-title {
  color: var(--white);
}

.contact-section .section-text {
  color: rgba(255, 255, 255, 0.74);
}

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

.contact-info {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.contact-info a,
.contact-info span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.contact-info svg {
  color: var(--aqua);
}

.map-embed {
  height: 280px;
  margin-top: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(0.9) contrast(1.02);
}

.contact-form {
  display: grid;
  gap: 18px;
  padding: clamp(24px, 4vw, 34px);
  border-radius: var(--radius-lg);
}

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label,
.newsletter label {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.86rem;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea,
.newsletter input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.form-row input,
.form-row select {
  height: 52px;
  padding: 0 16px;
}

.form-row textarea {
  min-height: 136px;
  resize: vertical;
  padding: 14px 16px;
}

.form-row select option {
  color: var(--ink);
}

.form-row input::placeholder,
.form-row textarea::placeholder,
.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus,
.newsletter input:focus {
  border-color: rgba(115, 213, 208, 0.72);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 0 0 4px rgba(115, 213, 208, 0.12);
}

.form-status,
.newsletter-status {
  min-height: 22px;
  margin: 0;
  color: var(--mint);
  font-weight: 800;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 0.75fr 0.75fr 1fr;
  gap: 34px;
  padding: 64px 0 36px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid p {
  max-width: 360px;
  margin: 18px 0 0;
}

.footer-grid h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
}

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

.footer-grid a {
  transition: color 0.25s ease;
}

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

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.newsletter {
  display: grid;
  gap: 10px;
}

.newsletter > div {
  display: grid;
  grid-template-columns: 1fr 46px;
  gap: 10px;
}

.newsletter input {
  height: 46px;
  padding: 0 14px;
}

.footer-bottom {
  padding: 22px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 800;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  color: var(--white);
  background: #22c35e;
  box-shadow: 0 18px 44px rgba(34, 195, 94, 0.34);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  stroke-width: 1.6;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 24px 60px rgba(34, 195, 94, 0.42);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(2, 8, 6, 0.86);
  backdrop-filter: blur(12px);
}

.lightbox[hidden] {
  display: none;
}

.lightbox figure {
  width: min(980px, 100%);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.lightbox figcaption {
  margin-top: 14px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

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

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-content,
  .about-grid,
  .global-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    max-width: 520px;
    align-self: start;
    margin: 0;
  }

  .float-card-one {
    right: 10%;
    top: 19%;
  }

  .float-card-two {
    right: 7%;
    top: auto;
    bottom: 16%;
  }

  .about-media {
    max-width: 680px;
  }

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

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

  .process-list::before {
    left: 48px;
    right: auto;
    top: 28px;
    bottom: 28px;
    width: 2px;
    height: auto;
  }

  .process-step {
    padding: 28px 28px 28px 96px;
  }

  .process-step span {
    left: 22px;
    top: 28px;
  }

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

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

  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 82px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-list {
    position: fixed;
    top: var(--header-height);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(7, 27, 20, 0.94);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .nav-open .nav-list {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-link {
    padding: 13px 14px;
  }

  .hero,
  .hero-content {
    min-height: 94svh;
  }

  .hero-content {
    gap: 34px;
    padding-bottom: 36px;
  }

  .hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.7rem);
  }

  .float-card {
    display: none;
  }

  .about-media {
    min-height: 470px;
  }

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

  .map-shell {
    min-height: 390px;
  }

  .masonry-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

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

@media (max-width: 620px) {
  .brand small {
    display: none;
  }

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

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

  .hero-panel {
    padding: 22px;
  }

  .mini-stats {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 390px;
  }

  .image-stack-large {
    inset: 0 28px 68px 0;
  }

  .image-stack-small {
    width: 55%;
    height: 38%;
    border-width: 7px;
  }

  .experience-badge {
    width: 118px;
    height: 118px;
    left: 16px;
    bottom: 20px;
  }

  .experience-badge strong {
    font-size: 1.65rem;
  }

  .product-grid,
  .feature-grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .product-image {
    height: 220px;
  }

  .feature-card,
  .product-body {
    padding: 22px;
  }

  .process-step {
    padding: 86px 22px 24px;
  }

  .process-list::before {
    display: none;
  }

  .process-step span {
    top: 20px;
    left: 22px;
  }

  .masonry-gallery {
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

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

  .contact-grid {
    gap: 36px;
  }

  .map-embed {
    height: 240px;
  }

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

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

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