:root {
  --green: #075e36;
  --green-dark: #06351f;
  --green-soft: #eaf5ee;
  --gold: #c99622;
  --gold-soft: #f4e7c2;
  --ink: #101413;
  --muted: #4d5753;
  --line: rgba(7, 94, 54, 0.16);
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 45, 28, 0.12);
  --soft-shadow: 0 10px 28px rgba(10, 45, 28, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", Arial, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  display: block;
  max-width: 100%;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(7, 94, 54, 0.1);
  border-radius: 0 0 18px 18px;
  box-shadow: 0 10px 30px rgba(7, 52, 31, 0.1);
  backdrop-filter: blur(16px);
}

.navbar {
  width: min(1720px, 100%);
  min-height: 104px;
  margin: 0 auto;
  padding: 14px clamp(20px, 4.8vw, 112px);
  display: grid;
  grid-template-columns: minmax(210px, 370px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(20px, 2.8vw, 44px);
}

.brand {
  width: min(330px, 100%);
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand img {
  width: min(300px, 100%);
  height: 76px;
  object-fit: contain;
  object-position: left center;
}

.nav-panel {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(24px, 2.7vw, 48px);
  min-width: 0;
}

.nav-links {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2vw, 42px);
  list-style: none;
  min-width: 0;
}

.nav-links a,
.dropdown-toggle {
  min-height: 46px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: clamp(0.92rem, 0.95vw, 1.02rem);
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a::after,
.dropdown-toggle::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 3px;
  border-radius: 999px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-links a:hover,
.dropdown-toggle:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-links a:hover::after,
.dropdown-toggle:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.has-dropdown {
  position: relative;
}

.has-dropdown::before {
  content: "";
  position: absolute;
  top: 100%;
  right: -18px;
  left: -18px;
  height: 18px;
}

.dropdown-menu {
  position: fixed;
  top: 104px;
  left: 50%;
  z-index: 120;
  width: min(1180px, calc(100vw - 56px));
  min-height: 0;
  padding: 18px;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  align-items: start;
  gap: 18px;
  border: 1px solid rgba(7, 94, 54, 0.16);
  border-radius: 0 0 18px 18px;
  background:
    radial-gradient(circle at 16% 12%, rgba(201, 150, 34, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f2faf5 52%, #e8f4ed 100%);
  box-shadow: 0 28px 70px rgba(7, 52, 31, 0.18);
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.dropdown-menu::before {
  display: none;
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-column {
  min-height: 168px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(7, 94, 54, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 46px rgba(7, 52, 31, 0.1);
}

.mega-column h3 {
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(201, 150, 34, 0.32);
  color: var(--green-dark);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.dropdown-menu a {
  min-height: 34px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  color: #20331d;
  font-size: 0.96rem;
  font-weight: 600;
  line-height: 1.25;
  transition: background 0.22s ease, color 0.22s ease, transform 0.22s ease;
}

.dropdown-menu a::after {
  display: none;
}

.dropdown-menu a:hover {
  background: #e5f1e9;
  color: var(--green);
  transform: translateX(3px);
}

.has-dropdown:hover .dropdown-toggle i,
.has-dropdown.open .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-toggle i {
  transition: transform 0.24s ease;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 0 0 auto;
}

.language-translator,
.brochure-btn {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 9px;
  font-size: 1rem;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.language-translator {
  min-width: 178px;
  padding: 0 14px;
  border: 1px solid rgba(16, 20, 19, 0.08);
  background: var(--white);
  color: var(--ink);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

.language-translator > i {
  color: var(--green);
  font-size: 1.05rem;
  flex: 0 0 auto;
}

#google_translate_element {
  min-width: 130px !important;
}

#google_translate_element .goog-te-gadget {
  height: 34px;
  color: transparent;
  font-size: 0;
  line-height: 1;
}

#google_translate_element .goog-te-gadget span,
#google_translate_element .goog-te-gadget img {
  display: none;
}

#google_translate_element .goog-te-combo {
  width: 130px !important;
  min-width: 130px !important;
  min-height: 34px;
  margin: 0 !important;
  padding: 0 30px 0 10px;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font: inherit;
  font-size: 0.94rem;
  font-weight: 800;
  outline: none;
  cursor: pointer;
}

#google_translate_element .goog-te-combo:focus-visible {
  box-shadow: 0 0 0 3px rgba(7, 94, 54, 0.14);
}

body > .skiptranslate,
.goog-te-banner-frame {
  display: none !important;
}

body {
  top: 0 !important;
}

.brochure-btn {
  min-width: 166px;
  border: 1px solid var(--green);
  background: linear-gradient(180deg, #0d7044, var(--green));
  color: var(--white);
  box-shadow: 0 13px 28px rgba(7, 94, 54, 0.2);
}

.language-translator:hover,
.brochure-btn:hover {
  transform: translateY(-2px);
}

.brochure-btn:hover {
  box-shadow: 0 18px 34px rgba(7, 94, 54, 0.28);
}

.menu-toggle {
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  gap: 5px;
  border: 1px solid rgba(7, 94, 54, 0.16);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  width: 21px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: var(--green-dark);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: calc(100vh - 108px);
  min-height: calc(100svh - 108px);
  min-height: max(720px, calc(100svh - 108px));
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(48px, 5.2vw, 82px) clamp(22px, 6.6vw, 126px) clamp(42px, 5vw, 68px);
  background: #f7fbf8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(4, 31, 18, 0.12));
}

.hero-full-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #e8f2eb;
}

.hero-slider-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.06);
  animation: heroProductShowcase 25s infinite;
}

.hero-slider-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 34%, rgba(255, 255, 255, 0.72) 52%, rgba(255, 255, 255, 0.14) 80%),
    radial-gradient(circle at 23% 48%, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.72) 31%, rgba(255, 255, 255, 0) 56%);
  pointer-events: none;
}

.hero-slider-slide:nth-child(1) { animation-delay: 0s; }
.hero-slider-slide:nth-child(2) { animation-delay: 5s; }
.hero-slider-slide:nth-child(3) { animation-delay: 10s; }
.hero-slider-slide:nth-child(4) { animation-delay: 15s; }
.hero-slider-slide:nth-child(5) { animation-delay: 20s; }

.hero-slider-slide img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.08) contrast(1.06);
}

