:root {
  --vmg-ink: #14231b;
  --vmg-muted: #637267;
  --vmg-green: #236342;
  --vmg-green-dark: #123b29;
  --vmg-lime: #9bb946;
  --vmg-coir: #9f5226;
  --vmg-clay: #d8a66b;
  --vmg-cream: #f7f5ee;
  --vmg-line: rgba(20, 35, 27, .12);
  --vmg-shadow: 0 24px 70px rgba(18, 59, 41, .16);
}

html {
  scroll-behavior: smooth;
}

body#indexPage > section:not(.vmg-redesign),
body.products-page > section:not(.vmg-redesign) {
  display: none !important;
}

body#indexPage > main.vmg-redesign ~ :not(script):not(style):not(link):not(.floating-buttons),
body.products-page > main.vmg-redesign ~ :not(script):not(style):not(link):not(.floating-buttons) {
  display: none !important;
}

body#indexPage,
body.products-page {
  margin: 0;
  color: var(--vmg-ink);
  background: #fff;
  font-size: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body#indexPage > header,
body#indexPage > main.vmg-redesign,
body.products-page > header,
body.products-page > main.vmg-redesign {
  font-size: 16px;
}

.floating-buttons {
  position: fixed !important;
  right: 30px !important;
  bottom: 50px !important;
  z-index: 2147483647 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  pointer-events: auto !important;
}

.floating-buttons a {
  width: 60px !important;
  height: 60px !important;
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  transition: 0.3s ease !important;
}

.floating-buttons a:hover {
  transform: scale(1.08);
}

.whatsapp-btn {
  background: #25D366 !important;
}

.inquiry-btn {
  background: #1f6a45 !important;
}

.floating-buttons img {
  width: 32px;
  height: 32px;
  display: block;
}

.header.fixed-header {
  position: fixed !important;
  inset: 0 0 auto 0;
  z-index: 5000;
  border-bottom: 1px solid rgba(20, 35, 27, .1);
  background: rgba(255, 255, 255, .9) !important;
  box-shadow: 0 10px 34px rgba(20, 35, 27, .08);
  backdrop-filter: blur(18px);
  transition: background .25s ease, box-shadow .25s ease, transform .25s ease;
  padding: 8px 0 !important;
  height: auto !important;
}

.header.fixed-header,
main.vmg-redesign {
  transition: opacity .22s ease, transform .22s ease;
}

body.page-leaving .header.fixed-header,
body.page-leaving main.vmg-redesign {
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

body.has-sticky-header {
  padding-top: var(--vmg-header-height, 82px);
}

.header.fixed-header.is-scrolled {
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 16px 42px rgba(20, 35, 27, .14);
}

.header.fixed-header .nav-inner {
  min-height: 88px;
}

.header.fixed-header .brand-logo {
  width: 68px !important;
  height: 68px !important;
  object-fit: contain;
}

.header.fixed-header .brand {
  gap: 12px;
}

.header.fixed-header .brand-title {
  color: var(--vmg-green-dark) !important;
  font-weight: 900;
  font-size: clamp(22px, 1.5vw, 28px);
  line-height: 1.05;
}

.header.fixed-header .brand-sub {
  color: var(--vmg-muted) !important;
  font-size: 14px;
}

.header.fixed-header .desktop-menu {
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid rgba(20, 35, 27, .08);
  border-radius: 999px;
  background: rgba(247, 245, 238, .74);
}

.header.fixed-header .menu-link {
  position: relative;
  padding: 10px 15px !important;
  border-radius: 999px;
  color: var(--vmg-green-dark) !important;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.header.fixed-header .menu-link:hover,
.header.fixed-header .menu-link.is-active {
  color: #fff !important;
  background: #1f6a45 !important;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(31, 106, 69, .22);
}

body[data-active-section="home"] .header.fixed-header .desktop-menu a[href$="#home"],
body[data-active-section="about"] .header.fixed-header .desktop-menu a[href$="#about"],
body[data-active-section="products"] .header.fixed-header .desktop-menu a[href="products.html"],
body[data-active-section="process"] .header.fixed-header .desktop-menu a[href$="#process"],
body[data-active-section="contact"] .header.fixed-header .desktop-menu a[href$="#contact"] {
  color: #fff !important;
  background: #1f6a45 !important;
  box-shadow: 0 10px 22px rgba(31, 106, 69, .22);
}

.header.fixed-header .lang-trigger {
  min-height: 42px;
  border: 1px solid rgba(35, 99, 66, .22);
  border-radius: 999px;
  color: var(--vmg-green-dark);
  background: #fff;
  font-weight: 800;
}

.vmg-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6000;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.vmg-scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--vmg-lime), var(--vmg-coir));
  transition: width .08s linear;
}

