:root {
  --navy: #0a1f33;
  --navy-2: #102b44;
  --navy-3: #061522;
  --green: #267052;
  --green-2: #1d5d45;
  --gold: #d89424;
  --gold-2: #f0b33b;
  --impexia-orange: #f28c18;
  --impexia-yellow: #ffc247;
  --brand-gradient: linear-gradient(120deg, var(--green) 0%, var(--green-2) 42%, var(--impexia-orange) 100%);
  --arrow-gradient: linear-gradient(135deg, var(--impexia-orange), var(--impexia-yellow));
  --ink: #17212b;
  --muted: #5f6f7d;
  --line: #dfe6ec;
  --soft: #f5f8f7;
  --soft-2: #eef5f1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(10, 31, 51, .12);
  --shadow-strong: 0 28px 70px rgba(10, 31, 51, .18);
  --radius: 8px;
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}
body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #ffffff 42%, #f8fbfa 100%);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 60;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--impexia-orange), var(--impexia-yellow));
  pointer-events: none;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.is-hidden { display: none !important; }

.container { width: min(100% - 40px, var(--max)); margin: 0 auto; }
.topbar {
  background:
    linear-gradient(120deg, rgba(242,140,24,.18), transparent 22%),
    linear-gradient(90deg, var(--navy-3), var(--navy), var(--green-2));
  color: rgba(255,255,255,.86);
  font-size: .86rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.84));
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
  border-bottom: 1px solid rgba(10,31,51,.08);
  box-shadow: 0 16px 44px rgba(10,31,51,.1);
  transition: background .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.site-header.is-scrolled {
  background:
    linear-gradient(90deg, rgba(255,255,255,.96) 0%, rgba(255,255,255,.9) 17%, rgba(16,32,64,.9) 36%, rgba(10,31,51,.82) 100%);
  border-bottom-color: rgba(255,194,71,.16);
  box-shadow: 0 18px 46px rgba(5,15,28,.22);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 50%, rgba(4,108,78,.1), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(244,154,39,.14), transparent 36%);
  opacity: .75;
  transition: opacity .28s ease, background .28s ease;
}
.site-header.is-scrolled::before {
  background:
    radial-gradient(circle at 18% 50%, rgba(64,120,48,.12), transparent 34%),
    radial-gradient(circle at 86% 0%, rgba(240,144,40,.18), transparent 36%);
  opacity: .92;
}
.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(38,112,82,.45), rgba(242,140,24,.7), transparent);
}
.site-header.is-scrolled::after {
  background: linear-gradient(90deg, transparent, rgba(255,194,71,.62), rgba(64,120,48,.42), transparent);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  isolation: isolate;
  padding: 0;
  transition: transform .25s ease, filter .25s ease;
}
.brand-logo {
  display: block;
  width: auto;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(10,31,51,.1));
}
.brand:hover {
  transform: translateY(-1px);
  filter: saturate(1.06);
}
.brand-title {
  display: none;
  flex-direction: column;
  line-height: 1.08;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 900;
}
.brand-title small {
  color: var(--green);
  font-size: .68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
  border-radius: 8px;
  font-weight: 900;
}
.brand small { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 700;
  color: var(--navy);
}
.site-header.is-scrolled .nav-links { color: rgba(255,255,255,.88); }
.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 9px 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  transition: color .22s ease, transform .22s ease, border-color .22s ease, background .22s ease, box-shadow .22s ease;
}
.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.nav-product-trigger {
  gap: 7px;
}
.nav-product-trigger::before {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  opacity: .72;
  order: 2;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-dropdown:hover .nav-product-trigger::before,
.nav-dropdown:focus-within .nav-product-trigger::before {
  transform: rotate(225deg) translateY(-1px);
  opacity: 1;
}
.nav-dropdown-menu {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 30;
  width: 310px;
  padding: 10px;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,251,249,.94));
  box-shadow: 0 28px 70px rgba(10,31,51,.16), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px) scale(.98);
  transform-origin: 50% 0;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -7px;
  width: 14px;
  height: 14px;
  border-left: 1px solid rgba(10,31,51,.08);
  border-top: 1px solid rgba(10,31,51,.08);
  background: rgba(255,255,255,.96);
  transform: translateX(-50%) rotate(45deg);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0) scale(1);
}
.nav-links .nav-dropdown-menu a {
  width: 100%;
  min-height: 42px;
  margin: 0;
  padding: 10px 12px;
  border-radius: 7px;
  color: var(--navy);
  font-size: .91rem;
  justify-content: space-between;
}
.nav-links .nav-dropdown-menu a::after {
  content: "";
  position: static;
  width: 18px;
  height: 5px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 70% 35%, 70% 0, 100% 50%, 70% 100%, 70% 65%, 0 65%);
  transform: translateX(-4px);
  opacity: 0;
  transition: transform .22s ease, opacity .22s ease;
}
.nav-links .nav-dropdown-menu a:hover,
.nav-links .nav-dropdown-menu a.is-active {
  color: var(--green);
  border-color: rgba(4,108,78,.12);
  background: linear-gradient(135deg, rgba(4,108,78,.08), rgba(242,140,24,.06));
  transform: none;
}
.nav-links .nav-dropdown-menu a:hover::after,
.nav-links .nav-dropdown-menu a.is-active::after {
  opacity: 1;
  transform: translateX(0);
}
.site-header.is-scrolled .nav-dropdown-menu {
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(180deg, rgba(13,33,56,.96), rgba(8,27,45,.94));
  box-shadow: 0 30px 80px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.12);
}
.site-header.is-scrolled .nav-dropdown-menu::before {
  border-color: rgba(255,255,255,.12);
  background: rgba(13,33,56,.96);
}
.site-header.is-scrolled .nav-links .nav-dropdown-menu a {
  color: rgba(255,255,255,.86);
}
.site-header.is-scrolled .nav-links .nav-dropdown-menu a:hover,
.site-header.is-scrolled .nav-links .nav-dropdown-menu a.is-active {
  color: #ffc247;
  border-color: rgba(255,194,71,.22);
  background: linear-gradient(135deg, rgba(255,194,71,.14), rgba(255,255,255,.05));
}
.nav-links a:not(.btn):not(.nav-home)::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--impexia-orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .24s ease;
}
.nav-links a:hover { color: var(--green); }
.site-header.is-scrolled .nav-links a:hover { color: #ffc247; }
.nav-links a:not(.btn):not(.nav-home):hover::after { transform: scaleX(1); }
.nav-links a.is-active:not(.btn) {
  color: var(--green);
  border-color: rgba(4,108,78,.18);
  background: linear-gradient(135deg, rgba(4,108,78,.08), rgba(242,140,24,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.72), 0 10px 24px rgba(10,31,51,.07);
}
.nav-links a.is-active:not(.btn):not(.nav-home)::after {
  transform: scaleX(1);
}
.site-header.is-scrolled .nav-links a.is-active:not(.btn) {
  color: #ffc247;
  border-color: rgba(255,194,71,.3);
  background: linear-gradient(135deg, rgba(255,194,71,.16), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 14px 28px rgba(0,0,0,.14);
}
.nav-home {
  gap: 8px;
  border-color: rgba(4,108,78,.1);
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(255,255,255,.46), rgba(234,247,240,.28));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.54);
}
.site-header.is-scrolled .nav-home {
  border-color: rgba(255,255,255,.1);
  color: #fff;
  background: linear-gradient(135deg, rgba(255,255,255,.08), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.14);
}
.nav-home::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(4,108,78,.35);
  box-shadow: none;
}
.site-header.is-scrolled .nav-home::before {
  background: rgba(255,255,255,.55);
}
.nav-home:hover {
  color: var(--navy);
  transform: translateY(-1px);
  border-color: rgba(4,108,78,.32);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82), 0 16px 32px rgba(10,31,51,.12);
}
.nav-home.is-active {
  border-color: rgba(242,140,24,.34);
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(255,246,226,.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 16px 32px rgba(10,31,51,.1), 0 0 0 4px rgba(242,140,24,.08);
}
.nav-home.is-active::before {
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 0 5px rgba(4,108,78,.08);
}
.site-header.is-scrolled .nav-home.is-active {
  color: #ffc247;
  border-color: rgba(255,194,71,.38);
  background: linear-gradient(135deg, rgba(255,194,71,.18), rgba(255,255,255,.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.2), 0 14px 30px rgba(0,0,0,.16), 0 0 0 4px rgba(255,194,71,.08);
}
.site-header.is-scrolled .nav-home.is-active::before {
  background: linear-gradient(135deg, #ffc247, var(--green));
  box-shadow: 0 0 0 5px rgba(255,194,71,.08);
}
.site-header.is-scrolled .nav-home:hover {
  color: #fff;
  border-color: rgba(255,194,71,.42);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.24), 0 16px 32px rgba(0,0,0,.18);
}
.nav-toggle { display: none; border: 1px solid rgba(10,31,51,.12); background: var(--navy); color: #fff; padding: 10px 12px; border-radius: 8px; }
.site-header.is-scrolled .nav-toggle { border-color: rgba(255,255,255,.18); background: rgba(255,255,255,.1); }

.iv-language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.95), rgba(248,252,249,.9)),
    radial-gradient(circle at 100% 0%, rgba(242,140,24,.12), transparent 70%);
  box-shadow: 0 12px 34px rgba(10,31,51,.08);
}

.iv-language-switcher button {
  min-width: 38px;
  min-height: 30px;
  border: 0;
  border-radius: 999px;
  color: var(--navy);
  background: transparent;
  font-size: .76rem;
  font-weight: 950;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, color .2s ease, background .2s ease, box-shadow .2s ease;
}

.iv-language-switcher button:hover {
  transform: translateY(-1px);
}

.iv-language-switcher button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: 0 10px 22px rgba(10,31,51,.16);
}

.site-header.is-scrolled .iv-language-switcher {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}

.site-header.is-scrolled .iv-language-switcher button {
  color: rgba(255,255,255,.82);
}

.site-header.is-scrolled .iv-language-switcher button.is-active {
  color: var(--navy);
  background: linear-gradient(135deg, #fff, #ffc247);
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 7px;
  border: 1px solid transparent;
  font-weight: 800;
  letter-spacing: .01em;
  isolation: isolate;
  overflow: hidden;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
  transition: transform .22s cubic-bezier(.22,.61,.36,1), box-shadow .22s ease, background .22s ease, border-color .22s ease, color .22s ease;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, transparent 38%, rgba(255,255,255,.34) 48%, rgba(255,255,255,.12) 56%, transparent 68%, transparent 100%);
  transform: translate3d(-120%,0,0);
  transition: transform .48s cubic-bezier(.22,.61,.36,1);
  z-index: -1;
  pointer-events: none;
}
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), inset 0 0 0 1px rgba(255,255,255,.08);
  pointer-events: none;
  transition: box-shadow .22s ease, opacity .22s ease;
}
.btn-primary {
  background:
    linear-gradient(135deg, #102040 0%, var(--navy) 52%, var(--navy-2) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(16,32,64,.2);
}
.btn-primary::after {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.34),
    inset 0 0 0 1px rgba(255,194,71,.12);
}
.btn-secondary {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: #fff;
  box-shadow: 0 10px 24px rgba(10,31,51,.18);
}
.btn-secondary::after {
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.26),
    inset 0 0 0 1px rgba(255,255,255,.08);
}
.btn-outline {
  border-color: rgba(255,255,255,.58);
  color: #fff;
  background: rgba(255,255,255,.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12);
}
.btn-light {
  background: #fff;
  color: var(--navy);
  border-color: rgba(38,112,82,.18);
  box-shadow: 0 8px 24px rgba(10,31,51,.06);
}
.btn:hover {
  transform: translate3d(0,-2px,0);
  box-shadow: 0 14px 32px rgba(10,31,51,.14);
}
.btn-primary:hover {
  border-color: rgba(255,194,71,.42);
  box-shadow: 0 16px 34px rgba(16,32,64,.28), 0 0 0 4px rgba(255,194,71,.1);
}
.btn-secondary:hover {
  box-shadow: 0 16px 34px rgba(10,31,51,.22), 0 0 0 4px rgba(16,43,68,.08);
}
.btn-light:hover {
  border-color: rgba(38,112,82,.34);
  box-shadow: 0 14px 30px rgba(10,31,51,.1), 0 0 0 4px rgba(38,112,82,.07);
}
.btn-outline:hover {
  border-color: rgba(255,194,71,.72);
  background: rgba(255,255,255,.1);
}
.btn:hover::before { transform: translate3d(120%,0,0); }
.btn:active {
  transform: translate3d(0,0,0) scale(.985);
  box-shadow: 0 8px 18px rgba(10,31,51,.12);
}
.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255,194,71,.28), 0 14px 32px rgba(10,31,51,.14);
}
.btn-with-icon {
  gap: 13px;
  padding-left: 17px;
}
.btn-with-icon > span:not(.btn-icon) {
  position: relative;
  z-index: 1;
}
.btn-icon {
  position: relative;
  z-index: 1;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: currentColor;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 8px 18px rgba(0,0,0,.12);
  transform: translate3d(0,0,0);
  transition: transform .28s cubic-bezier(.2,.8,.2,1), filter .28s ease, opacity .28s ease, background .28s ease, box-shadow .28s ease;
}
.btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.btn-primary .btn-icon {
  color: #fff7df;
  background: linear-gradient(135deg, rgba(255,194,71,.22), rgba(255,255,255,.12));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.22), 0 10px 22px rgba(255,194,71,.16);
}
.btn-with-icon:hover .btn-icon {
  transform: translate3d(3px,-1px,0) scale(1.08);
  filter: drop-shadow(0 9px 16px rgba(255,194,71,.24));
}
.btn-whatsapp {
  border-color: rgba(116, 220, 143, .48);
}
.btn-whatsapp .btn-icon {
  color: #fff;
  background: rgba(255,255,255,.08);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.16), 0 10px 22px rgba(68,191,111,.16);
}
.btn-whatsapp .btn-icon svg {
  width: 27px;
  height: 27px;
}
.btn-whatsapp .btn-icon img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}
.btn-whatsapp:hover {
  border-color: rgba(141,233,165,.72);
  box-shadow: 0 16px 34px rgba(10,31,51,.22), 0 0 0 4px rgba(116,220,143,.09);
}