.hero-slide-copy {
  width: min(720px, calc(100% - clamp(44px, 13.2vw, 252px)));
  position: absolute;
  top: clamp(132px, 14svh, 172px);
  left: clamp(20px, 6.6vw, 126px);
  bottom: clamp(34px, 5svh, 66px);
  z-index: 2;
  opacity: 0;
  transform: translateX(-24px);
  animation: heroCopyShowcase 25s infinite;
  pointer-events: auto;
}

.hero-slider-slide:nth-child(1) .hero-slide-copy { animation-delay: 0s; }
.hero-slider-slide:nth-child(2) .hero-slide-copy { animation-delay: 5s; }
.hero-slider-slide:nth-child(3) .hero-slide-copy { animation-delay: 10s; }
.hero-slider-slide:nth-child(4) .hero-slide-copy { animation-delay: 15s; }
.hero-slider-slide:nth-child(5) .hero-slide-copy { animation-delay: 20s; }

.hero-grid {
  width: min(1560px, 100%);
  min-height: calc(100vh - 170px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 800px);
  align-items: end;
  align-content: end;
  gap: clamp(34px, 5vw, 88px);
  pointer-events: none;
}

.eyebrow {
  margin: 0 0 clamp(14px, 2.2svh, 22px);
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--green);
  font-size: clamp(0.98rem, min(1.32vw, 2.8svh), 1.36rem);
  font-weight: 700;
}

.eyebrow i {
  color: #65a82f;
  font-size: 1.2em;
}

.hero h1 {
  margin: 0;
  color: #101413;
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(3rem, min(5.9vw, 8.9svh), 6.35rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.72), 0 18px 42px rgba(5, 52, 31, 0.12);
}

.hero h1 span {
  display: block;
}

.hero h1 strong {
  color: #075e36;
  font: inherit;
}

.hero-description {
  max-width: 620px;
  margin: clamp(16px, 2.7svh, 26px) 0 0;
  color: #17231d;
  font-size: clamp(0.98rem, min(1.08vw, 2.45svh), 1.18rem);
  line-height: 1.55;
  font-weight: 650;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.72);
}

.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.primary-btn,
.secondary-btn {
  min-width: 198px;
  min-height: 56px;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border-radius: 7px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-slide-copy > .primary-btn {
  margin-top: clamp(18px, 2.8svh, 30px);
}

.primary-btn {
  border: 1px solid var(--green);
  background: linear-gradient(180deg, #0e7445, var(--green));
  color: var(--white);
  box-shadow: 0 15px 30px rgba(7, 94, 54, 0.22);
}

.secondary-btn {
  border: 1px solid rgba(5, 52, 31, 0.58);
  background: rgba(255, 255, 255, 0.9);
  color: var(--green-dark);
}

.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-3px);
}

.primary-btn:hover {
  box-shadow: 0 20px 38px rgba(7, 94, 54, 0.3);
}

.product-slider {
  background: #fff;
}

.product-slider::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: inherit;
  pointer-events: none;
}

.product-slider::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 52, 31, 0.04) 0%, transparent 42%),
    linear-gradient(0deg, rgba(5, 52, 31, 0.78) 0%, rgba(5, 52, 31, 0.42) 19%, transparent 45%);
  pointer-events: none;
}

.product-slider .slider-logo {
  position: absolute;
  top: 11%;
  left: 50%;
  z-index: 4;
  width: 25%;
  height: auto;
  max-height: 72px;
  padding: 8px;
  border-radius: 7px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(5, 52, 31, 0.12);
  transform: translateX(-50%);
}

.product-slide {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: end center;
  opacity: 0;
  transform: translateX(24%);
  animation: productSlideShow 20s infinite;
  will-change: opacity, transform;
}

.product-slide:nth-of-type(1) {
  animation-delay: 0s;
}

.product-slide:nth-of-type(2) {
  animation-delay: 4s;
}

.product-slide:nth-of-type(3) {
  animation-delay: 8s;
}

.product-slide:nth-of-type(4) {
  animation-delay: 12s;
}

.product-slide:nth-of-type(5) {
  animation-delay: 16s;
}