section[id] {
  scroll-margin-top: calc(var(--vmg-header-height, 82px) + 18px);
}

[dir="rtl"] .vmg-kicker::before {
  order: 2;
}

[dir="rtl"] .vmg-section-head,
[dir="rtl"] .vmg-contact-grid,
[dir="rtl"] .vmg-split,
[dir="rtl"] .vmg-hero-grid {
  direction: rtl;
}

[dir="rtl"] .vmg-table th,
[dir="rtl"] .vmg-table td {
  text-align: right;
}

/* Keep header layout LTR in RTL languages to avoid logo/lang-selector collision */
[dir="rtl"] .header.fixed-header .nav-inner {
  direction: ltr;
}

[dir="rtl"] .header.fixed-header .brand {
  direction: rtl;
}

[dir="rtl"] .header.fixed-header .desktop-menu {
  direction: rtl;
}

[dir="rtl"] .header.fixed-header .lang-selector {
  direction: rtl;
}

.vmg-redesign {
  background:
    linear-gradient(180deg, rgba(247, 245, 238, .9) 0%, #fff 36%),
    radial-gradient(circle at 84% 12%, rgba(216, 166, 107, .2), transparent 26%),
    radial-gradient(circle at 15% 10%, rgba(155, 185, 70, .18), transparent 32%);
  overflow: hidden;
}

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

.vmg-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--vmg-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.vmg-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--vmg-lime);
}

.vmg-hero {
  position: relative;
  min-height: calc(100vh - 72px);
  padding: 118px 0 54px;
  display: grid;
  align-items: center;
}

.vmg-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(110deg, rgba(35, 99, 66, .08) 0 1px, transparent 1px),
    linear-gradient(20deg, rgba(159, 82, 38, .06) 0 1px, transparent 1px);
  background-size: 120px 120px, 180px 180px;
  mask-image: linear-gradient(180deg, #000, transparent 76%);
  animation: vmg-drift 18s linear infinite;
}

.vmg-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .82fr);
  gap: 54px;
  align-items: center;
}

.vmg-hero h1,
.vmg-section-head h2,
.vmg-split-copy h2,
.vmg-contact h2 {
  margin: 0;
  color: var(--vmg-ink);
  letter-spacing: 0;
}

.vmg-hero h1 {
  max-width: 760px;
  font-size: clamp(46px, 7vw, 92px);
  line-height: .93;
  margin-top: 18px;
  animation: vmg-rise .8s ease both .08s;
}

.vmg-lead {
  max-width: 650px;
  color: #354339;
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
  margin: 24px 0 0;
  animation: vmg-rise .8s ease both .18s;
}

.vmg-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  animation: vmg-rise .8s ease both .28s;
}

.vmg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--vmg-green);
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  color: var(--vmg-green-dark);
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.vmg-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(18, 59, 41, .16);
}

.vmg-btn.primary {
  background: var(--vmg-green);
  color: #fff;
}

.vmg-hero-media {
  position: relative;
  animation: vmg-media-in .9s cubic-bezier(.2,.8,.2,1) both .16s;
}

.vmg-hero-media img,
.vmg-hero-video {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  box-shadow: var(--vmg-shadow);
}

.vmg-video-frame {
  isolation: isolate;
}

.vmg-video-frame::before {
  content: "";
  position: absolute;
  inset: -16px;
  z-index: -1;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(35, 99, 66, .28), rgba(159, 82, 38, .24), rgba(155, 185, 70, .26));
  filter: blur(18px);
  opacity: .75;
  animation: vmg-glow 5s ease-in-out infinite alternate;
}

.vmg-hero-video {
  filter: saturate(1.08) contrast(1.04);
}

.vmg-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 59, 41, .02), rgba(18, 59, 41, .3)),
    repeating-linear-gradient(90deg, rgba(255,255,255,.08) 0 1px, transparent 1px 86px);
}

.vmg-float-product {
  position: absolute;
  right: -28px;
  top: 44px;
  width: min(42%, 210px) !important;
  aspect-ratio: 1 / 1 !important;
  padding: 12px;
  object-fit: contain !important;
  background: rgba(255,255,255,.9) !important;
  box-shadow: 0 20px 46px rgba(20, 35, 27, .22) !important;
  animation: vmg-float 4s ease-in-out infinite;
  z-index: 2;
}