.hero {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: var(--navy);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,25,40,.96), rgba(7,25,40,.84) 42%, rgba(38,112,82,.42)),
    linear-gradient(135deg, rgba(201,141,50,.18), transparent 46%);
  z-index: 1;
}
.hero::after {
  content: "";
  position: absolute;
  right: min(7vw, 90px);
  top: 104px;
  width: min(34vw, 430px);
  height: 94px;
  z-index: 1;
  opacity: .38;
  background:
    linear-gradient(135deg, transparent 0 30%, rgba(242,140,24,.8) 30% 38%, transparent 38% 100%),
    linear-gradient(135deg, transparent 0 48%, rgba(255,194,71,.72) 48% 55%, transparent 55% 100%);
  clip-path: polygon(0 45%, 78% 45%, 78% 20%, 100% 50%, 78% 80%, 78% 55%, 0 55%);
  filter: drop-shadow(0 20px 36px rgba(242,140,24,.18));
  animation: brandArrowDrift 7.5s ease-in-out infinite;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.hero-bg picture,
.hero-bg img {
  width: 100%;
  height: 100%;
}
.hero-bg img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.06) contrast(1.03);
  transform: scale(1.02);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.08fr .72fr;
  gap: 48px;
  align-items: center;
  padding: 88px 0 58px;
}
.eyebrow {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--impexia-orange));
}
h1, h2, h3 { line-height: 1.15; color: var(--navy); margin: 0 0 16px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  max-width: 920px;
  letter-spacing: 0;
}
.hero p { max-width: 680px; color: rgba(255,255,255,.88); font-size: 1.18rem; }
.hero-actions, .section-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }
.hero-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 28px 0 0;
}
.hero-proof-grid div {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  backdrop-filter: blur(12px);
}
.hero-proof-grid b {
  display: block;
  color: #fff;
  font-size: 1.04rem;
}
.hero-proof-grid span {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .88rem;
}
.trust-panel {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(16px);
}
.hero-visual {
  display: grid;
  gap: 18px;
}
.hero-photo-stack {
  position: relative;
  min-height: 430px;
}
.hero-photo {
  position: absolute;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
  background: rgba(255,255,255,.08);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo.main {
  inset: 0 0 54px 50px;
  animation: floatUp 7s ease-in-out infinite;
}
.hero-photo.secondary {
  left: 0;
  bottom: 0;
  width: 48%;
  height: 190px;
  animation: floatUp 8s ease-in-out infinite reverse;
}
.hero-badge {
  position: absolute;
  right: 18px;
  bottom: 12px;
  max-width: 230px;
  background: rgba(255,255,255,.94);
  color: var(--navy);
  border-radius: 8px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.hero-badge b { display: block; color: var(--green); }
.trust-panel strong { display: block; font-size: 2rem; color: #fff; }
.trust-panel span { color: rgba(255,255,255,.76); }
.metrics { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -44px;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255,255,255,.96);
  box-shadow: var(--shadow-strong);
}
.trust-strip-grid div {
  position: relative;
  padding: 24px;
  border-right: 1px solid var(--line);
}
.trust-strip-grid div::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 7px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 74% 35%, 74% 0, 100% 50%, 74% 100%, 74% 65%, 0 65%);
  opacity: .5;
}
.trust-strip-grid div:last-child {
  border-right: 0;
}
.trust-strip-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(135deg, #eef8f2, #fff4df);
  color: var(--green);
  font-weight: 900;
  font-size: .78rem;
  margin-bottom: 12px;
}
.trust-strip-grid b {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 6px;
}
.trust-strip-grid p {
  margin: 0;
  color: var(--muted);
  font-size: .94rem;
  line-height: 1.55;
}

.media-split {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 42px;
  align-items: center;
}
.media-split .section-head {
  display: block;
}
.media-split .grid-4 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.premium-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
  background: var(--soft);
}
.premium-image img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.premium-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 58%, rgba(10,31,51,.22));
}
.risk-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 48%, rgba(38,112,82,.07), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(242,140,24,.07), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #fbfdfc 58%, #f6faf8 100%);
}
.risk-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(10,31,51,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,51,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 84%, transparent);
}
.risk-split {
  grid-template-columns: minmax(430px, .98fr) 1.02fr;
  gap: 38px;
  align-items: start;
}
.risk-proof {
  position: relative;
  justify-self: start;
  width: min(100%, 620px);
  margin-top: 42px;
}
.risk-proof::before {
  content: "";
  position: absolute;
  inset: -28px -20px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(38,112,82,.1), transparent 45%),
    linear-gradient(315deg, rgba(242,140,24,.14), transparent 46%);
  filter: blur(.2px);
}
.risk-visual {
  width: 100%;
  aspect-ratio: 3 / 2;
  border: 1px solid rgba(10,31,51,.1);
  background:
    linear-gradient(145deg, rgba(255,255,255,.9), rgba(236,246,239,.78));
  box-shadow: 0 28px 78px rgba(10,31,51,.16);
}
.risk-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.risk-visual::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border: 1px solid rgba(255,255,255,.58);
  border-radius: 6px;
  pointer-events: none;
}
.risk-visual img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.005);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.risk-proof:hover .risk-visual img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.03);
}
.risk-proof-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  width: min(72%, 340px);
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 38px rgba(10,31,51,.16);
}
.risk-proof-caption span,
.risk-card span {
  display: block;
  color: var(--green);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.risk-proof-caption strong {
  display: block;
  margin-top: 5px;
  color: var(--navy);
  font-size: .86rem;
  line-height: 1.38;
}
.risk-content {
  position: relative;
  z-index: 1;
}
.risk-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 8px 0 18px;
  padding: 8px;
  border: 1px solid rgba(10,31,51,.08);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.86), 0 14px 34px rgba(10,31,51,.08);
}
.risk-flow::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(38,112,82,.16), rgba(242,140,24,.42), rgba(38,112,82,.16));
}
.risk-flow span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  background: #fff;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(10,31,51,.06);
}
.risk-flow span:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -14px;
  color: var(--impexia-orange);
  font-weight: 900;
}
.risk-grid {
  position: relative;
}
.risk-card {
  position: relative;
  overflow: hidden;
  min-height: 174px;
  padding: 20px 21px 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.88)),
    radial-gradient(circle at 18% 0%, rgba(38,112,82,.1), transparent 36%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease, background .3s ease;
}
.risk-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(38,112,82,.08), transparent 38%, rgba(242,140,24,.1));
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.risk-card::after {
  content: "";
  position: absolute;
  left: -35%;
  top: 0;
  width: 32%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.8), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  transition: left .7s ease, opacity .3s ease;
}
.risk-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242,140,24,.34);
  box-shadow: 0 26px 64px rgba(10,31,51,.13);
}
.risk-card:hover::before {
  opacity: 1;
}
.risk-card:hover::after {
  left: 110%;
  opacity: .62;
}
.risk-icon {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 999px;
  color: var(--navy);
  font-size: .82rem;
  font-weight: 900;
  background: linear-gradient(135deg, rgba(38,112,82,.12), rgba(242,140,24,.14));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}
.risk-card h3,
.risk-card p,
.risk-card span {
  position: relative;
  z-index: 1;
}
.risk-card h3 {
  margin: 7px 0 8px;
}
.risk-card p {
  margin-bottom: 0;
  font-size: .92rem;
  line-height: 1.58;
}

.command-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8f6 100%);
}
.command-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.command-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 26px;
  border-radius: 8px;
  border: 1px solid rgba(10,31,51,.1);
  background:
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(255,255,255,.86)),
    linear-gradient(135deg, rgba(38,112,82,.12), rgba(201,141,50,.12));
  box-shadow: 0 16px 44px rgba(10,31,51,.08);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.command-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--impexia-orange), var(--impexia-yellow));
}
.command-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(246,183,95,.26), transparent 34%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.command-card:hover {
  transform: translateY(-9px);
  border-color: rgba(38,112,82,.34);
  box-shadow: 0 34px 90px rgba(10,31,51,.18);
}
.command-card:hover::after { opacity: 1; }
.command-card > *, .card > *, .compliance-card > * {
  position: relative;
  z-index: 1;
}
.command-card span {
  color: var(--impexia-orange);
  font-size: .8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.command-card h3 {
  margin-top: 18px;
  font-size: 1.35rem;
}
.command-card p {
  margin: 0;
  color: var(--muted);
}

.section { padding: 86px 0; }
.section.alt {
  background:
    linear-gradient(180deg, var(--soft), #ffffff);
  border-top: 1px solid rgba(10,31,51,.05);
  border-bottom: 1px solid rgba(10,31,51,.05);
}
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 36px;
}
.section-head p { max-width: 650px; color: var(--muted); margin: 0; }
.section h2 { font-size: clamp(2rem, 3vw, 3rem); }
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 8px 24px rgba(10,31,51,.045);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
  transform: translate3d(0,0,0);
  backface-visibility: hidden;
}
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(246,183,95,.12), transparent 34%, rgba(38,112,82,.08)),
    linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,.28) 50%, transparent 58%, transparent 100%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, -130% 0;
  opacity: 0;
  transition: opacity .3s ease, background-position .55s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.card:hover {
  transform: translate3d(0,-8px,0);
  box-shadow: 0 16px 38px rgba(10,31,51,.12);
  border-color: rgba(38,112,82,.34);
}
.card:hover::after { opacity: 1; }
.card:hover::after { background-position: 0 0, 130% 0; }
.card h3 { font-size: 1.25rem; }
.card p, .muted { color: var(--muted); margin: 0; }
.quality-compliance-band {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(5,18,31,.96), rgba(8,34,50,.92) 52%, rgba(11,73,59,.88)),
    linear-gradient(180deg, #061522, #092d42);
}
.quality-compliance-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.quality-compliance-band::after {
  content: "";
  position: absolute;
  right: -14%;
  bottom: 12%;
  width: 48%;
  height: 18px;
  background: linear-gradient(90deg, transparent, rgba(242,140,24,.32), rgba(255,194,71,.2));
  transform: skewX(-18deg);
  opacity: .7;
}
.quality-compliance-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1fr);
  gap: clamp(36px, 6vw, 76px);
  align-items: center;
}
.quality-copy h2 {
  max-width: 760px;
  color: #fff;
}
.quality-copy p {
  max-width: 670px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
}
.quality-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.quality-proof-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.quality-proof-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  background:
    radial-gradient(circle at var(--mx, 86%) var(--my, 12%), rgba(255,194,71,.18), transparent 33%),
    linear-gradient(155deg, rgba(255,255,255,.12), rgba(255,255,255,.045));
  box-shadow: 0 22px 70px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.quality-proof-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.12) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.quality-proof-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,194,71,.34);
  box-shadow: 0 30px 90px rgba(0,0,0,.32), inset 0 1px 0 rgba(255,255,255,.18);
}
.quality-proof-card:hover::before {
  transform: translateX(120%);
}
.quality-proof-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 38px;
  margin-bottom: 22px;
  border: 1px solid rgba(255,194,71,.22);
  border-radius: 8px;
  color: #ffc247;
  background: rgba(255,194,71,.1);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
}
.quality-proof-card h3 {
  color: #fff;
  font-size: 1.28rem;
  margin-bottom: 12px;
}
.quality-proof-card p {
  margin: 0;
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: linear-gradient(135deg, #eaf4ef, #fff7e8);
  color: var(--green);
  border-radius: 8px;
  margin-bottom: 16px;
  font-weight: 900;
}
.icon::after {
  content: "";
  width: 15px;
  height: 5px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 72% 35%, 72% 0, 100% 50%, 72% 100%, 72% 65%, 0 65%);
}