.product-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.product-slide div {
  position: relative;
  z-index: 3;
  width: min(72%, 330px);
  margin-bottom: 16%;
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.product-slide span,
.product-slide strong {
  display: block;
}

.product-slide span {
  margin-bottom: 8px;
  color: #f7d785;
  font-size: clamp(0.76rem, 0.95vw, 0.96rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-slide strong {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.5rem, 2.35vw, 2.65rem);
  line-height: 1.05;
}

.feature-strip {
  grid-column: 1;
  width: min(990px, 100%);
  margin-top: auto;
  align-self: end;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  position: relative;
  z-index: 5;
  pointer-events: auto;
  padding: 18px 20px;
  border: 1px solid rgba(7, 94, 54, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 42px rgba(7, 52, 31, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 34px;
  border-right: 1px solid var(--line);
}

.feature-card:first-child {
  padding-left: 0;
}

.feature-card:last-child {
  border-right: 0;
}

.feature-icon {
  width: 62px;
  height: 62px;
  flex: 0 0 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #168052, var(--green));
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 14px 28px rgba(7, 94, 54, 0.22);
}

.feature-card h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.feature-card p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.float-shape {
  position: absolute;
  z-index: -1;
  width: 40px;
  height: 14px;
  border-radius: 50%;
  background: rgba(152, 184, 106, 0.22);
  box-shadow: inset 0 0 0 1px rgba(101, 135, 72, 0.08);
  animation: leafDrift 7s ease-in-out infinite;
}

.shape-one {
  top: 18%;
  left: 42%;
  transform: rotate(-28deg);
}

.shape-two {
  top: 34%;
  left: 48%;
  animation-delay: 0.8s;
  transform: rotate(-48deg);
}

.shape-three {
  top: 67%;
  left: 45%;
  animation-delay: 1.4s;
  transform: rotate(-18deg);
}

.shape-four {
  top: 76%;
  left: 58%;
  animation-delay: 2s;
  transform: rotate(-36deg);
}

.whatsapp-float {
  position: fixed;
  right: 42px;
  bottom: 42px;
  z-index: 40;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #18d165;
  color: var(--white);
  font-size: 2.4rem;
  box-shadow: 0 18px 42px rgba(24, 209, 101, 0.36);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 48px rgba(24, 209, 101, 0.44);
}

body.whatsapp-chooser-open {
  overflow: hidden;
}

.whatsapp-chooser {
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 24px;
  display: grid;
  place-items: center;
  background: rgba(10, 18, 13, 0.68);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.whatsapp-chooser.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.whatsapp-chooser-box {
  width: min(520px, 100%);
  position: relative;
  padding: 36px;
  border: 1px solid rgba(7, 94, 54, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 26px 70px rgba(2, 35, 21, 0.24);
}

.whatsapp-chooser-box h3 {
  margin: 0 52px 8px 0;
  color: var(--green-dark);
  font-size: 1.7rem;
  line-height: 1.15;
}

.whatsapp-chooser-box > p {
  margin: 0 0 24px;
  color: var(--muted);
}

.whatsapp-choice-list {
  display: grid;
  gap: 14px;
}

.whatsapp-choice {
  min-height: 88px;
  padding: 16px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(7, 94, 54, 0.14);
  border-radius: 14px;
  background: #f7fbf8;
  color: var(--ink);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.whatsapp-choice:hover,
.whatsapp-choice:focus-visible {
  border-color: #1fb95a;
  background: #e8f5ec;
  transform: translateY(-2px);
  outline: none;
}

.whatsapp-choice > .fa-whatsapp {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  color: #082416;
  font-size: 1.55rem;
}

.whatsapp-choice span {
  min-width: 0;
  display: grid;
  gap: 5px;
}

.whatsapp-choice strong {
  color: var(--green-dark);
  font-size: 1.04rem;
  overflow-wrap: anywhere;
}

.whatsapp-choice small {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.whatsapp-choice-arrow {
  color: #168b43;
}

.whatsapp-chooser-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(7, 94, 54, 0.14);
  border-radius: 50%;
  background: #fff;
  color: var(--green-dark);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.whatsapp-chooser-close:hover,
.whatsapp-chooser-close:focus-visible {
  background: var(--green-dark);
  color: #fff;
  outline: none;
}

.content-section,
.network-section {
  padding: clamp(72px, 8vw, 120px) clamp(20px, 6.6vw, 126px);
}

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading span,
.network-copy span {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-heading h2,
.network-copy h2 {
  margin: 12px 0 0;
  color: var(--green-dark);
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.1;
}

.section-heading p,
.network-copy p {
  margin: 16px auto 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.7;
}

.about-grid,
.contact-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.about-image img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.about-copy,
.contact-card,
.contact-form,
.product-card,
.why-grid article,
.faq-item,
.network-section {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--soft-shadow);
}

.about-copy {
  padding: clamp(28px, 4vw, 48px);
}

.about-copy h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 2.5vw, 2.35rem);
  line-height: 1.18;
}

.about-copy > p {
  color: var(--muted);
  line-height: 1.75;
}

.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0;
}

.about-points article {
  padding: 18px;
  border-radius: 14px;
  background: var(--green-soft);
}

.about-points i,
.why-grid i {
  color: var(--green);
  font-size: 1.45rem;
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  margin-top: 10px;
  color: var(--green-dark);
}

.about-points span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.text-link,
.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green);
  font-weight: 900;
}

.faq-section {
  background: linear-gradient(180deg, #f8fbf8, #ffffff);
}

.products-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(201, 150, 34, 0.1), transparent 26%),
    linear-gradient(180deg, #f8fbf8 0%, #ffffff 100%);
}

.products-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 74% 4%, rgba(201, 150, 34, 0.1), transparent 18%),
    linear-gradient(90deg, rgba(7, 94, 54, 0.06), transparent 22%, transparent 78%, rgba(7, 94, 54, 0.05));
  pointer-events: none;
}

.products-section .section-heading span {
  color: #ffd229;
}

.products-section .section-heading h2,
.products-section .section-heading p {
  color: var(--green-dark);
  -webkit-text-fill-color: var(--green-dark);
}

.products-section .section-heading p {
  color: var(--muted);
  -webkit-text-fill-color: var(--muted);
}

.product-grid,
.why-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.products-section .product-grid {
  width: min(1540px, 100%);
  gap: clamp(20px, 2.5vw, 38px);
}

.product-card {
  --product-glow-green: #2E8B57;
  --product-glow-gold: #D4AF37;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.product-card::before {
  content: "";
  position: absolute;
  top: -45%;
  left: -85%;
  z-index: 4;
  width: 42%;
  height: 190%;
  background:
    linear-gradient(
      115deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.04) 28%,
      rgba(255, 255, 255, 0.18) 48%,
      rgba(255, 255, 255, 0.08) 62%,
      rgba(255, 255, 255, 0) 100%
    );
  filter: blur(1px);
  opacity: 0;
  transform: translate3d(0, 0, 0) rotate(8deg);
  transition:
    transform 0.8s cubic-bezier(0.19, 1, 0.22, 1),
    opacity 0.22s ease;
  pointer-events: none;
  will-change: transform, opacity;
}

.products-section .product-card {
  min-height: clamp(430px, 34vw, 580px);
  position: relative;
  cursor: default;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: #103b18;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(78px) scale(0.94);
  filter: blur(8px);
  transition:
    opacity 0.9s ease-out,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s ease-out,
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

.products-section .product-card.product-card-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
  transition:
    opacity 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease,
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow:
    0 30px 70px rgba(16, 44, 28, 0.2),
    0 0 0 1px rgba(46, 139, 87, 0.18),
    0 0 34px rgba(46, 139, 87, 0.16),
    0 0 46px rgba(212, 175, 55, 0.14);
}

.why-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.products-section .product-card.product-card-visible:hover {
  transform: translateY(-10px) scale(1.03);
  border-color: rgba(212, 175, 55, 0.42);
  box-shadow:
    0 38px 86px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(46, 139, 87, 0.28),
    0 0 36px rgba(46, 139, 87, 0.26),
    0 0 54px rgba(212, 175, 55, 0.2);
  transition-delay: 0s;
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
  transform: translate3d(455%, 0, 0) rotate(8deg);
}

.products-section .product-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
  opacity: 0;
  transform: translateY(10px);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}

.products-section .product-card:hover::after {
  opacity: 1;
  transform: translateY(0);
}

.product-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  background: var(--green-soft);
}

.products-section .product-card img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.01);
  cursor: default;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.products-section .product-card:hover img {
  filter: saturate(1.16) contrast(1.08);
  transform: scale(1.08);
}

.products-section .product-card:nth-child(4) img {
  object-position: center center;
  transform: scale(1.16);
}

.products-section .product-card:nth-child(4):hover img {
  transform: scale(1.22);
}