.vmg-proof {
  position: absolute;
  left: -34px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(520px, calc(100% + 10px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(20, 35, 27, .22);
  z-index: 3;
}

.vmg-proof div {
  padding: 18px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  transform: translateY(0);
  transition: transform .25s ease, background .25s ease;
}

.vmg-proof div:hover {
  transform: translateY(-4px);
  background: #fff;
}

.vmg-proof strong {
  display: block;
  font-size: 26px;
  color: var(--vmg-green-dark);
}

.vmg-proof span {
  display: block;
  margin-top: 4px;
  color: var(--vmg-muted);
  font-size: 12px;
  line-height: 1.35;
}

.vmg-section {
  position: relative;
  padding: 88px 0;
}

.vmg-section.alt {
  background:
    linear-gradient(180deg, rgba(247,245,238,.98), rgba(247,245,238,.94)),
    url("image/leaf.svg") 96% 34px / 86px auto no-repeat;
}

.vmg-section-head {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  align-items: end;
  margin-bottom: 34px;
}

.vmg-section-head h2,
.vmg-split-copy h2,
.vmg-contact h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.vmg-section-head p {
  max-width: 470px;
  margin: 0;
  color: var(--vmg-muted);
  line-height: 1.7;
}

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

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

.vmg-info-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 14px 38px rgba(20, 35, 27, .07);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.vmg-info-card:hover {
  transform: translateY(-6px);
  border-color: rgba(35, 99, 66, .32);
  box-shadow: 0 22px 52px rgba(20, 35, 27, .13);
}

.vmg-info-card h3 {
  margin: 0 0 12px;
  color: var(--vmg-green-dark);
  font-size: 22px;
}

.vmg-info-card p {
  margin: 0;
  color: var(--vmg-muted);
  line-height: 1.65;
}

.vmg-product {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20, 35, 27, .07);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.vmg-doc-section {
  background:
    linear-gradient(180deg, #fff, #f7f5ee),
    repeating-linear-gradient(0deg, rgba(20,35,27,.04) 0 1px, transparent 1px 34px);
}

.vmg-doc-layout {
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 22px;
  align-items: stretch;
}

.vmg-doc-cover,
.vmg-doc-panel,
.vmg-packing-grid article {
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 35, 27, .1);
}

.vmg-doc-cover {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(18,59,41,.94), rgba(35,99,66,.84)),
    url("image/productimage/RANGE 1.jpg") right bottom / 46% auto no-repeat;
  color: #fff;
}

.vmg-doc-cover::after {
  content: "VMG 2026";
  position: absolute;
  right: 24px;
  top: 24px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 6px;
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
}

.vmg-doc-cover .vmg-kicker,
.vmg-doc-cover h2 {
  color: #fff;
}

.vmg-doc-cover h2 {
  max-width: 620px;
  margin: 18px 0 16px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.vmg-doc-cover p {
  max-width: 580px;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-size: 17px;
}

.vmg-doc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.vmg-doc-panel {
  display: grid;
  align-content: stretch;
  overflow: hidden;
}

.vmg-doc-panel div {
  display: grid;
  grid-template-columns: .7fr 1fr;
  gap: 16px;
  padding: 22px;
  border-bottom: 1px solid var(--vmg-line);
}

.vmg-doc-panel div:last-child {
  border-bottom: 0;
}

.vmg-doc-panel b {
  color: var(--vmg-green-dark);
}

.vmg-doc-panel span {
  color: var(--vmg-muted);
  line-height: 1.5;
}

.vmg-catalog-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: var(--vmg-line);
}

.vmg-catalog-strip div {
  padding: 18px;
  background: #fff;
}

.vmg-catalog-strip strong,
.vmg-catalog-strip span {
  display: block;
}

.vmg-catalog-strip strong {
  color: var(--vmg-coir);
  font-size: 14px;
  letter-spacing: .04em;
}

.vmg-catalog-strip span {
  margin-top: 5px;
  color: var(--vmg-muted);
}

.vmg-sheet-product {
  position: relative;
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, rgba(35,99,66,.34), rgba(159,82,38,.34)) border-box;
}