.category-card {
  padding: 0;
  overflow: hidden;
  will-change: transform;
}
.category-card::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 18px;
  z-index: 2;
  width: 48px;
  height: 10px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 74% 35%, 74% 0, 100% 50%, 74% 100%, 74% 65%, 0 65%);
  opacity: .9;
  filter: drop-shadow(0 10px 18px rgba(242,140,24,.22));
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s ease, filter .3s ease;
}
.category-card:hover::before {
  transform: translate3d(6px,0,0);
  opacity: 1;
  filter: drop-shadow(0 12px 20px rgba(242,140,24,.3));
}
.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  background: var(--soft);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
  transform: translate3d(0,0,0) scale(1);
  backface-visibility: hidden;
}
.category-card:hover img {
  transform: translate3d(0,0,0) scale(1.05);
}
.category-card .card-body {
  position: relative;
  padding: 24px;
}
.category-card .card-body::before {
  content: "";
  position: absolute;
  left: 24px;
  right: 24px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(38,112,82,.1), rgba(240,144,40,.52), rgba(38,112,82,.1));
  transform: scaleX(.32);
  transform-origin: left center;
  opacity: .34;
  transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .3s ease;
}
.category-card:hover .card-body::before {
  transform: scaleX(1);
  opacity: .9;
}
.product-card {
  will-change: transform;
}
.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 18px;
  background: var(--soft);
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
  transform: translate3d(0,0,0) scale(1);
  backface-visibility: hidden;
}
.product-card:hover img {
  transform: translate3d(0,0,0) scale(1.05);
}
.product-card.premium-product {
  position: relative;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  will-change: transform;
}
.product-card.premium-product::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(201,141,50,.11), transparent 36%, rgba(38,112,82,.1)),
    radial-gradient(circle at 78% 18%, rgba(255,194,71,.14), transparent 28%);
  opacity: 0;
  transition: opacity .25s ease;
}
.product-card.premium-product:hover::before {
  opacity: 1;
}
.product-card.premium-product:hover {
  transform: translate3d(0,-8px,0);
  box-shadow: 0 16px 38px rgba(10,31,51,.12);
}
.product-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #eef7f1, #f8fbfa);
}
.product-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(110deg, transparent 0%, transparent 42%, rgba(255,255,255,.36) 50%, transparent 58%, transparent 100%);
  transform: translate3d(-115%,0,0);
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
  pointer-events: none;
}
.product-media img {
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
  transform: translate3d(0,0,0) scale(1);
  backface-visibility: hidden;
}
.product-card.premium-product:hover .product-media img {
  transform: translate3d(0,0,0) scale(1.05);
}
.product-card.premium-product:hover .product-media::before {
  transform: translate3d(115%,0,0);
}
.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, transparent 52%, rgba(7,25,40,.55));
}
.product-label {
  position: absolute;
  z-index: 3;
  left: 16px;
  bottom: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: rgba(10,31,51,.74);
  border: 1px solid rgba(255,255,255,.24);
  font-size: .78rem;
  font-weight: 900;
  backdrop-filter: blur(10px);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), background .3s ease, border-color .3s ease;
}
.product-card.premium-product:hover .product-label {
  transform: translate3d(0,-2px,0);
  background: rgba(7,25,40,.68);
  border-color: rgba(255,255,255,.24);
}
.product-content {
  position: relative;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex: 1;
  flex-direction: column;
}
.product-content .section-actions {
  margin-top: auto;
  padding-top: 22px;
}
.product-card.premium-product .product-kicker {
  margin-top: 16px;
}
.product-kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 18px 0 0;
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 10px;
  border: 1px solid rgba(38,112,82,.2);
  border-radius: 999px;
  background: linear-gradient(135deg, #f1faf5, #fffaf0);
  color: var(--green-2);
  font-size: .84rem;
  font-weight: 800;
}
.export-note {
  margin: 22px 0 0;
  border-left: 4px solid var(--gold);
  background: #fff4cf;
  padding: 18px 20px;
  border-radius: 6px;
  color: #2b2416;
  font-weight: 750;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
  gap: 34px;
  align-items: start;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.mini-spec {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
}
.mini-spec div {
  display: grid;
  grid-template-columns: 42% 58%;
  border-bottom: 1px solid var(--line);
}
.mini-spec div:last-child { border-bottom: 0; }
.mini-spec b, .mini-spec span { padding: 12px 14px; }
.mini-spec b { background: var(--soft); color: var(--navy); }
.mini-spec span { color: #24323d; }
.product-index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.product-index a {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 800;
  color: var(--navy);
}
.product-index a:hover { border-color: var(--green); color: var(--green); }
.proof-gallery {
  display: grid;
  grid-template-columns: 1.3fr .85fr .85fr;
  gap: 18px;
  margin: 0 0 34px;
}
.proof-tile {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 8px;
  background: var(--soft);
  border: 1px solid var(--line);
  box-shadow: 0 18px 45px rgba(10,31,51,.1);
  transition: transform .28s ease, box-shadow .28s ease;
}
.proof-tile img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  transition: transform .7s ease;
}
.proof-tile:hover img {
  transform: scale(1.05);
}
.proof-tile:hover {
  transform: translateY(-6px);
  box-shadow: 0 32px 80px rgba(10,31,51,.18);
}
.proof-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(7,25,40,.72));
}
.proof-tile strong {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  color: #fff;
  font-size: 1.05rem;
}
.proof-tile.large {
  grid-row: span 2;
  min-height: 540px;
}
.proof-tile.large img {
  min-height: 540px;
}

.band {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(242,140,24,.12), transparent 34%),
    linear-gradient(135deg, var(--navy-3), var(--navy) 52%, var(--green-2));
  color: #fff;
}
.band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: .35;
}
.band::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: 28px;
  width: 340px;
  height: 72px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 40%, 78% 40%, 78% 8%, 100% 50%, 78% 92%, 78% 60%, 0 60%);
  opacity: .18;
}
.band > * {
  position: relative;
  z-index: 1;
}
.band h2, .band h3 { color: #fff; }
.band p { color: rgba(255,255,255,.78); }

.process {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.process-step {
  padding: 20px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
}
.process-step b { color: var(--green); }

.about-facts {
  margin-top: -34px;
}
.company-identity-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.96), rgba(245,250,247,.94)),
    radial-gradient(circle at 90% 0%, rgba(242,140,24,.16), transparent 34%);
}
.company-identity-card .panel-kicker {
  color: var(--impexia-orange);
}
.about-service-grid .command-card {
  min-height: 285px;
}
.about-logistics-showcase {
  position: relative;
  overflow: hidden;
}
.about-logistics-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 12%, rgba(242,140,24,.16), transparent 30%),
    linear-gradient(135deg, rgba(10,31,51,.05), transparent 42%);
}
.logistics-showcase-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: 42px;
  align-items: center;
}
.logistics-showcase-copy p {
  color: var(--muted);
  margin-bottom: 24px;
}
.logistics-mini-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.logistics-mini-flow span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(38,112,82,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  color: var(--navy);
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(10,31,51,.06);
}
.logistics-premium-visual {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 8px;
  border: 1px solid rgba(10,31,51,.12);
  background: var(--navy);
  box-shadow: 0 28px 80px rgba(10,31,51,.18);
}
.logistics-premium-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(6,21,34,.42), transparent 40%),
    linear-gradient(180deg, transparent 50%, rgba(6,21,34,.72));
}
.logistics-premium-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
}
.logistics-premium-visual img {
  width: 100%;
  height: clamp(320px, 46vw, 560px);
  object-fit: cover;
  transition: transform .7s cubic-bezier(.22,.61,.36,1), filter .7s ease;
}
.logistics-premium-visual:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.03);
}
.logistics-premium-visual figcaption {
  position: absolute;
  z-index: 3;
  left: 30px;
  right: 30px;
  bottom: 28px;
  display: grid;
  gap: 4px;
  color: #fff;
}
.logistics-premium-visual figcaption b {
  font-size: 1.1rem;
}
.logistics-premium-visual figcaption span {
  max-width: 520px;
  color: rgba(255,255,255,.76);
}

.relationships-premium {
  position: relative;
  overflow: hidden;
  padding: 104px 0 112px;
  color: #fff;
  background: var(--navy);
  isolation: isolate;
}
.relationships-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 18%, rgba(242,140,24,.16), transparent 34%),
    radial-gradient(circle at 82% 80%, rgba(38,112,82,.2), transparent 38%),
    linear-gradient(90deg, rgba(6,21,34,.98), rgba(6,21,34,.86) 48%, rgba(8,32,43,.62));
}
.relationships-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .26;
  mask-image: linear-gradient(90deg, #000, rgba(0,0,0,.58), transparent);
}
.relationships-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.relationships-bg picture,
.relationships-bg img {
  width: 100%;
  height: 100%;
}
.relationships-bg img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  opacity: .58;
}
.relationships-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 460px);
  gap: 64px;
  align-items: center;
}
.relationships-copy h2 {
  max-width: 760px;
  color: #fff;
  font-size: clamp(2.45rem, 4.65vw, 4.28rem);
  letter-spacing: 0;
  line-height: 1.04;
}
.relationships-copy p {
  max-width: 650px;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}
.relationship-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.relationship-signals span {
  min-height: 38px;
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  backdrop-filter: blur(12px);
}
.buyer-confidence-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(150deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(7, 22, 34, .58);
  box-shadow: 0 32px 90px rgba(0,0,0,.32);
  backdrop-filter: blur(16px) saturate(1.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.08);
  transition: transform .3s cubic-bezier(.22,.61,.36,1), border-color .3s ease, box-shadow .3s ease;
}
.buyer-confidence-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 84% 0%, rgba(255,194,71,.22), transparent 30%),
    linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255,255,255,.16) 50%, transparent 59%, transparent 100%);
  background-size: 100% 100%, 240% 100%;
  background-position: 0 0, -120% 0;
  opacity: .8;
  transition: background-position .65s cubic-bezier(.22,.61,.36,1);
}
.buyer-confidence-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,194,71,.36);
  box-shadow: 0 40px 110px rgba(0,0,0,.38);
}
.buyer-confidence-card:hover::before {
  background-position: 0 0, 120% 0;
}
.buyer-confidence-card > * {
  position: relative;
  z-index: 1;
}
.confidence-label {
  display: inline-flex;
  margin-bottom: 20px;
  padding: 8px 11px;
  border: 1px solid rgba(255,194,71,.26);
  border-radius: 999px;
  background: rgba(255,194,71,.1);
  color: #f7d38a;
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.buyer-confidence-card h3 {
  color: #fff;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}
.buyer-confidence-card p {
  color: rgba(255,255,255,.76);
  margin-bottom: 24px;
}
.buyer-confidence-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.buyer-confidence-card li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: center;
  padding: 13px 0;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.92);
  font-weight: 800;
}
.buyer-confidence-card li b {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--impexia-orange));
  box-shadow: 0 0 0 5px rgba(255,194,71,.08);
  font-size: .72rem;
}