.product-card div,
.why-grid article {
  padding: 22px;
}

.products-section .product-card div {
  min-height: 46%;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  padding: clamp(24px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: transparent;
  cursor: default;
}

.product-card h3,
.why-grid h3,
.contact-card h3 {
  margin: 0 0 10px;
  color: var(--green-dark);
  font-size: 1.25rem;
}

.products-section .product-card h3 {
  width: min(100%, 360px);
  margin: 0 0 14px;
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  font-size: clamp(1.7rem, 2.1vw, 2.65rem);
  line-height: 1.08;
  text-shadow: 0 12px 26px rgba(0, 0, 0, 0.4);
}

.products-section .product-card h3::before {
  content: "";
  width: 72px;
  height: 3px;
  margin: 0 0 14px;
  display: block;
  border-radius: 999px;
  background: #ffd229;
  box-shadow: 0 0 22px rgba(255, 210, 41, 0.32);
}

.product-card p,
.why-grid p,
.contact-card p {
  color: var(--muted);
  line-height: 1.65;
}

.products-section .product-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  -webkit-text-fill-color: rgba(255, 255, 255, 0.82);
  font-size: clamp(0.92rem, 1vw, 1rem);
  line-height: 1.56;
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.32);
}

.products-section .product-card a {
  width: 54px;
  height: 54px;
  position: absolute;
  top: clamp(20px, 2.4vw, 34px);
  right: clamp(20px, 2.4vw, 34px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: #ffd229;
  color: #082b13;
  -webkit-text-fill-color: #082b13;
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.4s ease, background 0.4s ease;
}

.products-section .product-card a i {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #082b13;
  -webkit-text-fill-color: #082b13;
  font-size: 1.18rem;
  line-height: 1;
  transform: translateX(1px);
  pointer-events: none;
}

.products-section .product-card a:hover,
.products-section .product-card a:focus-visible {
  transform: translateY(-3px) scale(1.05);
  background: #ffe36b;
  color: #082b13;
  -webkit-text-fill-color: #082b13;
}

.products-section .product-card a:hover i,
.products-section .product-card a:focus-visible i {
  color: #082b13;
  -webkit-text-fill-color: #082b13;
}

.network-section {
  width: min(1480px, calc(100% - 48px));
  margin: clamp(44px, 6vw, 82px) auto;
  min-height: auto;
  padding: clamp(34px, 4vw, 58px);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(340px, 1.14fr);
  gap: clamp(26px, 4vw, 68px);
  align-items: stretch;
  background:
    radial-gradient(circle at 74% 38%, rgba(52, 169, 255, 0.18), transparent 27%),
    radial-gradient(circle at 55% 72%, rgba(255, 210, 41, 0.1), transparent 30%),
    linear-gradient(135deg, #05311e 0%, #031a12 58%, #01090d 100%);
  color: var(--white);
}

.network-section::before {
  display: none;
}

.network-section::after {
  display: none;
}

.network-copy h2,
.network-copy p {
  color: var(--white);
}

.network-copy {
  position: relative;
  z-index: 3;
  width: min(760px, 100%);
  max-width: none;
  margin: auto 0;
  text-align: left;
}

.network-copy h2 {
  max-width: 650px;
  margin-right: 0;
  margin-left: 0;
  font-size: clamp(2.35rem, 3.7vw, 4.25rem);
  line-height: 1.04;
  text-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.network-copy p {
  max-width: 640px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.65;
}

.network-globe-stage {
  min-height: clamp(360px, 34vw, 520px);
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(121, 214, 255, 0.24);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 45%, rgba(58, 178, 255, 0.17), transparent 35%),
    radial-gradient(circle at 20% 15%, rgba(255, 255, 255, 0.08), transparent 19%),
    linear-gradient(145deg, rgba(5, 18, 28, 0.94), rgba(1, 6, 12, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 0 70px rgba(46, 180, 255, 0.1),
    0 28px 62px rgba(0, 0, 0, 0.28);
  isolation: isolate;
}

.network-globe-stage::before {
  content: "";
  position: absolute;
  inset: 9%;
  z-index: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 58% 42%, rgba(163, 233, 255, 0.22), transparent 21%),
    radial-gradient(circle, rgba(60, 171, 255, 0.16), rgba(60, 171, 255, 0) 68%);
  filter: blur(10px);
  pointer-events: none;
}

.network-globe-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 17%, transparent 80%, rgba(255, 255, 255, 0.05)),
    radial-gradient(circle at 53% 46%, transparent 0 34%, rgba(0, 0, 0, 0.18) 64%, rgba(0, 0, 0, 0.34) 100%);
  pointer-events: none;
}

.network-globe-canvas {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
}

.network-globe-labels {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.network-globe-label {
  position: absolute;
  padding: 6px 10px;
  border: 1px solid rgba(154, 226, 255, 0.42);
  border-radius: 999px;
  background: rgba(2, 11, 18, 0.82);
  color: #ffffff;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(8px) scale(0.96);
  transition: opacity 0.22s ease, transform 0.22s ease;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.3), 0 0 16px rgba(77, 199, 255, 0.18);
}

.network-globe-label.is-visible {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0) scale(1);
}

.network-globe-label.is-hub {
  border-color: rgba(255, 233, 126, 0.62);
  background: rgba(255, 210, 41, 0.94);
  color: #082b13;
}

.network-globe-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 5;
  padding: 14px 16px;
  border: 1px solid rgba(121, 214, 255, 0.26);
  border-radius: 14px;
  background: rgba(1, 13, 22, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.26);
}

.network-globe-caption strong,
.network-globe-caption span {
  display: block;
}

.network-globe-caption strong {
  color: #ffd229;
  font-size: 0.94rem;
}

.network-globe-caption span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  line-height: 1.45;
}

.network-stats {
  grid-column: 1 / -1;
  width: min(760px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.network-stats article {
  min-height: 136px;
  min-width: 0;
  padding: 24px 12px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.09);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 16px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  backdrop-filter: blur(8px);
}

.network-stats strong,
.network-stats span {
  display: block;
}

.network-stats strong {
  color: var(--white);
  font-size: clamp(1.9rem, 2.35vw, 2.35rem);
  line-height: 1;
  white-space: nowrap;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.16);
}

.network-stats span {
  margin-top: 12px;
  color: var(--gold-soft);
  font-size: clamp(0.92rem, 1.15vw, 1.08rem);
  font-weight: 700;
}