.vmg-sheet-product::before {
  content: attr(data-code);
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 6px 9px;
  border-radius: 6px;
  color: #fff;
  background: rgba(18,59,41,.92);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
}

.vmg-sheet-product div::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 16px;
  background: var(--vmg-coir);
}

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

.vmg-packing-grid article {
  overflow: hidden;
}

.vmg-packing-grid h3 {
  margin: 0;
  padding: 18px 22px;
  color: #fff;
  background: var(--vmg-green-dark);
}

.vmg-packing-grid dl {
  margin: 0;
}

.vmg-packing-grid dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  padding: 16px 22px;
  border-bottom: 1px solid var(--vmg-line);
}

.vmg-packing-grid dl div:last-child {
  border-bottom: 0;
}

.vmg-packing-grid dt {
  color: var(--vmg-muted);
}

.vmg-packing-grid dd {
  margin: 0;
  color: var(--vmg-green-dark);
  font-weight: 900;
}

.vmg-product-spec-list {
  display: grid;
  gap: 20px;
}

.vmg-product-spec-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  overflow: hidden;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(20, 35, 27, .1);
}

.vmg-product-spec-media {
  position: relative;
  min-height: 250px;
  background: var(--vmg-cream);
}

.vmg-product-spec-media img {
  width: 100%;
  height: 100%;
  min-height: 250px;
  display: block;
  object-fit: cover;
}

.vmg-product-spec-media span {
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 6px;
  color: #fff;
  background: rgba(18, 59, 41, .92);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}

.vmg-product-spec-body {
  padding: 24px;
}

.vmg-product-spec-body h3 {
  margin: 0 0 18px;
  color: var(--vmg-green-dark);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
}

.vmg-spec-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: var(--vmg-line);
}

.vmg-spec-mini-grid div {
  padding: 15px;
  background: #fbfaf6;
}

.vmg-spec-mini-grid b,
.vmg-spec-mini-grid span {
  display: block;
}

.vmg-spec-mini-grid b {
  color: var(--vmg-coir);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.vmg-spec-mini-grid span {
  margin-top: 7px;
  color: var(--vmg-ink);
  line-height: 1.45;
}

.vmg-product-spec-body p {
  margin: 18px 0 0;
  color: var(--vmg-muted);
  line-height: 1.65;
}

.vmg-product:hover {
  transform: translateY(-8px);
  border-color: rgba(35, 99, 66, .32);
  box-shadow: 0 22px 55px rgba(20, 35, 27, .14);
}

.vmg-product img {
  width: 100%;
  aspect-ratio: 1.05 / .82;
  object-fit: cover;
  display: block;
  background: #f4f1e9;
  transition: transform .55s ease;
}

.vmg-product:hover img {
  transform: scale(1.06);
}

.vmg-product div {
  padding: 18px;
}

.vmg-product h3 {
  margin: 0;
  font-size: 19px;
  color: var(--vmg-ink);
}

.vmg-product p {
  margin: 10px 0 0;
  color: var(--vmg-muted);
  line-height: 1.55;
}

.vmg-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.vmg-split img {
  width: 100%;
  aspect-ratio: 1 / .82;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--vmg-shadow);
  transition: transform .45s ease;
}

.vmg-split img:hover {
  transform: scale(1.018);
}

.vmg-split-copy p {
  color: var(--vmg-muted);
  line-height: 1.75;
  font-size: 17px;
}

.vmg-process-list {
  display: grid;
  gap: 14px;
  margin-top: 24px;
}

.vmg-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(20, 35, 27, .06);
  transition: transform .24s ease, border-color .24s ease;
}

.vmg-step:hover {
  transform: translateX(8px);
  border-color: rgba(159, 82, 38, .32);
}

.vmg-step b {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  color: #fff;
  background: var(--vmg-coir);
  animation: vmg-pulse 2.8s ease-in-out infinite;
}

.vmg-step h3 {
  margin: 0 0 4px;
  font-size: 18px;
}

.vmg-step p {
  margin: 0;
  color: var(--vmg-muted);
  line-height: 1.55;
}

.vmg-spec-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vmg-spec {
  background: var(--vmg-green-dark);
  color: #fff;
  padding: 26px;
  border-radius: 8px;
  min-height: 210px;
  position: relative;
  overflow: hidden;
}

.vmg-spec::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -70px;
  top: -70px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  animation: vmg-orbit 7s linear infinite;
}

.vmg-spec:nth-child(2) {
  background: var(--vmg-coir);
}