.export-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 0%, rgba(38,112,82,.2), transparent 34%),
    radial-gradient(circle at 18% 18%, rgba(242,140,24,.13), transparent 26%),
    radial-gradient(circle at 50% 72%, rgba(101,217,143,.08), transparent 42%),
    linear-gradient(135deg, #06111f, #071827 58%, #08241f);
  color: #fff;
  padding: clamp(82px, 9vw, 120px) 0;
}
.export-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  opacity: .38;
}
.export-process-section::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 110px;
  width: 420px;
  height: 86px;
  opacity: .14;
  background: var(--arrow-gradient);
  clip-path: polygon(0 40%, 78% 40%, 78% 8%, 100% 50%, 78% 92%, 78% 60%, 0 60%);
  animation: brandArrowDrift 8s ease-in-out infinite;
}
.export-bg-glow {
  position: absolute;
  width: 680px;
  height: 680px;
  right: -220px;
  top: -240px;
  background: radial-gradient(circle, rgba(38,112,82,.22), transparent 70%);
  filter: blur(80px);
}
.export-process-container {
  position: relative;
  z-index: 2;
}
.export-process-header {
  max-width: 980px;
  margin: 0 auto 72px;
  text-align: center;
  animation: exportHeroIn .8s cubic-bezier(.16,1,.3,1) both;
}
.mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.055);
  border-radius: 999px;
  color: rgba(255,255,255,.86);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 26px;
  backdrop-filter: blur(10px);
}
.mini-badge::before {
  content: "";
  width: 34px;
  height: 7px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 74% 35%, 74% 0, 100% 50%, 74% 100%, 74% 65%, 0 65%);
}
.export-process-header h2 {
  color: #fff;
  font-size: clamp(3.2rem, 7.6vw, 7.1rem);
  line-height: .94;
  margin-bottom: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.export-process-header h2 span {
  display: block;
  color: #fff;
  text-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.export-process-header p {
  max-width: 760px;
  margin: 0 auto;
  color: rgba(226,236,244,.82);
  font-size: clamp(1.08rem, 2vw, 1.36rem);
  line-height: 1.8;
}
.export-hero-signals {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.export-hero-signals span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  color: rgba(226,236,244,.76);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}
.export-hero-signals span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #65d98f;
  box-shadow: 0 0 14px rgba(101,217,143,.55);
}
.world-flow {
  position: relative;
  height: clamp(520px, 54vw, 650px);
  margin-bottom: 92px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 48%, rgba(101,217,143,.055), transparent 54%),
    linear-gradient(145deg, rgba(255,255,255,.06), rgba(255,255,255,.015)),
    rgba(255,255,255,.035);
  box-shadow: 0 34px 110px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.08);
  overflow: hidden;
  isolation: isolate;
}
.world-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background:
    radial-gradient(circle at center, transparent 42%, rgba(0,0,0,.28) 100%),
    linear-gradient(180deg, rgba(255,255,255,.05), transparent 28%, transparent 72%, rgba(0,0,0,.18));
  pointer-events: none;
}
.world-flow::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -12%;
  top: 49%;
  height: 1px;
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.18), transparent);
  opacity: .7;
}
.network-scan {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,.045) 48%, transparent 58%);
  transform: translateX(-110%);
  animation: networkScan 7.5s cubic-bezier(.4,0,.2,1) infinite;
  pointer-events: none;
}
.impexia-world-map {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-image: linear-gradient(rgba(7,17,31,.22), rgba(7,17,31,.22)), url("../images/optimized/export-world-map-1800.webp");
  background-size: cover;
  background-position: center;
}
.impexia-world-map picture,
.impexia-world-map img {
  display: block;
  width: 100%;
  height: 100%;
}
.impexia-world-map img {
  object-fit: contain;
  object-position: center;
  opacity: 1;
  filter: saturate(1.03) contrast(1.02);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 54%, rgba(0,0,0,.72) 74%, transparent 100%);
  mask-image: radial-gradient(ellipse at center, #000 54%, rgba(0,0,0,.72) 74%, transparent 100%);
}
.impexia-world-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 68% 50%, rgba(242,140,24,.07), transparent 34%),
    linear-gradient(90deg, rgba(7,17,31,.22), transparent 18%, transparent 82%, rgba(7,17,31,.24));
}
.premium-route-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: .82;
  mix-blend-mode: screen;
}
.route-pulses circle {
  fill: rgba(255,246,211,.9);
  filter: drop-shadow(0 0 6px rgba(255,194,71,.72)) drop-shadow(0 0 14px rgba(101,217,143,.18));
  opacity: .68;
  animation: pulseComet 2.6s ease-in-out infinite;
}
.route-pulses circle:nth-child(2n) { opacity: .56; }
.route-pulses circle:nth-child(3n) { fill: rgba(114,230,163,.78); }
.scan-soft {
  z-index: 2;
  background: linear-gradient(90deg, transparent 10%, rgba(101,217,143,.035) 42%, transparent 58%);
  animation-duration: 10.5s;
  animation-delay: 2.1s;
}
.world-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.export-path {
  fill: none;
  stroke: rgba(255,194,71,.62);
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-dasharray: 3 13;
  opacity: .44;
  animation: dashTravel 16s linear infinite, routeOpacity 5.6s ease-in-out infinite;
}
.export-path-glow {
  fill: none;
  stroke: rgba(242,140,24,.68);
  stroke-width: 10;
  opacity: .05;
  filter: blur(7px);
}
.export-path-core {
  fill: none;
  stroke: rgba(101,217,143,.42);
  stroke-width: .9;
  stroke-linecap: round;
  opacity: .48;
}
.moving-dot {
  fill: #65d98f;
  filter: drop-shadow(0 0 9px rgba(101,217,143,.78)) drop-shadow(0 0 18px rgba(242,140,24,.18));
  opacity: .88;
}
.location {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(101,217,143,.95) 0 20%, rgba(101,217,143,.24) 21% 48%, rgba(7,24,39,.72) 49%);
  border: 1px solid rgba(101,217,143,.38);
  color: transparent;
  backdrop-filter: blur(14px);
  font-size: 0;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(101,217,143,.2), inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
  overflow: visible;
  z-index: 4;
  cursor: default;
}
.location::before {
  content: "";
  width: 7px;
  height: 7px;
  margin: 0;
  border-radius: 999px;
  background: #65d98f;
  box-shadow: 0 0 0 6px rgba(101,217,143,.12), 0 0 18px rgba(101,217,143,.66);
}
.location::after {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  min-width: max-content;
  padding: 8px 11px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 6px;
  background: rgba(4,18,31,.74);
  color: rgba(255,255,255,.92);
  box-shadow: 0 16px 42px rgba(0,0,0,.28), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(14px);
  font-size: .66rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transform: translate3d(-50%, 8px, 0) scale(.96);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
}
.location:hover,
.location:focus-visible {
  transform: translateY(-3px) scale(1.12);
  border-color: rgba(101,217,143,.42);
  box-shadow: 0 18px 44px rgba(0,0,0,.24), 0 0 34px rgba(101,217,143,.26);
  outline: 0;
}
.location:hover::after,
.location:focus-visible::after {
  opacity: 1;
  visibility: visible;
  transform: translate3d(-50%, 0, 0) scale(1);
}
.india {
  left: 53.5%;
  top: 40.5%;
  width: 92px;
  height: 118px;
  background: transparent;
  border-color: transparent;
  border-radius: 0;
  box-shadow: none;
}
.india::before {
  width: 13px;
  height: 13px;
  background: #fff;
  box-shadow: 0 0 0 8px rgba(242,140,24,.18), 0 0 30px rgba(101,217,143,.8), 0 0 58px rgba(242,140,24,.44);
}
.india::after {
  opacity: 1;
  visibility: visible;
  bottom: 56%;
  transform: translate3d(-50%, 0, 0) scale(1);
  background: rgba(4,18,31,.86);
  border-color: rgba(242,140,24,.52);
  box-shadow: 0 18px 42px rgba(0,0,0,.34), 0 0 28px rgba(242,140,24,.2);
}
.india .pulse {
  inset: 28px 22px 24px 18px;
  border: 0;
  border-radius: 0;
  clip-path: polygon(50% 0, 67% 13%, 72% 30%, 87% 41%, 72% 52%, 70% 68%, 55% 88%, 48% 100%, 37% 78%, 27% 67%, 31% 50%, 14% 39%, 31% 28%, 34% 12%);
  background:
    radial-gradient(circle at 55% 36%, rgba(255,255,255,.9) 0 5%, rgba(101,217,143,.82) 6% 14%, transparent 15%),
    radial-gradient(circle at 54% 46%, rgba(242,140,24,.5), transparent 58%),
    linear-gradient(145deg, rgba(242,140,24,.24), rgba(101,217,143,.12));
  filter: drop-shadow(0 0 14px rgba(242,140,24,.75)) drop-shadow(0 0 36px rgba(101,217,143,.28));
  animation: indiaGlow 2.8s ease-in-out infinite;
}
.india .pulse::before {
  content: "";
  position: absolute;
  inset: 3px;
  clip-path: inherit;
  background: linear-gradient(135deg, rgba(242,140,24,.9), rgba(101,217,143,.28));
  opacity: .22;
}
.europe { left: 43%; top: 27%; }
.middleeast { left: 51%; top: 54%; }
.africa { left: 50%; bottom: 8%; }
.asia { left: 77%; top: 32%; }
.pulse {
  position: absolute;
  inset: -5px;
  border-radius: 999px;
  border: 2px solid #65d98f;
  animation: pulse 2s infinite;
  pointer-events: none;
}
.data-particle {
  position: absolute;
  z-index: 3;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.7);
  box-shadow: 0 0 18px rgba(101,217,143,.6);
  opacity: .6;
  animation: dataFloat 6s ease-in-out infinite;
}
.particle-a { left: 53%; top: 34%; }
.particle-b { left: 62%; top: 56%; animation-delay: 1.2s; }
.particle-c { right: 13%; top: 28%; animation-delay: 2.1s; }
.shipment-signal {
  position: absolute;
  z-index: 3;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 1px solid rgba(101,217,143,.38);
  background: radial-gradient(circle, rgba(101,217,143,.72) 0 24%, rgba(101,217,143,.12) 25% 46%, transparent 47%);
  box-shadow: 0 0 22px rgba(101,217,143,.16);
  animation: shipmentPulse 3.8s cubic-bezier(.4,0,.2,1) infinite;
}
.shipment-signal::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: inherit;
  border: 1px solid rgba(101,217,143,.18);
  animation: shipmentRing 3.8s cubic-bezier(.4,0,.2,1) infinite;
}
.signal-origin { left: 55.4%; top: 49.5%; animation-delay: 0s; }
.signal-europe { left: 41.5%; top: 26%; animation-delay: .7s; }
.signal-middleeast { left: 47%; top: 55%; animation-delay: 1.1s; }
.signal-africa { left: 48.5%; top: 85%; animation-delay: 1.6s; }
.signal-asia { left: 86%; top: 31%; animation-delay: 2s; }
.export-process-timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.export-step {
  position: relative;
  overflow: hidden;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  min-height: 168px;
  padding: 26px;
  border-radius: 8px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  transition: transform .28s ease, border-color .28s ease, background .28s ease, box-shadow .28s ease;
}
.export-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 0%) var(--my, 0%), rgba(101,217,143,.14), transparent 32%);
  opacity: 0;
  transition: opacity .28s ease;
  pointer-events: none;
}
.export-step:hover {
  transform: translateY(-5px);
  border-color: rgba(101,217,143,.34);
  background: rgba(255,255,255,.075);
  box-shadow: 0 22px 58px rgba(0,0,0,.2);
}
.export-step:hover::before {
  opacity: 1;
}
.step-number {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--impexia-orange), var(--impexia-yellow));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  box-shadow: 0 0 30px rgba(242,140,24,.26);
}
.step-content {
  position: relative;
  z-index: 1;
}
.step-content h3 {
  color: #fff;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 8px;
}
.step-content p {
  color: rgba(226,236,244,.76);
  line-height: 1.68;
  margin: 0;
}
.export-journey {
  position: relative;
  overflow: hidden;
  margin: 0 0 42px;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(242,140,24,.14), transparent 24%),
    linear-gradient(135deg, rgba(6,21,34,.96), rgba(10,31,51,.9) 48%, rgba(29,93,69,.84)),
    linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: auto, auto, 44px 44px;
  color: #fff;
  box-shadow: 0 34px 90px rgba(10,31,51,.16);
}
.export-journey::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(246,183,95,.2), transparent 22%),
    linear-gradient(120deg, transparent 0%, rgba(255,255,255,.08) 48%, transparent 64%);
  pointer-events: none;
}
.journey-header {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px 26px 0;
}
.journey-header span {
  display: block;
  margin-bottom: 5px;
  color: #f6d38a;
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.journey-header h3 {
  color: #fff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  margin: 0;
}
.journey-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.84);
  font-size: .82rem;
  font-weight: 800;
  white-space: nowrap;
  backdrop-filter: blur(12px);
}
.journey-status i {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #58b887;
  box-shadow: 0 0 0 7px rgba(88,184,135,.12);
  animation: statusBlink 1.8s ease-in-out infinite;
}
.journey-map {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}
.journey-progress {
  position: absolute;
  left: 8%;
  top: calc(50% - 32px);
  width: 84%;
  height: 64px;
  opacity: .16;
  background:
    linear-gradient(90deg, rgba(255,255,255,.09) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.journey-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(38,112,82,.4), #58b887 25%, var(--impexia-orange) 58%, var(--impexia-yellow));
  box-shadow: 0 0 28px rgba(246,211,138,.22);
}
.journey-line::after {
  content: "";
  position: absolute;
  inset: -2px 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  width: 28%;
  animation: routePulse 4.8s ease-in-out infinite;
}
.journey-node {
  position: absolute;
  top: calc(50% - 30px);
  display: grid;
  place-items: center;
  width: 60px;
  height: 60px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 36px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.22);
  animation: nodeBreath 4.2s ease-in-out infinite;
}
.journey-node::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--green), var(--impexia-orange));
}
.journey-node b {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: .72rem;
  letter-spacing: .02em;
}
.journey-node span {
  position: absolute;
  top: 74px;
  color: rgba(255,255,255,.86);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.node-source { left: 7%; }
.node-pack { left: 28%; animation-delay: .4s; }
.node-port { left: 49%; animation-delay: .8s; }
.node-customs { left: 70%; animation-delay: 1.2s; }
.node-destination { left: 88%; animation-delay: 1.6s; }
.journey-plane {
  position: absolute;
  top: 27%;
  left: 3%;
  width: 54px;
  height: 28px;
  transform: rotate(-8deg);
  animation: planeRoute 8.8s cubic-bezier(.45,.05,.25,1) infinite;
}
.journey-plane::before {
  content: "";
  position: absolute;
  inset: 10px 0 9px;
  background: #fff;
  border-radius: 999px 70% 70% 999px;
  box-shadow: 0 0 24px rgba(255,255,255,.35);
}
.journey-plane::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 0;
  width: 22px;
  height: 28px;
  background: linear-gradient(135deg, #fff 45%, #f6d38a);
  clip-path: polygon(0 42%, 100% 0, 68% 52%, 100% 100%, 0 60%);
}
.journey-plane i {
  position: absolute;
  left: -36px;
  top: 12px;
  width: 34px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75));
}
.journey-ship {
  position: absolute;
  left: 45%;
  bottom: 58px;
  width: 92px;
  height: 44px;
  animation: shipSail 7.4s ease-in-out infinite;
}
.journey-ship::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 20px;
  background: linear-gradient(135deg, #f6d38a, #fff);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 12% 100%);
}
.journey-ship::after {
  content: "";
  position: absolute;
  left: 24px;
  bottom: 20px;
  width: 44px;
  height: 18px;
  background: rgba(255,255,255,.9);
  border-radius: 3px 3px 0 0;
}
.journey-ship i {
  position: absolute;
  left: -14px;
  right: -16px;
  bottom: -9px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(88,184,135,.72), transparent);
}
.journey-crate {
  position: absolute;
  width: 32px;
  height: 26px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 4px;
  background: linear-gradient(135deg, #c98d32, #f6d38a);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
  animation: crateMove 6.8s ease-in-out infinite;
}
.journey-crate::before {
  content: "";
  position: absolute;
  inset: 0 14px;
  background: rgba(10,31,51,.18);
}
.crate-a { left: 30%; top: calc(50% - 54px); }
.crate-b { left: 35%; top: calc(50% - 22px); animation-delay: .6s; }
.journey-country {
  position: absolute;
  top: calc(50% + 58px);
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.74);
  font-size: .68rem;
  font-weight: 900;
  letter-spacing: .12em;
  backdrop-filter: blur(10px);
}
.country-origin { left: 6%; }
.country-destination { right: 6%; }
.journey-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.13);
}
.journey-cards article {
  min-height: 190px;
  padding: 22px;
  background: rgba(6,21,34,.58);
  animation: cardRise .7s ease both;
  transition: background .28s ease, transform .28s ease;
}
.journey-cards article:nth-child(1) { animation-delay: .12s; }
.journey-cards article:nth-child(2) { animation-delay: .2s; }
.journey-cards article:nth-child(3) { animation-delay: .28s; }
.journey-cards article:nth-child(4) { animation-delay: .36s; }
.journey-cards article:nth-child(5) { animation-delay: .44s; }
.journey-cards article:hover {
  background: rgba(255,255,255,.11);
  transform: translateY(-4px);
}
.journey-cards b {
  color: var(--impexia-yellow);
  font-size: .78rem;
  letter-spacing: .12em;
}
.journey-cards h3 {
  color: #fff;
  font-size: 1.08rem;
  margin: 10px 0 8px;
}
.journey-cards p {
  margin: 0;
  color: rgba(255,255,255,.76);
  font-size: .94rem;
  line-height: 1.55;
}
.logistics-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: start;
}
.logistics-copy {
  position: sticky;
  top: 106px;
}
.logistics-copy h3 {
  font-size: 1.65rem;
}
.logistics-proof {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}
.logistics-proof img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}
.logistics-proof div {
  padding: 18px;
}
.logistics-proof b {
  display: block;
  color: var(--green);
  margin-bottom: 4px;
}
.logistics-proof span {
  color: var(--muted);
}
.logistics-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}
.logistics-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 23px;
  width: 2px;
  background: linear-gradient(180deg, var(--green), var(--gold));
  opacity: .28;
}
.logistics-step {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 18px 18px 0;
  border: 1px solid var(--line);
  border-left: 0;
  background: rgba(255,255,255,.86);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(10,31,51,.06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.logistics-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow);
  border-color: rgba(38,112,82,.26);
}
.logistics-step span {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--navy);
  color: #fff;
  border: 4px solid #f7faf9;
  font-weight: 900;
  box-shadow: 0 0 0 1px rgba(38,112,82,.2);
}
.logistics-step h3 {
  margin-bottom: 6px;
  font-size: 1.08rem;
}
.logistics-step p {
  margin: 0;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(6,21,34,.98), rgba(16,43,68,.96) 58%, rgba(29,93,69,.94)),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  color: #fff;
  padding: 86px 0;
}
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-hero-media picture,
.page-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
}
.page-hero-media img {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.05) contrast(1.04);
  transform: scale(1.04);
  animation: corporateHeroDrift 18s ease-in-out infinite alternate;
}
.about-hero-premium,
.corporate-hero-premium,
.category-hero-premium {
  min-height: 640px;
  display: grid;
  align-items: center;
  background: var(--navy);
  isolation: isolate;
}
.about-hero-premium::before,
.corporate-hero-premium::before,
.category-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 28%, rgba(242,140,24,.24), transparent 30%),
    radial-gradient(circle at 74% 18%, rgba(38,112,82,.18), transparent 34%),
    linear-gradient(90deg, rgba(6,21,34,.96) 0%, rgba(6,21,34,.84) 38%, rgba(6,21,34,.52) 68%, rgba(6,21,34,.72) 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--green));
}
.page-hero.about-hero-premium::after,
.page-hero.corporate-hero-premium::after,
.page-hero.category-hero-premium::after {
  z-index: 2;
  height: auto;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, var(--green), var(--gold), var(--green)) left bottom / 100% 5px no-repeat;
  background-size: 64px 64px, 64px 64px, 100% 5px;
  opacity: .62;
  mask-image: linear-gradient(180deg, #000, transparent 94%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
}
.about-hero-premium .container,
.corporate-hero-premium .container,
.category-hero-premium .container {
  z-index: 3;
}
.about-hero-premium h1,
.corporate-hero-premium h1,
.category-hero-premium h1 {
  max-width: 980px;
  text-shadow: 0 18px 54px rgba(0,0,0,.34);
}
.about-hero-premium p,
.corporate-hero-premium p,
.category-hero-premium p {
  max-width: 820px;
}
.category-hero-premium {
  min-height: 560px;
}
.products-hero-premium .page-hero-media img { object-position: center 44%; }
.vegetables-hero-premium .page-hero-media img { object-position: center 52%; }
.fruits-hero-premium .page-hero-media img { object-position: center 56%; }
.spices-hero-premium .page-hero-media img { object-position: center 50%; }
.dryfruits-hero-premium .page-hero-media img { object-position: center 54%; }
.contact-hero-premium .page-hero-media img { object-position: center 50%; }
.certificates-hero-premium .page-hero-media img { object-position: center 48%; }
.about-hero-signals {
  margin-top: 34px;
}
.about-hero-signals div {
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), 0 16px 42px rgba(0,0,0,.18);
}
.page-hero h1 { color: #fff; font-size: clamp(2.4rem, 4vw, 4.2rem); max-width: 900px; }
.page-hero p { color: rgba(255,255,255,.84); max-width: 760px; font-size: 1.1rem; }
.page-hero.about-hero-premium h1 { max-width: 980px; }
.page-hero.about-hero-premium p { max-width: 820px; }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
}
.spec-table th, .spec-table td { padding: 14px 16px; border-bottom: 1px solid var(--line); text-align: left; }
.spec-table th { width: 34%; color: var(--navy); background: var(--soft); }