/* Medium homepage scale for better desktop visibility. */
@media (min-width: 1081px) {
  .navbar {
    min-height: 116px;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .brand img {
    width: min(330px, 100%);
    height: 86px;
  }

  .nav-links a,
  .dropdown-toggle {
    font-size: clamp(1rem, 1vw, 1.1rem);
  }

  .language-translator,
  .brochure-btn {
    min-height: 64px;
    font-size: 1.05rem;
  }

  .hero {
    min-height: calc(100vh - 116px);
    min-height: calc(100svh - 116px);
    min-height: max(760px, calc(100svh - 116px));
    padding-top: clamp(56px, 5.6vw, 92px);
    padding-bottom: clamp(48px, 5.2vw, 76px);
  }

  .hero-grid {
    width: min(1680px, 100%);
    grid-template-columns: minmax(380px, 850px);
    gap: clamp(46px, 6vw, 104px);
  }

  .hero h1 {
    font-size: clamp(3.45rem, min(6.1vw, 8.8svh), 6.7rem);
  }

  .hero-description {
    max-width: 680px;
    font-size: clamp(1.02rem, min(1.12vw, 2.42svh), 1.24rem);
  }

  .primary-btn,
  .secondary-btn {
    min-width: 214px;
    min-height: 60px;
    padding-right: 32px;
    padding-left: 32px;
    font-size: 1rem;
  }

  .content-section,
  .network-section {
    padding-top: clamp(86px, 8.5vw, 136px);
    padding-bottom: clamp(86px, 8.5vw, 136px);
  }

  .section-heading {
    width: min(980px, 100%);
    margin-bottom: 52px;
  }

  .section-heading h2,
  .network-copy h2 {
    font-size: clamp(2.35rem, 4.25vw, 4.55rem);
  }

  .section-heading p,
  .network-copy p {
    font-size: clamp(1.08rem, 1.18vw, 1.24rem);
  }

  .about-grid,
  .contact-grid,
  .product-grid,
  .why-grid,
  .footer-grid {
    width: min(1320px, 100%);
  }

  .product-grid,
  .why-grid {
    gap: 26px;
  }

  .product-card img {
    height: 245px;
  }

  .product-card div,
  .why-grid article {
    padding: 26px;
  }

  .product-card h3,
  .why-grid h3,
  .contact-card h3 {
    font-size: 1.36rem;
  }

  .product-card p,
  .why-grid p,
  .contact-card p {
    font-size: 1.02rem;
  }
}

.why-grid article {
  min-height: 240px;
}

.faq-list {
  width: min(880px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq-item {
  width: 100%;
  padding: 22px 24px;
  border-color: var(--line);
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-item > span {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--green-dark);
  font-size: 1.04rem;
  font-weight: 900;
}

.faq-item > span::after {
  content: "+";
  color: var(--gold);
  font-size: 1.4rem;
}

.faq-item.open > span::after {
  content: "-";
}

.faq-item p {
  display: none;
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.open p {
  display: block;
}

.contact-card,
.contact-form {
  padding: clamp(24px, 4vw, 40px);
}

.contact-card {
  background: rgba(14, 58, 40, 0.55) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
}

.contact-card p {
  display: flex;
  gap: 12px;
}

.contact-card i {
  width: 22px;
  color: #D4AF37;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(7, 94, 54, 0.18);
  border-radius: 10px;
  font: inherit;
  outline: none;
}

.contact-form textarea {
  min-height: 150px;
  padding-top: 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(7, 94, 54, 0.1);
}

.contact-form button {
  min-height: 58px;
  border: 0;
  border-radius: 10px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.site-footer {
  padding: 56px clamp(20px, 6.6vw, 126px) 24px;
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.site-footer img {
  width: 240px;
  max-width: 100%;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  margin: 0 0 16px;
  color: var(--white);
}

.site-footer a,
.site-footer p {
  display: block;
  margin: 0 0 10px;
  line-height: 1.6;
}

.site-footer a:hover {
  color: var(--gold-soft);
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.site-footer .footer-social-links a {
  width: 40px;
  height: 40px;
  margin: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.site-footer .footer-social-links a:hover {
  transform: translateY(-2px);
  background: var(--gold);
  color: var(--green-dark);
}

.footer-bottom {
  width: min(1180px, 100%);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes badgeIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes slowPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes productSlideShow {
  0%,
  18% {
    opacity: 1;
    transform: translateX(0);
  }
  23%,
  100% {
    opacity: 0;
    transform: translateX(-24%);
  }
}

@keyframes heroProductShowcase {
  0%,
  18% {
    opacity: 1;
    transform: scale(1);
  }

  24%,
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes heroCopyShowcase {
  0% {
    opacity: 0;
    transform: translateX(-24px);
  }

  4%,
  18% {
    opacity: 1;
    transform: translateX(0);
  }

  23%,
  100% {
    opacity: 0;
    transform: translateX(18px);
  }
}

@keyframes leafDrift {
  0%,
  100% {
    opacity: 0.55;
    translate: 0 0;
  }
  50% {
    opacity: 1;
    translate: 14px -18px;
  }
}

@media (max-width: 1380px) {
  .navbar {
    grid-template-columns: minmax(180px, 270px) minmax(0, 1fr);
    gap: 18px;
    padding-right: 34px;
    padding-left: 34px;
  }

  .brand img {
    width: min(250px, 100%);
    height: 68px;
  }

  .nav-panel {
    gap: 18px;
  }

  .nav-links {
    gap: 16px;
  }

  .nav-links a,
  .dropdown-toggle {
    font-size: 0.88rem;
  }

  .language-translator {
    min-width: 104px;
  }

  .brochure-btn {
    min-width: 128px;
  }

  .dropdown-menu {
    top: 96px;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    gap: 14px;
    width: min(1060px, calc(100vw - 40px));
  }

  .mega-column {
    padding: 16px;
  }

  .mega-column h3 {
    font-size: 1rem;
  }

  .dropdown-menu a {
    min-height: 32px;
    font-size: 0.9rem;
  }
}

@media (max-width: 1240px) {
  .site-header {
    border-radius: 0 0 14px 14px;
  }

  .navbar {
    min-height: 82px;
    grid-template-columns: minmax(180px, 1fr) auto;
    padding: 10px 18px;
  }

  .brand img {
    width: 230px;
    height: 58px;
  }

  .menu-toggle {
    display: grid;
  }

  .nav-panel {
    position: fixed;
    top: 82px;
    right: 0;
    bottom: 0;
    width: min(380px, 100vw);
    padding: 22px;
    display: block;
    overflow-y: auto;
    background: var(--white);
    border-left: 1px solid rgba(7, 94, 54, 0.12);
    box-shadow: -20px 0 42px rgba(10, 45, 28, 0.12);
    transform: translateX(105%);
    transition: transform 0.28s ease;
  }

  body.nav-open .nav-panel {
    transform: translateX(0);
  }

  .nav-links {
    display: grid;
    align-items: stretch;
    gap: 6px;
  }

  .nav-links a,
  .dropdown-toggle {
    width: 100%;
    min-height: 50px;
    justify-content: space-between;
    padding: 0 12px;
    border-radius: 9px;
  }

  .nav-links a::after,
  .dropdown-toggle::after {
    display: none;
  }

  .nav-links a:hover,
  .dropdown-toggle:hover,
  .nav-links a.active {
    background: var(--green-soft);
  }

  .dropdown-menu {
    position: static;
    min-width: 0;
    width: 100%;
    min-height: 0;
    margin: 6px 0 10px;
    padding: 10px;
    display: none;
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 12px;
    background: #f3eddf;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown::before,
  .dropdown-menu::before {
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: grid;
  }

  .mega-column {
    min-height: 0;
    padding: 14px;
    border-radius: 12px;
    box-shadow: none;
  }

  .mega-column h3 {
    margin-bottom: 8px;
    padding-bottom: 10px;
    font-size: 1rem;
  }

  .dropdown-menu a {
    min-height: 40px;
    padding: 8px 10px;
    font-size: 0.96rem;
  }

  .nav-actions {
    margin-top: 18px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .language-translator,
  .brochure-btn {
    width: 100%;
  }

  .language-translator {
    justify-content: flex-start;
  }

  .hero {
    min-height: calc(100svh - 82px);
    min-height: max(680px, calc(100svh - 82px));
    padding: 46px 20px 38px;
  }

  .hero-slide-copy {
    width: calc(100% - 40px);
    top: clamp(108px, 13svh, 136px);
    left: 20px;
    bottom: 34px;
  }

  .hero-slider-slide::before {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.97) 0%, rgba(255, 255, 255, 0.9) 58%, rgba(255, 255, 255, 0.24) 100%),
      linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.62));
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-slider .slider-logo {
    width: 24%;
    max-height: 62px;
  }

  .product-slide div {
    width: min(76%, 310px);
    margin-bottom: 15%;
  }

  .feature-strip {
    order: 3;
    grid-column: auto;
    grid-template-columns: 1fr;
    max-width: 560px;
    gap: 0;
  }

  .feature-card,
  .feature-card:first-child {
    padding: 16px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-card:last-child {
    border-bottom: 0;
  }

  .about-grid,
  .contact-grid,
  .network-section,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .network-section {
    width: min(900px, calc(100% - 36px));
    padding: clamp(44px, 7vw, 64px) clamp(24px, 6vw, 54px);
  }

  .network-copy {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .network-copy h2,
  .network-copy p {
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
  }

  .network-globe-stage {
    min-height: 440px;
  }

  .product-grid,
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .navbar {
    min-height: 76px;
    padding: 8px 12px;
  }

  .brand img {
    width: 190px;
    height: 52px;
  }

  .nav-panel {
    top: 76px;
  }

  .hero {
    padding: 30px 18px 32px;
    min-height: calc(100svh - 76px);
    min-height: max(650px, calc(100svh - 76px));
  }

  .hero-slide-copy {
    width: calc(100% - 36px);
    top: clamp(92px, 12svh, 112px);
    left: 18px;
    bottom: 28px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    font-size: clamp(2.45rem, min(12.8vw, 8.4svh), 4rem);
  }

  .hero-description {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.5;
  }

  .hero-actions,
  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .hero-actions {
    gap: 12px;
  }

  .product-slider::before {
    inset: 8px;
  }

  .product-slider .slider-logo {
    top: 10%;
    width: 28%;
    max-height: 54px;
    padding: 6px;
  }

  .product-slide div {
    width: 78%;
    margin-bottom: 17%;
  }

  .product-slide span {
    margin-bottom: 6px;
    font-size: 0.7rem;
  }

  .product-slide strong {
    font-size: clamp(1.35rem, 8vw, 2rem);
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    flex-basis: 52px;
    font-size: 1.25rem;
  }

  .float-shape {
    opacity: 0.55;
  }

  .whatsapp-float {
    right: 18px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .whatsapp-chooser {
    align-items: flex-end;
    padding: 12px;
  }

  .whatsapp-chooser-box {
    padding: 30px 18px 18px;
    border-radius: 16px;
  }

  .whatsapp-chooser-box h3 {
    padding-right: 36px;
    font-size: 1.45rem;
  }

  .whatsapp-chooser-close {
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
  }

  .whatsapp-choice {
    min-height: 82px;
    grid-template-columns: 46px minmax(0, 1fr) 16px;
    gap: 13px;
    padding: 15px;
  }

  .whatsapp-choice > .fa-whatsapp {
    width: 46px;
    height: 46px;
    font-size: 1.35rem;
  }

  .content-section,
  .network-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .network-section {
    width: min(520px, calc(100% - 24px));
    margin-top: 34px;
    margin-bottom: 34px;
    padding-top: 38px;
    padding-bottom: 38px;
    border-radius: 14px;
  }

  .network-copy h2 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  .network-copy p {
    margin-top: 18px;
    font-size: 1rem;
  }

  .network-globe-stage {
    min-height: 330px;
    border-radius: 14px;
  }

  .network-globe-caption {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 12px;
  }

  .network-globe-label {
    font-size: 0.66rem;
    padding: 5px 8px;
  }

  .about-points,
  .product-grid,
  .why-grid,
  .network-stats {
    grid-template-columns: 1fr;
  }

  .network-stats article {
    min-height: 104px;
  }

  .about-image img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .products-section .product-card {
    opacity: 1;
    transform: none;
  }

  .product-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .product-slide:first-of-type {
    opacity: 1;
  }

  .hero-slider-slide {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slider-slide:first-of-type {
    opacity: 1;
  }

  .hero-slide-copy {
    animation: none;
    opacity: 0;
    transform: none;
  }

  .hero-slider-slide:first-of-type .hero-slide-copy {
    opacity: 1;
  }
}

/* ========================================================
   MERIDIAN MARITIME REDESIGN - LUXURY & PREMIUM OVERRIDES
   ======================================================== */

/* General Overrides */
body {
  background-color: #062A1B !important;
  color: #F7F7F5 !important;
}

/* Header & Navbar */
/* Header & Navbar Overrides for index.html */
.site-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5000 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  padding: 10px clamp(12px, 2vw, 24px) 0 !important;
  transition: all 0.3s ease !important;
  pointer-events: none !important;
}

.site-navbar {
  pointer-events: auto !important;
  background: rgba(255, 255, 255, 0.96) !important; /* light capsule matching screen */
  border: 1px solid rgba(9, 73, 45, 0.14) !important;
  border-radius: 999px !important; /* mm-radius: capsule layout */
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
  box-shadow: 0 14px 40px rgba(15, 46, 31, 0.12) !important;
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  height: 60px !important; /* mm-nav-h */
  padding: 0 24px !important; /* capsule padding */
}

/* Scrolled State */
.site-header.scrolled .site-navbar {
  background: rgba(255, 255, 255, 0.98) !important;
  box-shadow: 0 8px 28px rgba(15, 46, 31, 0.16) !important;
}

/* Logo Perfect Visibility Override */
.site-navbar .logo-image {
  height: 52px !important;
  max-height: 52px !important;
  width: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.site-navbar .brand-name {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
}

/* Nav Links text styles (desktop) */
@media (min-width: 1041px) {
  .site-navbar .nav-links > a,
  .site-navbar .nav-links button.mega-link {
    color: #1a1c1e !important; /* mm-ink */
    font-weight: 600; /* bolder links */
    font-size: 0.96rem; /* slightly larger font size */
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 14px !important; /* adjusted padding */
    border-radius: 999px !important; /* capsule links background */
    transition: all 0.25s ease !important;
    text-decoration: none;
    background: transparent;
    border: none;
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
  }

  .site-navbar .nav-links > a:hover,
  .site-navbar .nav-links button.mega-link:hover {
    color: #0f2e1f !important; /* mm-green */
    background: rgba(15, 46, 31, 0.05) !important;
  }

  /* Active item highlight (like "About" in user screenshot: soft green rounded background) */
  .site-navbar .nav-links > a.active {
    color: #0f2e1f !important;
    background: rgba(15, 46, 31, 0.08) !important;
    font-weight: 700 !important;
    border-radius: 999px !important; /* capsule active background */
  }
}

/* Select Language Translate Element */
.language-translator {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(15, 46, 31, 0.12);
  border-radius: 999px !important; /* capsule translator container */
  padding: 6px 14px;
  color: #1a1c1e;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  cursor: pointer;
}

.language-translator:hover {
  background: rgba(15, 46, 31, 0.08);
  border-color: rgba(15, 46, 31, 0.24);
}

/* Green Brochure button matching screen */
.brochure-btn {
  background: #0f2e1f !important; /* mm-green */
  color: #ffffff !important;
  border: none !important;
  border-radius: 999px !important; /* capsule brochure button */
  padding: 8px 20px !important;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: capitalize !important;
  letter-spacing: 0.5px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
}

.brochure-btn:hover {
  background: #1b6b48 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(15, 46, 31, 0.2) !important;
}

/* ==========================================
   HERO SECTION - SPLIT LAYOUT
   ========================================== */
/* ==========================================
   HERO SECTION - FULL-SCREEN SLIDER LAYOUT
   ========================================== */
.hero-premium {
  position: relative;
  min-height: 100vh;
  width: 100%;
  overflow: hidden;
  background: #062a1b;
}

.hero-premium .hero-right-slider {
  width: 100%;
  height: 100vh;
  display: block;
}

.hero-premium .slider-container {
  width: 100%;
  height: 100%;
  position: relative;
  border-radius: 0;
  border: none;
  box-shadow: none;
  overflow: hidden;
}

.slides-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}

.slider-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.slider-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}

.zoom-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s linear;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(6, 42, 27, 0.95) 0%, rgba(6, 42, 27, 0.45) 50%, transparent 100%);
}

.slide-info {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1200px;
  z-index: 15;
}

.slide-info h3 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  color: #F7F7F5;
  margin-bottom: 16px;
  font-family: 'Cinzel', Georgia, serif;
}

.slide-info p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 650px;
}

.btn-slide {
  background: #D4AF37;
  color: #062A1B;
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-slide:hover {
  background: #f1c40f;
  color: #062A1B;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(14, 58, 40, 0.7);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #F7F7F5;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 20;
  font-size: 1.2rem;
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.slider-arrow:hover {
  background: #D4AF37;
  color: #062A1B;
  border-color: #D4AF37;
}

.prev-arrow {
  left: 20px;
}

.next-arrow {
  right: 20px;
}

.slider-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 25;
}

.progress-fill {
  width: 0%;
  height: 100%;
  background: #D4AF37;
  transition: width 0.05s linear;
}

/* ==========================================
   PREMIUM EXPORT CATEGORIES SECTION
   ========================================== */
.products-section {
  background-color: #062A1B !important;
  padding: 100px 0;
}

.section-title-large {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  color: #F7F7F5 !important;
}

.product-category-grid {
  max-width: 1400px;
  margin: 50px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.product-category-card {
  border-radius: 20px;
  overflow: hidden;
  background: #0E3A28;
  border: 1px solid rgba(212, 175, 55, 0.15);
  position: relative;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.card-link-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.product-card-image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 0.85;
  overflow: hidden;
}

.category-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #0E3A28 100%, transparent 0%);
  opacity: 0.15;
  transition: opacity 0.4s ease;
}

.card-icon-floating {
  position: absolute;
  top: 20px;
  right: 20px;
  left: auto;
  background: rgba(14, 58, 40, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #D4AF37;
  backdrop-filter: blur(5px);
  z-index: 10;
  transition: all 0.3s ease;
}

.product-info-inside {
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.product-card-subtitle-gold {
  color: #D4AF37;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.product-card-title-white {
  font-size: 1.4rem;
  font-weight: 800;
  color: #F7F7F5;
  margin-bottom: 12px;
}

.product-card-description-white {
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  height: 70px;
  overflow: hidden;
}

.product-card-footer-luxury {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

.product-card-count-outlined {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 12px;
}

.product-explore-link {
  color: #D4AF37;
  font-size: 0.9rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: transform 0.2s ease;
}

/* Hover effects */
.product-category-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.15);
  border-color: #D4AF37;
}

.product-category-card:hover .category-image {
  transform: scale(1.06);
}

.product-category-card:hover .card-icon-floating {
  background: #D4AF37;
  color: #062A1B;
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.product-category-card:hover .product-explore-link {
  transform: translateX(4px);
}

/* ==========================================
   GLOBAL REACH SECTION
   ========================================== */
.network-section-premium {
  background-color: #062A1B !important;
  padding: 100px 0;
  display: grid;
  grid-template-columns: 45% 55%;
  max-width: 1400px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
  align-items: center;
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.network-copy-premium {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.network-copy-premium h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  margin-top: 12px;
  margin-bottom: 20px;
  color: #F7F7F5;
}

.network-copy-premium p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 30px;
}

/* Destination tags */
.destination-labels-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.dest-tag {
  background: #0E3A28;
  border: 1px solid rgba(212, 175, 55, 0.2);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s ease;
}

.dest-tag i {
  color: #D4AF37;
}

.dest-tag:hover {
  border-color: #D4AF37;
  color: #D4AF37;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(212, 175, 55, 0.1);
}

/* Stats Beside Globe */
.network-stats-premium {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  margin-bottom: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.network-stat-item {
  display: flex;
  flex-direction: column;
}

.network-stat-item strong {
  font-size: 2.2rem;
  font-weight: 800;
  color: #D4AF37;
  margin-bottom: 6px;
}

.network-stat-item span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.network-globe-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-globe-canvas {
  width: 100%;
  height: 100%;
  max-width: 580px;
  max-height: 580px;
}

.network-globe-labels span {
  font-size: 0.72rem !important;
  color: #F7F7F5 !important;
  background: rgba(14, 58, 40, 0.9) !important;
  border: 1px solid #D4AF37 !important;
  border-radius: 4px !important;
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-section-premium {
  background-color: #062A1B !important;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.why-grid-premium {
  max-width: 1400px;
  margin: 50px auto 0;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-card-premium {
  display: flex;
  align-items: center;
  gap: 30px;
  background: rgba(14, 58, 40, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 24px 32px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-card-icon {
  background: rgba(212, 175, 55, 0.1);
  border: 1.5px solid rgba(212, 175, 55, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #D4AF37;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-card-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #F7F7F5;
  margin-bottom: 8px;
}

.why-card-content p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* Hover effect */
.why-card-premium:hover {
  transform: translateX(10px);
  background: rgba(14, 58, 40, 0.7);
  border-color: #D4AF37;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.08);
}

.why-card-premium:hover .why-card-icon {
  background: #D4AF37;
  color: #062A1B;
  border-color: #D4AF37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}

/* ==========================================
   RESPONSIVENESS
   ========================================== */
@media (max-width: 1024px) {
  .hero-split-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .network-section-premium {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .navbar {
    padding: 15px 20px;
  }
  .nav-panel {
    display: none; /* simple hidden for mobile, menu toggle is shown */
  }
  .product-category-grid {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .why-grid-premium {
    padding: 0 20px;
  }
  .why-card-premium {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
  }
}

/* High-contrast overrides for dark emerald background sections */
.why-section-premium h2,
.why-section-premium .section-heading h2,
.products-section h2,
.products-section .section-heading h2,
.network-section-premium h2,
.network-section-premium .network-copy-premium h2,
.about-section h2,
.about-section .section-heading h2,
.contact-section h2,
.contact-section .section-heading h2 {
  color: #F7F7F5 !important;
}

.why-section-premium .section-heading span,
.products-section .section-heading span,
.network-section-premium .network-copy-premium span,
.about-section .section-heading span,
.contact-section .section-heading span {
  color: #D4AF37 !important;
}

.about-copy h3,
.about-copy p,
.about-points article,
.about-points article strong,
.about-points article span {
  color: #F7F7F5 !important;
}

/* Contact card - styled with dark emerald background for readability */
.contact-card h3 {
  color: #F7F7F5 !important;
}

.contact-card p {
  color: rgba(255, 255, 255, 0.82) !important;
}

.contact-card i {
  color: #D4AF37 !important;
}

.about-points article i {
  color: #D4AF37 !important;
}

/* Contact section dark background */
.contact-section {
  background-color: #062A1B !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-form input,
.contact-form textarea {
  background: rgba(14, 58, 40, 0.45) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  color: #F7F7F5 !important;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.45) !important;
}

.contact-form button[type="submit"] {
  background: #D4AF37 !important;
  color: #062A1B !important;
}

/* About Us Section Redesign */
.about-section {
  background-color: #062A1B !important;
  padding: 100px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-copy {
  background: rgba(14, 58, 40, 0.45) !important;
  border: 1px solid rgba(212, 175, 55, 0.15) !important;
  border-radius: 20px !important;
  backdrop-filter: blur(12px) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  padding: 40px !important;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3) !important;
}

.about-copy h3 {
  color: #F7F7F5 !important;
  font-family: "Cinzel", Georgia, serif;
  font-weight: 700;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem) !important;
  line-height: 1.25 !important;
  margin-bottom: 20px !important;
}

.about-copy > p {
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.7 !important;
  font-size: 1rem !important;
  margin-bottom: 30px !important;
}

/* About Point cards (Trusted Quality & Global Reach) */
.about-points article {
  background: rgba(6, 42, 27, 0.6) !important;
  border: 1px solid rgba(212, 175, 55, 0.2) !important;
  border-radius: 12px !important;
  padding: 20px !important;
  transition: all 0.3s ease !important;
}

.about-points article:hover {
  transform: translateY(-3px) !important;
  border-color: #D4AF37 !important;
  background: rgba(14, 58, 40, 0.8) !important;
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.1) !important;
}

.about-points article i {
  font-size: 1.5rem !important;
  color: #D4AF37 !important;
  margin-bottom: 12px !important;
  display: block;
}

.about-points article strong {
  color: #F7F7F5 !important;
  font-size: 1.05rem !important;
  margin-bottom: 6px !important;
  display: block;
}

.about-points article span {
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 0.85rem !important;
  line-height: 1.4 !important;
  display: block;
}

/* Text link "Read Our Story" */
.about-copy .text-link {
  color: #D4AF37 !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 1rem !important;
  transition: transform 0.2s ease !important;
}

.about-copy .text-link:hover {
  color: #F7F7F5 !important;
  transform: translateX(4px) !important;
}