.vmg-spec:nth-child(3) {
  background: #3d4d32;
}

.vmg-spec h3 {
  margin: 0 0 16px;
  font-size: 23px;
}

.vmg-spec ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.75;
}

.vmg-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  background: #fff;
}

.vmg-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.vmg-table th,
.vmg-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--vmg-line);
  text-align: left;
}

.vmg-table th {
  color: #fff;
  background: var(--vmg-green-dark);
}

.vmg-table tr:last-child td {
  border-bottom: 0;
}

.vmg-contact {
  padding: 88px 0;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(18, 59, 41, .96), rgba(18, 59, 41, .82)),
    url("image/banner 1.png") center/cover;
}

@keyframes vmg-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vmg-media-in {
  from {
    opacity: 0;
    transform: translateX(34px) scale(.98);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes vmg-float {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}

@keyframes vmg-glow {
  from {
    opacity: .42;
    transform: scale(.98);
  }
  to {
    opacity: .82;
    transform: scale(1.02);
  }
}

@keyframes vmg-drift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 240px 120px, -180px 180px;
  }
}

@keyframes vmg-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(159, 82, 38, .24);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(159, 82, 38, 0);
  }
}

@keyframes vmg-orbit {
  from {
    transform: rotate(0deg) translateX(8px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(8px) rotate(-360deg);
  }
}

.vmg-contact h2,
.vmg-contact .vmg-kicker {
  color: #fff;
}

.vmg-contact-grid {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 42px;
  align-items: start;
}

.vmg-contact p {
  color: rgba(255,255,255,.82);
  line-height: 1.75;
  font-size: 17px;
}

.vmg-contact-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.vmg-contact-item {
  padding: 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
}

.vmg-contact-item b,
.vmg-contact-item a {
  display: block;
  color: #fff;
}

.vmg-contact-item span {
  display: block;
  margin-top: 5px;
  color: rgba(255,255,255,.78);
  line-height: 1.5;
}

.vmg-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--vmg-shadow);
}

.vmg-form input,
.vmg-form select,
.vmg-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid var(--vmg-line);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--vmg-ink);
  font: inherit;
  background: #fbfaf6;
}

.vmg-form textarea {
  min-height: 124px;
  resize: vertical;
}

.vmg-form .vmg-btn {
  width: 100%;
}

.vmg-footer {
  padding: 28px 0;
  color: rgba(255,255,255,.78);
  background: #0d2419;
}

.vmg-footer .vmg-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .vmg-hero-grid,
  .vmg-split,
  .vmg-doc-layout,
  .vmg-product-spec-card,
  .vmg-contact-grid {
    grid-template-columns: 1fr;
  }

  .vmg-hero {
    padding-top: 104px;
  }

  .vmg-proof {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .vmg-float-product {
    right: 14px;
    top: 18px;
    width: min(34%, 150px) !important;
  }

  .vmg-section-head {
    display: block;
  }

  .vmg-section-head p {
    margin-top: 14px;
  }

  .vmg-product-grid,
  .vmg-info-grid,
  .vmg-spec-panel,
  .vmg-spec-mini-grid,
  .vmg-catalog-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .vmg-container {
    width: min(100% - 28px, 1180px);
  }

  .header.fixed-header .nav-inner {
    min-height: 76px;
  }

  .header.fixed-header .brand-logo {
    width: 54px !important;
    height: 54px !important;
  }

  .header.fixed-header .brand-title {
    font-size: 18px;
  }

  .header.fixed-header .brand-sub {
    font-size: 12px;
  }

  .vmg-hero {
    min-height: auto;
  }

  .vmg-product-grid,
  .vmg-info-grid,
  .vmg-spec-panel,
  .vmg-spec-mini-grid,
  .vmg-catalog-strip,
  .vmg-packing-grid,
  .vmg-proof {
    grid-template-columns: 1fr;
  }

  .vmg-hero-video,
  .vmg-hero-media img {
    aspect-ratio: 1 / .82;
  }

  .vmg-float-product {
    width: min(38%, 130px) !important;
    padding: 8px;
  }

  .vmg-section,
  .vmg-contact {
    padding: 62px 0;
  }
}

@media (max-width: 768px) {
  .floating-buttons {
    right: 16px !important;
    bottom: 24px !important;
  }

  .floating-buttons a {
    width: 52px !important;
    height: 52px !important;
  }

  .floating-buttons img {
    width: 28px;
    height: 28px;
  }
}

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