.product-hero-premium {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(242,140,24,.14), transparent 30%),
    radial-gradient(circle at 20% 80%, rgba(38,112,82,.16), transparent 34%),
    linear-gradient(135deg, rgba(6,21,34,.98), rgba(16,43,68,.96) 58%, rgba(29,93,69,.94));
  color: #fff;
}
.product-hero-premium.makhana-hero-premium {
  background: var(--navy);
  isolation: isolate;
}
.makhana-hero-premium .page-hero-media img {
  object-position: center 46%;
  opacity: .52;
  filter: saturate(1.02) contrast(1.04) blur(.2px);
}
.makhana-hero-premium::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 28%, rgba(242,140,24,.2), transparent 30%),
    linear-gradient(90deg, rgba(6,21,34,.96), rgba(6,21,34,.78) 48%, rgba(6,21,34,.88));
}
.product-hero-premium::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}
.product-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 46px;
  align-items: center;
}
.product-hero-copy h1 {
  color: #fff;
  max-width: 860px;
  font-size: clamp(2.55rem, 4.8vw, 5rem);
  line-height: 1.02;
}
.product-hero-copy p {
  max-width: 760px;
  color: rgba(255,255,255,.82);
  font-size: 1.12rem;
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 6px;
}
.product-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
  font-size: .82rem;
  font-weight: 850;
  backdrop-filter: blur(10px);
}
.product-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  box-shadow: 0 34px 100px rgba(0,0,0,.25);
}
.product-proof-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .7s ease;
}
.product-proof-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.06) contrast(1.03);
}
.product-proof-card figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  background: rgba(7,25,40,.72);
  color: rgba(255,255,255,.88);
  backdrop-filter: blur(14px);
}
.product-proof-card b {
  display: block;
  color: #fff;
  margin-bottom: 4px;
}
.product-detail-premium {
  background:
    radial-gradient(circle at 12% 22%, rgba(38,112,82,.07), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
}
.product-info-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 28px;
  align-items: start;
}
.product-overview-card,
.product-spec-card,
.product-trust-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 20px 58px rgba(10,31,51,.09);
}
.product-overview-card {
  padding: 32px;
}
.product-trust-list {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}
.product-trust-list span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 800;
}
.product-trust-list span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 0 5px rgba(38,112,82,.08);
}
.product-spec-card {
  padding: 0;
}
.product-spec-card h2 {
  margin: 0;
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(1.65rem, 2.2vw, 2.15rem);
}
.premium-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.premium-spec-grid div {
  padding: 17px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.premium-spec-grid div:nth-child(2n) {
  border-right: 0;
}
.premium-spec-grid b {
  display: block;
  color: var(--navy);
  margin-bottom: 5px;
}
.premium-spec-grid span {
  color: var(--muted);
}
.product-buyer-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(10,31,51,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,51,.035) 1px, transparent 1px),
    radial-gradient(circle at 14% 16%, rgba(38,112,82,.09), transparent 28%),
    linear-gradient(180deg, #f8fbfa 0%, #fff 100%);
  background-size: 56px 56px, 56px 56px, auto, auto;
}
.buyer-ready-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 30px;
  align-items: start;
}
.buyer-ready-panel {
  position: sticky;
  top: 104px;
  padding: 34px;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 24px 70px rgba(10,31,51,.08);
  backdrop-filter: blur(14px);
}
.buyer-ready-panel h2 {
  max-width: 650px;
}
.buyer-ready-panel p {
  color: var(--muted);
}
.buyer-mini-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}
.buyer-mini-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-weight: 850;
}
.buyer-mini-list span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(242,140,24,.1);
}
.buyer-ready-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.buyer-ready-card {
  position: relative;
  min-height: 210px;
  padding: 24px;
  border: 1px solid rgba(10,31,51,.11);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(242,140,24,.13), transparent 32%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,252,250,.96));
  box-shadow: 0 18px 48px rgba(10,31,51,.07);
  transition: transform .34s cubic-bezier(.2,.8,.2,1), border-color .34s ease, box-shadow .34s ease;
}
.buyer-ready-card:hover {
  transform: translate3d(0,-5px,0);
  border-color: rgba(38,112,82,.26);
  box-shadow: 0 26px 70px rgba(10,31,51,.11);
}
.buyer-ready-card b {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border-radius: 999px;
  background: #eef5ef;
  color: var(--green);
  font-size: .8rem;
  letter-spacing: .08em;
}
.buyer-ready-card h3 {
  margin-bottom: 9px;
  font-size: 1.14rem;
}
.buyer-ready-card p {
  margin: 0;
  color: var(--muted);
  font-size: .95rem;
}
.product-cta-band {
  background:
    linear-gradient(135deg, rgba(10,31,51,.96), rgba(16,43,68,.95) 62%, rgba(29,93,69,.92));
  color: #fff;
}
.product-cta-band h2 {
  color: #fff;
}
.product-cta-band p {
  color: rgba(255,255,255,.78);
}
.product-cta-band .section-actions {
  align-items: stretch;
}
.product-cta-band .btn-with-icon {
  min-width: 190px;
  min-height: 126px;
  flex-direction: column;
  gap: 12px;
  padding: 22px 24px;
  text-align: center;
  justify-content: center;
}
.product-cta-band .btn-icon {
  width: 48px;
  height: 48px;
}
.product-cta-band .btn-whatsapp {
  min-width: 205px;
}
.product-cta-band .btn-whatsapp .btn-icon {
  width: 58px;
  height: 58px;
}
.product-cta-band .btn-icon svg {
  width: 27px;
  height: 27px;
}
.product-cta-band .btn-with-icon:hover .btn-icon {
  transform: translate3d(0,-3px,0) scale(1.08);
}

.contact-panel {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
}
.contact-hero .hero-actions {
  margin-top: 28px;
}
.contact-premium-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(38,112,82,.08), transparent 30%),
    radial-gradient(circle at 85% 10%, rgba(242,140,24,.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f7fbf9 100%);
}
.contact-premium-grid {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: 28px;
  align-items: start;
}
.contact-command-card,
.contact-form-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  background: rgba(255,255,255,.92);
  box-shadow: 0 24px 70px rgba(10,31,51,.1);
}
.contact-command-card {
  padding: 34px;
  background:
    linear-gradient(160deg, rgba(10,31,51,.96), rgba(16,43,68,.94) 56%, rgba(29,93,69,.9)),
    radial-gradient(circle at 20% 0%, rgba(255,194,71,.2), transparent 35%);
  color: #fff;
}
.contact-command-card::before,
.contact-form-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.13), transparent 42%, rgba(255,194,71,.08));
}
.contact-command-card > *,
.contact-form-card > * {
  position: relative;
  z-index: 1;
}
.contact-command-card h2,
.contact-form-card h2 {
  margin: 8px 0 20px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
}
.contact-detail-list {
  display: grid;
  gap: 14px;
  margin: 24px 0;
}
.contact-detail-list p {
  margin: 0;
  padding: 15px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.contact-detail-list strong {
  display: block;
  color: rgba(255,255,255,.95);
  margin-bottom: 5px;
}
.contact-detail-list span,
.contact-detail-list a {
  color: rgba(255,255,255,.74);
}
.contact-trust-row {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}
.contact-trust-row span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255,255,255,.82);
  font-weight: 750;
  font-size: .93rem;
}
.contact-trust-row span::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 0 5px rgba(255,194,71,.08);
}
.contact-form-card {
  padding: 34px;
}
.form-head p {
  max-width: 640px;
  color: var(--muted);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
label {
  display: grid;
  gap: 7px;
  color: var(--navy);
  font-size: .88rem;
  font-weight: 850;
}
form {
  display: grid;
  gap: 14px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
input:not([type="checkbox"]):not([type="radio"]), select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  font: inherit;
  color: var(--navy);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease;
}
input::placeholder,
textarea::placeholder {
  color: rgba(82,99,122,.64);
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: rgba(38,112,82,.65);
  box-shadow: 0 0 0 4px rgba(38,112,82,.1);
}
.form-field {
  display: grid;
  gap: 7px;
}
.field-label {
  color: var(--navy);
  font-size: .88rem;
  font-weight: 850;
}
textarea { min-height: 140px; resize: vertical; }
.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-footer span,
.contact-note {
  color: var(--muted);
  font-size: .94rem;
}
.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 800;
}
.form-status.is-error {
  color: #9f3412;
}
.contact-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.contact-process-grid .card {
  min-height: 210px;
}
.contact-process-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: var(--navy);
  font-weight: 900;
  background: linear-gradient(135deg, rgba(38,112,82,.12), rgba(242,140,24,.14));
}
.contact-location-grid {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 34px;
  align-items: center;
}
.map-frame {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10,31,51,.12);
}
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--green);
  font-weight: 900;
}
.map-link::after {
  content: "";
  width: 18px;
  height: 5px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 70% 35%, 70% 0, 100% 50%, 70% 100%, 70% 65%, 0 65%);
  transition: transform .22s ease;
}
.map-link:hover::after {
  transform: translateX(4px);
}
.map-shell {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(10,31,51,.12);
}
.map-shell .map-frame {
  display: block;
  box-shadow: none;
}

.rfq-hero .page-hero-media img,
.rfq-success-hero .page-hero-media img {
  object-position: center 48%;
}
.rfq-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .44fr);
  gap: 38px;
  align-items: center;
}
.rfq-trust-card,
.quote-success-card {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.18), rgba(255,255,255,.07)),
    rgba(7, 20, 31, .56);
  color: #fff;
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
}
.rfq-trust-card { padding: 32px; }
.rfq-trust-card h2,
.quote-success-card h1 { color: #fff; }
.rfq-trust-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}
.rfq-trust-card li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.82);
  line-height: 1.5;
}
.rfq-trust-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(216,148,36,.12);
}
.rfq-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(38,112,82,.24), transparent 30%),
    radial-gradient(circle at 92% 18%, rgba(242,140,24,.17), transparent 26%),
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.032) 1px, transparent 1px),
    linear-gradient(135deg, var(--navy-3) 0%, #0a2034 48%, #0d3b33 100%);
  background-size: auto, auto, 56px 56px, 56px 56px, auto;
}
.rfq-section::before,
.rfq-section::after {
  content: "";
  position: absolute;
  pointer-events: none;
}
.rfq-section::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,.03), transparent 18% 82%, rgba(255,194,71,.035));
}
.rfq-section::after {
  width: 52%;
  height: 1px;
  top: 0;
  left: 24%;
  background: linear-gradient(90deg, transparent, rgba(255,194,71,.72), transparent);
  box-shadow: 0 0 34px rgba(255,194,71,.34);
}
.rfq-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .43fr);
  gap: 34px;
  align-items: start;
}
.rfq-form-card,
.rfq-summary-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 8px;
  box-shadow: 0 32px 100px rgba(0,0,0,.28);
}
.rfq-form-card {
  padding: clamp(26px, 3vw, 40px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.985), rgba(249,252,250,.965)),
    radial-gradient(circle at 96% 2%, rgba(242,140,24,.16), transparent 28%);
}
.rfq-form-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--impexia-orange));
}
.rfq-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255,255,255,.28) 47%, transparent 58% 100%);
  transform: translateX(-130%);
  animation: rfqSweep 8s ease-in-out infinite;
}
.rfq-form-card .form-head {
  position: relative;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10,31,51,.08);
}
.rfq-form-card .form-head h2 {
  font-size: clamp(2.05rem, 4vw, 3.35rem);
  line-height: 1.02;
  letter-spacing: -.035em;
}
.rfq-form-card .form-head p {
  font-size: 1.02rem;
  line-height: 1.75;
}
.rfq-progress-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin: 22px 0 12px;
  padding: 8px;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(10,31,51,.055), rgba(38,112,82,.055));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 18px 38px rgba(10,31,51,.055);
}
.rfq-progress-strip span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  border-radius: 999px;
  color: var(--navy);
  font-size: .72rem;
  font-weight: 950;
  background: linear-gradient(180deg, #fff, #f5faf7);
  border: 1px solid rgba(255,255,255,.8);
  transition: color .22s ease, background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.rfq-progress-strip span.is-active,
.rfq-progress-strip span.is-complete {
  color: #fff;
  background: linear-gradient(135deg, var(--navy), var(--green));
  box-shadow: 0 12px 26px rgba(10,31,51,.16);
}
.rfq-progress-strip span.is-active {
  transform: translateY(-1px);
  outline: 3px solid rgba(216,148,36,.14);
}
.rfq-progress-strip span::after {
  content: "";
  width: 14px;
  height: 4px;
  margin-left: 7px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 70% 35%, 70% 0, 100% 50%, 70% 100%, 70% 65%, 0 65%);
}
.rfq-progress-strip span:last-child::after { display: none; }
.rfq-desk-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 8px;
}
.rfq-desk-strip div {
  padding: 15px 16px;
  border: 1px solid rgba(10,31,51,.09);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10,31,51,.965), rgba(13,43,68,.94)),
    radial-gradient(circle at 90% 0%, rgba(255,194,71,.18), transparent 32%);
  box-shadow: 0 18px 40px rgba(10,31,51,.14);
}
.rfq-desk-strip strong,
.rfq-desk-strip span {
  display: block;
}
.rfq-desk-strip strong {
  color: #fff;
  font-size: .88rem;
  margin-bottom: 4px;
}
.rfq-desk-strip span {
  color: rgba(255,255,255,.68);
  font-size: .78rem;
  line-height: 1.45;
}
.rfq-fieldset {
  position: relative;
  margin: 26px 0 0;
  padding: clamp(22px, 2.5vw, 30px);
  border: 1px solid rgba(10,31,51,.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,252,250,.96)),
    radial-gradient(circle at 96% 6%, rgba(242,140,24,.12), transparent 26%),
    #fff;
  box-shadow: 0 18px 46px rgba(10,31,51,.055);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.rfq-step[hidden] {
  display: none;
}
.rfq-step.is-active {
  animation: rfqStepIn .34s cubic-bezier(.22,.61,.36,1);
}
.rfq-fieldset::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 3px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(180deg, var(--green), var(--gold));
  opacity: .72;
}
.rfq-fieldset:hover {
  transform: translateY(-2px);
  border-color: rgba(38,112,82,.26);
  box-shadow: 0 26px 62px rgba(10,31,51,.08);
}
.rfq-fieldset legend {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px 0 0;
  color: var(--navy);
  font-weight: 950;
  letter-spacing: -.01em;
}
.rfq-fieldset legend span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--navy), var(--green));
  color: #fff;
  font-size: .78rem;
  box-shadow: 0 10px 24px rgba(10,31,51,.16), 0 0 0 5px rgba(38,112,82,.08);
}
.form-wide { grid-column: 1 / -1; }
.phone-combo {
  display: grid;
  grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
  gap: 10px;
}
.phone-combo select,
.phone-combo input {
  height: 50px;
}
.country-code-custom {
  margin-top: 10px;
}
.country-code-custom[hidden] {
  display: none;
}
.certification-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 12px;
}
.certification-options label {
  display: flex;
  align-items: center;
  min-height: 48px;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f8fbf9);
  color: var(--navy);
  font-size: .84rem;
  font-weight: 850;
  transition: transform .2s ease, border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.certification-options label:hover {
  transform: translateY(-1px);
  border-color: rgba(38,112,82,.3);
  background: #fff;
  box-shadow: 0 12px 28px rgba(10,31,51,.07);
}
.certification-options label:has(input:checked) {
  border-color: rgba(38,112,82,.42);
  background: linear-gradient(135deg, rgba(38,112,82,.12), rgba(242,140,24,.09));
  box-shadow: 0 12px 30px rgba(38,112,82,.1);
}
/* Cases à cocher premium (custom) — remplacent le rendu natif pour éviter
   le clignotement de repaint et offrir un visuel cohérent avec la marque. */
.certification-options input[type="checkbox"],
.check-row input[type="checkbox"] {
  -webkit-appearance: none;
  appearance: none;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: #fff;
  display: inline-grid;
  place-content: center;
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.certification-options input[type="checkbox"]::before,
.check-row input[type="checkbox"]::before {
  content: "";
  width: 11px;
  height: 11px;
  transform: scale(0);
  transition: transform .12s ease;
  background: #fff;
  clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0, 43% 62%);
}
.certification-options input[type="checkbox"]:checked,
.check-row input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}
.certification-options input[type="checkbox"]:checked::before,
.check-row input[type="checkbox"]:checked::before {
  transform: scale(1);
}
.certification-options input[type="checkbox"]:hover,
.check-row input[type="checkbox"]:hover {
  border-color: var(--green);
}
.certification-options input[type="checkbox"]:focus-visible,
.check-row input[type="checkbox"]:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(38,112,82,.18);
}
.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 12px;
  color: var(--muted);
  font-weight: 650;
}
.check-row input[type="checkbox"] {
  margin-top: 1px;
}
.form-hint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: .9rem;
}
.rfq-review-panel {
  padding: clamp(20px, 3vw, 28px);
  border: 1px solid rgba(10,31,51,.1);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(10,31,51,.965), rgba(14,52,58,.94)),
    radial-gradient(circle at 100% 0%, rgba(255,194,71,.18), transparent 34%);
  box-shadow: 0 22px 54px rgba(10,31,51,.16);
  margin-bottom: 18px;
}
.rfq-review-panel h3 {
  color: #fff;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.12;
  margin-bottom: 12px;
}
.rfq-review-panel p {
  color: rgba(255,255,255,.72);
  line-height: 1.7;
}
.rfq-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 20px;
}
.rfq-review-grid div {
  padding: 15px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.rfq-review-grid strong {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--gold));
}
.rfq-review-grid span {
  display: block;
  color: rgba(255,255,255,.75);
  font-size: .84rem;
  line-height: 1.45;
}
.rfq-wizard-controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(10,31,51,.08);
}
.rfq-wizard-controls [data-rfq-prev] {
  justify-self: start;
}
.rfq-wizard-controls [data-rfq-next] {
  justify-self: end;
}
.rfq-wizard-controls span {
  color: var(--muted);
  font-size: .84rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.rfq-wizard-controls button:disabled {
  opacity: .42;
  cursor: not-allowed;
  transform: none;
}
.rfq-submit-row { align-items: center; }
.rfq-submit-row [hidden],
.rfq-wizard-controls [hidden] {
  display: none;
}
.rfq-summary-card {
  position: sticky;
  top: 104px;
  padding: 30px;
  background:
    radial-gradient(circle at 90% 0%, rgba(255,194,71,.16), transparent 32%),
    linear-gradient(145deg, rgba(10,31,51,.98), rgba(9,39,58,.96));
  color: #fff;
}
.rfq-summary-card h2 {
  margin-bottom: 8px;
  color: #fff;
}
.summary-empty {
  color: rgba(255,255,255,.68);
  font-size: .94rem;
}
.rfq-readiness {
  display: grid;
  gap: 12px;
  margin: 20px 0;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 8px;
  background: rgba(255,255,255,.055);
}
.rfq-readiness strong,
.rfq-readiness span {
  display: block;
}
.rfq-readiness strong {
  color: #fff;
  font-size: .94rem;
}
.rfq-readiness [data-rfq-progress-note] {
  margin-top: 4px;
  color: rgba(255,255,255,.62);
  font-size: .82rem;
}
.rfq-readiness-track {
  overflow: hidden;
  height: 7px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}
.rfq-readiness-track span {
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--impexia-orange));
  box-shadow: 0 0 18px rgba(255,194,71,.35);
  transition: width .35s ease;
}
.rfq-summary-list {
  display: grid;
  gap: 0;
  margin: 22px 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.04);
}
.rfq-summary-list div {
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 12px;
  padding: 14px 15px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.045);
}
.rfq-summary-list div:last-child { border-bottom: 0; }
.rfq-summary-list dt {
  color: rgba(255,255,255,.58);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.rfq-summary-list dd {
  margin: 0;
  color: #fff;
  font-weight: 850;
}
.rfq-confidence {
  padding: 18px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(38,112,82,.28), rgba(242,140,24,.18));
}
.rfq-confidence strong,
.rfq-confidence span { display: block; }
.rfq-confidence strong {
  color: #fff;
  margin-bottom: 5px;
}
.rfq-confidence span { color: rgba(255,255,255,.72); }
@keyframes rfqSweep {
  0%, 52%, 100% { transform: translateX(-130%); opacity: 0; }
  62% { opacity: 1; }
  78% { transform: translateX(130%); opacity: 0; }
}
@keyframes rfqStepIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.quote-success-wrap {
  display: grid;
  justify-items: center;
}
.quote-success-card {
  width: min(100%, 760px);
  padding: clamp(32px, 5vw, 54px);
  text-align: center;
}
.success-mark {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(38,112,82,.18);
  border: 1px solid rgba(255,255,255,.2);
  color: #d8f6df;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .76rem;
}
.reference-box {
  margin: 28px auto;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
}
.reference-box span,
.reference-box strong { display: block; }
.reference-box span {
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 900;
}
.reference-box strong {
  margin-top: 8px;
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 3rem);
  letter-spacing: .06em;
}
.map-location-card {
  position: absolute;
  left: 18px;
  bottom: 18px;
  max-width: min(320px, calc(100% - 36px));
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(7,24,39,.92), rgba(9,52,58,.84)),
    rgba(7,24,39,.88);
  box-shadow: 0 18px 42px rgba(10,31,51,.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.map-location-card::before {
  content: "";
  position: absolute;
  left: 16px;
  top: -10px;
  width: 18px;
  height: 18px;
  border-radius: 999px 999px 999px 0;
  background: linear-gradient(135deg, var(--impexia-orange), var(--gold));
  transform: rotate(-45deg);
  box-shadow: 0 0 0 7px rgba(242,140,24,.16), 0 8px 24px rgba(10,31,51,.18);
}
.map-location-card span,
.map-location-card small {
  display: block;
  color: rgba(255,255,255,.72);
  font-size: .78rem;
}
.map-location-card span {
  margin-bottom: 5px;
  color: #ffc247;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.map-location-card strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(242,140,24,.18), transparent 30%),
    linear-gradient(135deg, transparent 0 56%, rgba(242,140,24,.09) 56% 63%, transparent 63% 100%),
    linear-gradient(135deg, #061522, #071928 65%, #0a2636);
  color: rgba(255,255,255,.78);
  padding: 64px 0 26px;
}
.site-footer::before {
  content: "";
  position: absolute;
  left: -170px;
  top: -135px;
  width: 520px;
  height: 330px;
  pointer-events: none;
  background:
    radial-gradient(circle at 48% 54%, rgba(255,255,255,.58), rgba(255,255,255,.18) 35%, transparent 68%),
    radial-gradient(circle at 70% 45%, rgba(242,140,24,.14), transparent 46%),
    radial-gradient(circle at 26% 72%, rgba(38,112,82,.14), transparent 44%);
  filter: blur(18px);
  opacity: .58;
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255,194,71,.12), transparent);
  opacity: .55;
}
.footer-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr 1fr;
  gap: 36px;
}
.site-footer .brand {
  position: relative;
  margin-bottom: 18px;
  width: fit-content;
  padding: 10px 18px 12px 0;
}
.site-footer .brand::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: -28px;
  top: -18px;
  width: 248px;
  height: 126px;
  border-radius: 999px;
  background:
    radial-gradient(circle at 38% 48%, rgba(255,255,255,.66), rgba(255,255,255,.24) 43%, rgba(255,255,255,.08) 64%, transparent 78%),
    radial-gradient(ellipse at 45% 86%, rgba(255,255,255,.38), rgba(255,255,255,.14) 31%, transparent 58%),
    radial-gradient(circle at 76% 38%, rgba(255,194,71,.2), transparent 48%),
    radial-gradient(circle at 20% 76%, rgba(38,112,82,.1), transparent 46%);
  filter: blur(14px);
  opacity: .74;
}
.site-footer .brand-logo {
  content: url("../images/optimized/impexia-logo-footer-3d-900.webp");
  width: auto;
  height: 90px;
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.18));
}
.site-footer h3 {
  color: #fff;
  font-size: .92rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.site-footer h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 5px;
  margin-top: 9px;
  background: var(--arrow-gradient);
  clip-path: polygon(0 35%, 74% 35%, 74% 0, 100% 50%, 74% 100%, 74% 65%, 0 65%);
}
.site-footer a {
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: rgba(255,255,255,.76);
  transition: color .22s ease, transform .22s ease;
}
.site-footer a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-bottom {
  position: relative;
  z-index: 1;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.footer-copy {
  line-height: 1.5;
}
.footer-legal {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.045);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.site-footer .footer-legal a {
  display: inline-flex;
  align-items: center;
  margin: 0;
  color: rgba(255,255,255,.8);
  font-weight: 700;
  font-size: .86rem;
  line-height: 1;
  text-decoration: none;
}
.site-footer .footer-legal a:hover {
  color: #ffc247;
  transform: none;
}
.footer-legal .dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,194,71,.72);
  box-shadow: 0 0 12px rgba(255,194,71,.3);
}

.certificate-hero {
  background:
    linear-gradient(115deg, rgba(5, 22, 35, .95), rgba(8, 44, 47, .86)),
    url("../images/optimized/onion-warehouse-1600.jpg") center / cover;
}
.compliance-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, .72fr);
  gap: 44px;
  align-items: center;
  min-width: 0;
}
.compliance-hero-panel {
  border: 1px solid rgba(255,255,255,.22);
  background:
    linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.07)),
    rgba(7, 20, 31, .56);
  box-shadow: 0 30px 80px rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
  border-radius: 8px;
  padding: 28px;
  color: #fff;
  min-width: 0;
}
.panel-kicker {
  display: inline-flex;
  margin-bottom: 16px;
  color: #f6d38a;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 800;
}
.compliance-hero-panel h2 {
  color: #fff;
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 18px;
}
.compliance-hero-panel ul {
  list-style: none;
  display: grid;
  gap: 13px;
}
.compliance-hero-panel li {
  display: grid;
  gap: 4px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.compliance-hero-panel li:last-child { border-bottom: 0; padding-bottom: 0; }
.compliance-hero-panel b {
  color: rgba(255,255,255,.62);
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compliance-hero-panel span:not(.panel-kicker) { color: rgba(255,255,255,.94); }
.compliance-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(246, 211, 138, .18), transparent 28%),
    linear-gradient(180deg, #fff, #f7faf7);
}
.compliance-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.compliance-card {
  position: relative;
  min-height: 265px;
  overflow: hidden;
  border: 1px solid rgba(9, 45, 66, .13);
  border-radius: 8px;
  background: #fff;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(9,45,66,.08);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.compliance-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--mx, 82%) var(--my, 18%), rgba(246,183,95,.18), transparent 32%),
    radial-gradient(circle at 92% 110%, rgba(38,112,82,.12), transparent 26%);
  opacity: .75;
  pointer-events: none;
}
.compliance-card:hover {
  transform: translateY(-7px);
  border-color: rgba(38,112,82,.34);
  box-shadow: 0 26px 70px rgba(9,45,66,.13);
}
.compliance-card.primary {
  background:
    linear-gradient(145deg, rgba(8,31,47,.96), rgba(10, 60, 53, .95));
  color: rgba(255,255,255,.82);
}
.compliance-card.primary h3 { color: #fff; }
.compliance-card.primary small { color: #f6d38a; }
.compliance-card.primary a { color: #fff; }
.compliance-card small {
  display: block;
  margin: 30px 0 9px;
  color: var(--green);
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.compliance-card h3 {
  font-size: 1.45rem;
  margin-bottom: 10px;
}
.compliance-card p { margin-bottom: 22px; }
.compliance-card a {
  position: relative;
  z-index: 1;
  color: var(--navy);
  font-weight: 900;
}
.status-dot {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  z-index: 2;
}
.status-dot.ready {
  background: #2bc06f;
  box-shadow: 0 0 0 7px rgba(43,192,111,.13);
}
.status-dot.pending {
  background: #f6b23d;
  box-shadow: 0 0 0 7px rgba(246,178,61,.16);
}
.vault-highlight {
  background:
    linear-gradient(145deg, rgba(246,211,138,.22), rgba(255,255,255,.92)),
    #fff;
  border-color: rgba(246,178,61,.38);
}
.document-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
  gap: 42px;
  align-items: center;
}
.document-vault-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(4,108,78,.14), transparent 32%),
    radial-gradient(circle at 20% 70%, rgba(242,140,24,.08), transparent 30%),
    linear-gradient(180deg, #f8fbfa, #ffffff);
}
.document-vault-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(10,31,51,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,31,51,.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.document-vault-section .document-layout {
  position: relative;
  z-index: 1;
}
.vault-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.vault-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  min-height: 230px;
  padding: 30px;
  background:
    radial-gradient(circle at 78% 12%, rgba(255,194,71,.18), transparent 28%),
    linear-gradient(145deg, rgba(7,24,39,.96), rgba(9,52,58,.9));
  box-shadow: 0 24px 70px rgba(10,31,51,.16), inset 0 1px 0 rgba(255,255,255,.12);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.vault-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--gold), var(--impexia-orange));
  opacity: .8;
}
.vault-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255,255,255,.13) 48%, transparent 58% 100%);
  transform: translateX(-120%);
  transition: transform .55s cubic-bezier(.22,.61,.36,1);
}
.vault-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,194,71,.34);
  box-shadow: 0 32px 90px rgba(10,31,51,.22), inset 0 1px 0 rgba(255,255,255,.16);
}
.vault-card:hover::after {
  transform: translateX(120%);
}
.vault-card b {
  display: inline-grid;
  place-items: center;
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255,194,71,.24);
  background: rgba(255,194,71,.12);
  color: #ffd47a;
  margin-bottom: 24px;
  box-shadow: 0 0 0 8px rgba(255,194,71,.045);
  font-weight: 900;
}
.vault-icon {
  position: absolute;
  z-index: 0;
  right: 24px;
  top: 24px;
  width: 72px;
  height: 88px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 7px;
  background:
    linear-gradient(rgba(255,255,255,.14) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.02));
  background-size: 100% 18px, auto;
  opacity: .28;
  transform: rotate(4deg);
}
.vault-card h3 {
  position: relative;
  z-index: 1;
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.33rem;
}
.vault-card p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,.76);
  margin: 0;
  line-height: 1.7;
}
.verification-flow {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(28px, 4vw, 46px);
  box-shadow: var(--shadow-soft);
}
.section-head.compact { margin-bottom: 26px; }
.verification-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.verification-steps article {
  position: relative;
  border: 1px solid rgba(9,45,66,.12);
  border-radius: 8px;
  padding: 22px;
  background: linear-gradient(180deg, #fff, #f7faf7);
}
.verification-steps article::before {
  content: "";
  position: absolute;
  top: 41px;
  left: 58px;
  right: -28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(38,112,82,.35), transparent);
}
.verification-steps article:last-child::before { display: none; }
.verification-steps b {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  margin-bottom: 18px;
}
.verification-steps h3 { font-size: 1.08rem; margin-bottom: 8px; }
.verification-steps p { margin: 0; }

[data-animate] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
[data-animate].is-visible { opacity: 1; transform: translateY(0); }
.card[data-animate].is-visible,
.category-card[data-animate].is-visible,
.product-card[data-animate].is-visible,
.compliance-card[data-animate].is-visible {
  transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
}
.category-card[data-animate].is-visible img,
.product-card[data-animate].is-visible img,
.product-card[data-animate].is-visible .product-media img {
  transition: transform .3s cubic-bezier(.22,.61,.36,1);
}

@keyframes slowZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
@keyframes corporateHeroDrift {
  0% { transform: scale(1.04) translate3d(0, 0, 0); }
  100% { transform: scale(1.09) translate3d(-1.5%, -1.2%, 0); }
}
@keyframes brandArrowDrift {
  0%, 100% { transform: translateX(0); opacity: .26; }
  50% { transform: translateX(18px); opacity: .46; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes processGlow {
  0%, 100% { box-shadow: 0 0 0 rgba(38,112,82,0); }
  50% { box-shadow: 0 0 0 7px rgba(38,112,82,.08); }
}
@keyframes routePulse {
  0% { transform: translateX(-45%); opacity: 0; }
  18% { opacity: 1; }
  82% { opacity: 1; }
  100% { transform: translateX(330%); opacity: 0; }
}
@keyframes nodeBreath {
  0%, 100% { box-shadow: 0 18px 36px rgba(0,0,0,.18), 0 0 0 rgba(246,211,138,0); }
  50% { box-shadow: 0 18px 36px rgba(0,0,0,.18), 0 0 0 10px rgba(246,211,138,.08); }
}
@keyframes planeRoute {
  0% { transform: translate3d(0, 16px, 0) rotate(-8deg); opacity: 0; }
  10% { opacity: 1; }
  45% { transform: translate3d(42vw, -24px, 0) rotate(4deg); opacity: 1; }
  76% { transform: translate3d(78vw, 8px, 0) rotate(-2deg); opacity: 1; }
  100% { transform: translate3d(100vw, -12px, 0) rotate(3deg); opacity: 0; }
}
@keyframes shipSail {
  0%, 100% { transform: translateX(-10px) translateY(0); }
  50% { transform: translateX(18px) translateY(-3px); }
}
@keyframes crateMove {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(34px) translateY(-4px); }
}
@keyframes statusBlink {
  0%, 100% { opacity: .55; transform: scale(.92); }
  50% { opacity: 1; transform: scale(1); }
}
@keyframes cardRise {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes exportHeroIn {
  from { opacity: 0; transform: translate3d(0, 18px, 0) scale(.985); filter: blur(8px); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); filter: blur(0); }
}
@keyframes pulse {
  0% { transform: scale(.8); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes indiaGlow {
  0%, 100% { opacity: .74; transform: scale(.98); }
  50% { opacity: 1; transform: scale(1.04); }
}
@keyframes dashTravel {
  to { stroke-dashoffset: -240; }
}
@keyframes routeOpacity {
  0%, 100% { opacity: .32; }
  45% { opacity: .58; }
  70% { opacity: .42; }
}
@keyframes pulseComet {
  0%, 100% { opacity: .52; transform: scale(.86); }
  45% { opacity: 1; transform: scale(1.18); }
  72% { opacity: .72; transform: scale(.96); }
}
@keyframes networkScan {
  0%, 16% { transform: translateX(-115%); opacity: 0; }
  32% { opacity: .7; }
  58%, 100% { transform: translateX(115%); opacity: 0; }
}
@keyframes dataFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .25; }
  50% { transform: translate3d(18px, -12px, 0); opacity: .78; }
}
@keyframes badgeFloat {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .72; }
  48% { transform: translate3d(0, -5px, 0); opacity: .96; }
}
@keyframes shipmentPulse {
  0%, 100% { transform: scale(.82); opacity: .42; }
  38% { transform: scale(1); opacity: .88; }
  68% { transform: scale(.92); opacity: .58; }
}
@keyframes shipmentRing {
  0% { transform: scale(.72); opacity: .28; }
  70%, 100% { transform: scale(1.85); opacity: 0; }
}
@keyframes indicatorDrift {
  0%, 100% { transform: translate3d(0, 0, 0); opacity: .48; }
  45% { transform: translate3d(8px, -4px, 0); opacity: .78; }
}
.logistics-step span {
  animation: processGlow 3.8s ease-in-out infinite;
}
.logistics-step:nth-child(2) span { animation-delay: .2s; }
.logistics-step:nth-child(3) span { animation-delay: .4s; }
.logistics-step:nth-child(4) span { animation-delay: .6s; }
.logistics-step:nth-child(5) span { animation-delay: .8s; }
.logistics-step:nth-child(6) span { animation-delay: 1s; }
.logistics-step:nth-child(7) span { animation-delay: 1.2s; }
.logistics-step:nth-child(8) span { animation-delay: 1.4s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-bg img,
  .page-hero-media img,
  .route-pulses circle,
  .scan-soft,
  .data-particle,
  .logistics-badge,
  .moving-dot,
  .pulse {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
  [data-animate] {
    opacity: 1;
    transform: none;
  }
  .card[data-animate],
  .category-card[data-animate],
  .product-card[data-animate],
  .compliance-card[data-animate] {
    transition: transform .3s cubic-bezier(.22,.61,.36,1), box-shadow .3s ease, border-color .3s ease;
  }
  .category-card[data-animate] img,
  .product-card[data-animate] img,
  .product-card[data-animate] .product-media img {
    transition: transform .3s cubic-bezier(.22,.61,.36,1);
  }
}

@media (max-width: 900px) {
  .topbar .container, .section-head, .hero-grid, .product-hero-grid, .product-info-grid, .contact-panel, .contact-premium-grid, .contact-location-grid, .rfq-hero-grid, .rfq-layout, .footer-grid, .media-split, .logistics-layout, .logistics-showcase-grid, .relationships-grid, .trust-strip-grid, .command-grid, .hero-proof-grid, .quality-compliance-grid, .compliance-hero-grid, .document-layout, .journey-cards { grid-template-columns: 1fr; display: grid; }
  .rfq-summary-card {
    position: relative;
    top: auto;
  }
  .risk-split { gap: 40px; }
  .risk-proof {
    justify-self: center;
    width: min(100%, 560px);
    margin-top: 0;
  }
  .risk-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 18px;
  }
  .risk-flow::before { display: none; }
  .risk-flow span::after { display: none; }
  .export-process-timeline { grid-template-columns: 1fr; }
  .world-flow {
    height: 500px;
    margin-bottom: 62px;
  }
  .location {
    width: 20px;
    height: 20px;
    min-height: 20px;
    padding: 0;
    font-size: 0;
    letter-spacing: .06em;
  }
  .location::after {
    bottom: calc(100% + 9px);
    padding: 7px 10px;
    font-size: .6rem;
  }
  .india {
    left: 53.5%;
    top: 40.5%;
    width: 76px;
    height: 98px;
  }
  .europe { left: 43%; top: 27%; }
  .middleeast { left: 51%; top: 54%; }
  .africa { left: 50%; bottom: 8%; }
  .asia { left: 77%; top: 32%; }
  .shipment-signal { width: 11px; height: 11px; }
  .signal-origin { left: 55.5%; top: 49.5%; }
  .signal-europe { left: 39%; top: 26%; }
  .signal-middleeast { left: 44%; top: 55%; }
  .signal-africa { left: 45%; top: 83%; }
  .signal-asia { left: 80%; top: 32%; }
  .trust-strip { margin-top: 0; }
  .trust-strip-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-strip-grid div:last-child { border-bottom: 0; }
  .logistics-copy { position: static; }
  .journey-header {
    align-items: flex-start;
    flex-direction: column;
  }
  .journey-status { white-space: normal; }
  .journey-map { min-height: 300px; }
  .journey-node {
    width: 50px;
    height: 50px;
    top: calc(50% - 25px);
  }
  .journey-node::before { inset: 12px; }
  .journey-node span { top: 62px; font-size: .64rem; }
  .journey-country { top: calc(50% + 50px); }
  .node-source { left: 5%; }
  .node-pack { left: 26%; }
  .node-port { left: 47%; }
  .node-customs { left: 68%; }
  .node-destination { left: 84%; }
  .journey-plane { top: 22%; animation-duration: 7.5s; }
  .journey-ship { left: 34%; transform: scale(.84); }
  .journey-cards article { min-height: auto; }
  .nav-links {
    position: absolute;
    inset: 74px 20px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    color: rgba(255,255,255,.9);
    background: linear-gradient(180deg, rgba(16,32,64,.96), rgba(10,31,51,.94));
    backdrop-filter: blur(18px) saturate(1.12);
    -webkit-backdrop-filter: blur(18px) saturate(1.12);
    padding: 18px;
    border: 1px solid rgba(255,194,71,.16);
    box-shadow: 0 24px 60px rgba(5,15,28,.28);
    border-radius: 8px;
  }
  .nav-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-product-trigger {
    width: 100%;
    justify-content: center;
  }
  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 6px;
    padding: 8px;
    opacity: 1;
    visibility: visible;
    transform: none;
    border-color: rgba(255,255,255,.1);
    background: rgba(255,255,255,.055);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  }
  .nav-dropdown-menu::before { display: none; }
  .nav-links .nav-dropdown-menu a {
    color: rgba(255,255,255,.86);
    justify-content: center;
  }
  .nav-home { width: 100%; justify-content: center; }
  .nav-links.is-open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .contact-process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero { min-height: auto; }
  .hero-grid { padding: 72px 0; }
  .hero-photo-stack { min-height: 360px; }
  .hero-photo.main { inset: 0 0 45px 26px; }
  .hero-photo.secondary { width: 55%; height: 155px; }
  .grid-2, .grid-3, .grid-4, .process, .product-detail-grid, .spec-grid, .premium-spec-grid, .buyer-ready-grid, .buyer-ready-cards, .media-split .grid-4, .proof-gallery, .quality-proof-panel, .compliance-grid, .vault-grid, .verification-steps, .form-grid, .contact-process-grid { grid-template-columns: 1fr; }
  .phone-combo,
  .certification-options {
    grid-template-columns: 1fr;
  }
  .buyer-ready-panel {
    position: relative;
    top: auto;
    padding: 26px;
  }
  .buyer-ready-card {
    min-height: 0;
  }
  .premium-spec-grid div,
  .premium-spec-grid div:nth-child(2n) {
    border-right: 0;
  }
  .contact-command-card,
  .contact-form-card {
    padding: 24px;
  }
  .verification-steps article::before { display: none; }
  .proof-tile.large, .proof-tile.large img { min-height: 320px; }
  .metrics { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, var(--max)); }
  .section { padding: 62px 0; }
  .rfq-form-card,
  .rfq-summary-card {
    padding: 20px;
  }
  .rfq-fieldset {
    padding: 20px 16px;
  }
  .rfq-progress-strip {
    grid-template-columns: 1fr;
    border-radius: 8px;
    gap: 6px;
  }
  .rfq-desk-strip {
    grid-template-columns: 1fr;
  }
  .rfq-review-grid {
    grid-template-columns: 1fr;
  }
  .rfq-desk-strip div {
    padding: 14px;
  }
  .rfq-progress-strip span {
    justify-content: space-between;
    padding: 0 12px;
  }
  .rfq-progress-strip span::after {
    transform: rotate(90deg);
  }
  .rfq-progress-strip span:last-child::after {
    display: none;
  }
  .rfq-wizard-controls {
    grid-template-columns: 1fr;
  }
  .rfq-wizard-controls [data-rfq-prev],
  .rfq-wizard-controls [data-rfq-next] {
    justify-self: stretch;
  }
  .rfq-wizard-controls span {
    order: -1;
    text-align: center;
  }
  .risk-proof-caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    width: auto;
    padding: 12px;
  }
  .risk-card {
    min-height: auto;
    padding: 22px;
  }
  .hero h1 { font-size: 2.35rem; }
  .page-hero h1 { font-size: 2.05rem; overflow-wrap: anywhere; }
  .compliance-hero-panel { padding: 22px; }
  .export-process-section { padding: 68px 0; }
  .export-process-header { margin-bottom: 44px; text-align: left; }
  .export-process-header h2 { font-size: 2.45rem; }
  .export-process-header p { margin-left: 0; }
  .export-hero-signals {
    justify-content: flex-start;
    gap: 8px;
  }
  .export-hero-signals span {
    min-height: 30px;
    padding: 7px 10px;
    font-size: .62rem;
    letter-spacing: .05em;
  }
  .world-flow { height: 340px; }
  .world-svg { transform: none; }
  .location {
    width: 17px;
    height: 17px;
    min-height: 17px;
    padding: 0;
    font-size: 0;
    letter-spacing: .04em;
  }
  .location::before {
    width: 5px;
    height: 5px;
    margin: 0;
    box-shadow: 0 0 0 3px rgba(101,217,143,.12);
  }
  .location::after {
    bottom: calc(100% + 8px);
    padding: 6px 8px;
    font-size: .52rem;
    letter-spacing: .05em;
  }
  .india {
    left: 51.5%;
    top: 40.5%;
    width: 62px;
    height: 82px;
  }
  .india::after { font-size: .5rem; }
  .europe { left: 38%; top: 27%; }
  .middleeast { left: 47%; top: 54%; }
  .africa { left: 46%; bottom: 8%; }
  .asia { left: 72%; top: 32%; }
  .shipment-signal {
    width: 9px;
    height: 9px;
  }
  .signal-origin { left: 53.5%; top: 49%; }
  .signal-europe { left: 30%; top: 26%; }
  .signal-middleeast { left: 34%; top: 54%; }
  .signal-africa { left: 36%; top: 77%; }
  .signal-asia { left: 70%; top: 31%; }
  .data-particle { display: none; }
  .export-step {
    flex-direction: column;
    min-height: auto;
    padding: 22px;
  }
  .step-number {
    width: 50px;
    height: 50px;
  }
  .btn { width: 100%; }
  .brand-logo { height: 44px; }
  .brand-title { font-size: .92rem; }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }
  .footer-legal {
    width: 100%;
    justify-content: space-between;
    padding: 10px 12px;
  }
  .journey-map { min-height: 260px; }
  .journey-node span { display: none; }
  .journey-node b { font-size: .66rem; }
  .journey-plane { width: 44px; }
  .journey-ship { display: none; }
  .journey-crate { transform: scale(.85); }
  .journey-country { display: none; }
}


.certificate-thumb {
  position: relative;
  z-index: 1;
  overflow: hidden;
  height: 96px;
  margin: 12px 0 16px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.82);
}
.certificate-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.compliance-card:not(.primary) .certificate-thumb {
  border-color: rgba(10,31,51,.1);
  background: #f9fbfa;
}
.detail-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.mini-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 12px;
}
.mini-gallery img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.verification-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .72fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.verification-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: linear-gradient(145deg, rgba(7,24,39,.72), rgba(12,69,53,.46));
  box-shadow: 0 28px 80px rgba(0,0,0,.24);
  color: #fff;
}

.verification-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.08), transparent);
  transform: translateX(-110%);
  transition: transform .75s cubic-bezier(.2,.8,.2,1);
}

.verification-card:hover::before {
  transform: translateX(110%);
}

.verification-card h2 {
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
}

.verification-card ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.verification-card li {
  position: relative;
  padding-left: 22px;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}

.verification-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .68em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), var(--gold));
  box-shadow: 0 0 18px rgba(240,161,42,.34);
}

.verification-file-grid,
.quote-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.verification-file-card,
.quote-flow article,
.terms-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  padding: 28px;
  border: 1px solid rgba(10,31,51,.12);
  border-radius: 10px;
  background:
    linear-gradient(155deg, rgba(255,255,255,.98), rgba(247,251,248,.92)),
    radial-gradient(circle at 88% 12%, rgba(28,111,74,.12), transparent 34%);
  box-shadow: 0 18px 54px rgba(10,31,51,.08);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.verification-file-card:hover,
.quote-flow article:hover,
.terms-card:hover {
  transform: translateY(-5px);
  border-color: rgba(28,111,74,.28);
  box-shadow: 0 26px 74px rgba(10,31,51,.13);
}

.verification-file-card b,
.quote-flow article b {
  display: inline-grid;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 999px;
  background: rgba(240,161,42,.14);
  color: var(--navy);
  font-weight: 900;
}

.verification-file-card h3,
.quote-flow article h3,
.terms-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
}

.verification-file-card p,
.quote-flow article p,
.terms-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.verification-table-wrap {
  display: grid;
  gap: 22px;
}

.responsive-table {
  overflow-x: auto;
  border: 1px solid rgba(10,31,51,.12);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(10,31,51,.08);
}

.responsive-table table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

.responsive-table th,
.responsive-table td {
  padding: 18px 20px;
  border-bottom: 1px solid rgba(10,31,51,.1);
  text-align: left;
  vertical-align: top;
}

.responsive-table th {
  background: #071827;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.responsive-table td {
  color: var(--muted);
  line-height: 1.65;
}

.responsive-table td:first-child {
  color: var(--navy);
  font-weight: 900;
}

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

.evidence-strip {
  display: grid;
  grid-template-columns: minmax(0, .6fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 70px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(10,31,51,.12);
  border-radius: 12px;
  background:
    linear-gradient(120deg, rgba(7,24,39,.96), rgba(10,69,53,.88)),
    radial-gradient(circle at 90% 20%, rgba(240,161,42,.16), transparent 34%);
  color: #fff;
}

.evidence-strip h2 {
  color: #fff;
}

.evidence-strip p {
  margin: 0;
  color: rgba(255,255,255,.78);
  line-height: 1.8;
}

.terms-grid {
  display: grid;
  grid-template-columns: minmax(260px, .55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}

.terms-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.terms-card {
  min-height: 220px;
}

.terms-card h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 12px;
  background: linear-gradient(90deg, var(--green), var(--gold));
}

@media (max-width: 900px) {
  .verification-hero-grid,
  .terms-grid,
  .evidence-strip {
    grid-template-columns: 1fr;
  }
  .verification-file-grid,
  .quote-flow,
  .terms-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .verification-card {
    padding: 24px;
  }
  .verification-file-grid,
  .quote-flow,
  .terms-card-grid {
    grid-template-columns: 1fr;
  }
  .verification-file-card,
  .quote-flow article,
  .terms-card {
    min-height: auto;
    padding: 24px;
  }
  .evidence-strip {
    padding: 26px;
  }
}
