/* Kanha Global Exports â€” Premium Design System (HTML + CSS only, system fonts) */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --navy: #06131A;
  --dark-blue: #092330;
  --kanha-blue: #1676B7;
  --kanha-green: #35AD45;
  --ivory: #F5F0E7;
  --soft-white: #FBFAF6;
  --text-dark: #0a1a22;
  --text-muted: #5a6570;
  --text-secondary: #59656e;
  --warm-ivory: #f7f5ef;
  --text-light: rgba(255, 255, 255, 0.75);
  --max-w: 1380px;
  --pad: 64px;
  --pad-sm: 24px;
  --header-h: 88px;
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font-display: 'DM Sans', Arial, sans-serif;
  --font-body: 'DM Sans', Arial, sans-serif;
  --font-heading: 'DM Sans', Arial, sans-serif;
  --font-serif: 'DM Sans', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--soft-white);
  overflow-x: hidden;
  max-width: 100vw;
}

/* Emphasis keeps the brand color without switching to an italic face. */
body em { font-style: normal !important; }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* Typography */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 500;
  line-height: 1.2;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kanha-blue);
}

.eyebrow-light { color: var(--kanha-green); }

.body-lg {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.3s var(--ease), background 0.3s, border-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--kanha-blue);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--kanha-blue);
  color: #fff;
  border-color: var(--kanha-blue);
}

.btn-primary:hover {
  background: #125f96;
  border-color: #125f96;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-2px);
}

.btn-outline-dark {
  color: var(--text-dark);
  border-color: rgba(6, 19, 26, 0.25);
}

.btn-outline-dark:hover {
  border-color: var(--kanha-blue);
  color: var(--kanha-blue);
  transform: translateY(-2px);
}

.btn-green {
  background: var(--kanha-green);
  color: #fff;
  border-color: var(--kanha-green);
}

.btn-green:hover {
  background: #2d963b;
  border-color: #2d963b;
  transform: translateY(-2px);
}

.btn-sm { padding: 12px 24px; font-size: 0.875rem; }

/* ---------------- Top Contact / Announcement Bar ---------------- */
.header-top-bar {
  background: #081d28;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
  z-index: 1001;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.header-top-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-top-socials a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s, transform 0.2s;
}

.header-top-socials a:hover {
  color: #38bdf8;
  transform: translateY(-1px);
}

.header-top-contact {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-contact-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

.top-contact-item:hover {
  color: #38bdf8;
}

.top-divider {
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
}

/* ---------------- Main White Navigation Header ---------------- */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px -2px rgba(6, 19, 26, 0.06);
  transition: background 0.3s var(--ease), box-shadow 0.3s;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 8px 26px -4px rgba(6, 19, 26, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform 0.3s var(--ease);
}

.logo:hover {
  transform: scale(1.02);
}

.logo img {
  height: 48px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 1;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 11px;
  font-size: 0.895rem;
  font-weight: 600;
  color: #1e293b;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  white-space: nowrap;
  line-height: 1;
  height: 38px;
  box-sizing: border-box;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: var(--kanha-blue);
  background: #f1f5f9;
  outline: none;
}

.nav-link.active {
  color: var(--kanha-blue);
  font-weight: 700;
  background: rgba(22, 118, 183, 0.09);
}

.nav-link svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
  color: #64748b;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.has-dropdown:hover .nav-link svg,
.has-dropdown.open .nav-link svg {
  transform: rotate(180deg);
  color: var(--kanha-blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-whatsapp-header {
  background: #f0fdf4;
  color: #16a34a;
  border: 1px solid #bbf7d0;
  padding: 8px 15px;
  font-size: 0.84rem;
  font-weight: 600;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.btn-whatsapp-header svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.btn-whatsapp-header:hover {
  background: #16a34a;
  color: #ffffff;
  border-color: #16a34a;
  transform: translateY(-1px);
}

.btn-quote-header {
  background: linear-gradient(135deg, #1676B7 0%, #0d5a8f 100%);
  color: #ffffff !important;
  border: none;
  padding: 10px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 14px -2px rgba(22, 118, 183, 0.4);
  transition: all 0.25s ease;
}

.btn-quote-header:hover {
  background: linear-gradient(135deg, #125f96 0%, #09416b 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px -2px rgba(22, 118, 183, 0.55);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #0f172a;
  padding: 8px;
  cursor: pointer;
  border-radius: 6px;
}

.nav-toggle:hover {
  background: #f1f5f9;
}

.nav-toggle:focus-visible { outline: 2px solid var(--kanha-blue); outline-offset: 2px; }

/* Dropdown & Mega Menu */
.has-dropdown { position: relative; }

.dropdown-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.25s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.25s;
  z-index: 100;
}

.dropdown-panel.nav-sub-menu {
  min-width: 230px;
}

.dropdown-panel.nav-sub-menu a {
  padding: 11px 16px;
  font-size: 0.935rem;
  font-weight: 500;
  color: #475569;
  border-radius: 8px;
  display: block;
  transition: all 0.2s ease;
}

.dropdown-panel.nav-sub-menu a:hover,
.dropdown-panel.nav-sub-menu a:focus-visible {
  background: #f0f7ff;
  color: var(--kanha-blue);
  padding-left: 20px;
}

.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel,
.has-dropdown.open .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-panel a {
  display: block;
  padding: 10px 14px;
  font-size: 0.92rem;
  font-weight: 500;
  color: #334155;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.dropdown-panel a:hover,
.dropdown-panel a:focus-visible {
  background: #f8fafc;
  color: var(--kanha-blue);
  outline: none;
}

/* ---------------- MODERN CLEAN MEGA MENU STYLES ---------------- */

.mega-menu {
  left: 50%;
  transform: translateX(-40%) translateY(8px);
  width: min(950px, calc(100vw - 32px));
  padding: 18px 22px 16px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 20px 48px -8px rgba(15, 23, 42, 0.16), 0 0 0 1px rgba(226, 232, 240, 0.9);
  max-height: calc(100vh - 70px);
  overflow-y: auto;
  overflow-x: hidden;
  box-sizing: border-box;
}

.has-dropdown:hover .mega-menu,
.has-dropdown:focus-within .mega-menu,
.has-dropdown.open .mega-menu {
  transform: translateX(-40%) translateY(0);
}

.mega-clean-wrapper {
  width: 100%;
  box-sizing: border-box;
}

/* Header Bar */
.mega-header-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 11px;
  margin-bottom: 11px;
  border-bottom: 1px solid #f1f5f9;
}

.mega-header-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.76rem;
  color: #1e293b;
  letter-spacing: 0.04em;
}

.mega-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #16a34a;
  box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
  display: inline-block;
  flex-shrink: 0;
}

.mega-header-sub {
  font-size: 0.7rem;
  color: #0284c7;
  background: #e0f2fe;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
}

.mega-quick-all-link {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--kanha-blue);
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.mega-quick-all-link:hover {
  color: #0369a1;
  transform: translateX(2px);
}

/* 2-Column Balanced Categories Grid with Product Images */
.mega-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 14px;
  box-sizing: border-box;
}

.dropdown-panel a.mega-cat-card,
.mega-cat-card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  padding: 10px 14px !important;
  border-radius: 10px !important;
  text-decoration: none !important;
  background: #ffffff !important;
  border: 1px solid #f1f5f9 !important;
  text-align: left !important;
  transition: all 0.18s ease !important;
  box-sizing: border-box !important;
  min-height: 66px !important;
}

.dropdown-panel a.mega-cat-card:hover,
.mega-cat-card:hover {
  background: #f8fafc !important;
  border-color: #38bdf8 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.08) !important;
}

.mega-cat-thumb {
  width: 48px !important;
  height: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  flex-shrink: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
}

.mega-cat-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.25s ease !important;
}

.mega-cat-card:hover .mega-cat-thumb img {
  transform: scale(1.08) !important;
}

.mega-cat-info {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  text-align: left !important;
  flex-grow: 1 !important;
  min-width: 0 !important;
  justify-content: center !important;
}

.mega-cat-name {
  display: block !important;
  font-size: 0.92rem !important;
  font-weight: 700 !important;
  color: #0f172a !important;
  line-height: 1.28 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  width: 100% !important;
  transition: color 0.15s ease !important;
}

.mega-cat-card:hover .mega-cat-name {
  color: var(--kanha-blue) !important;
}

.mega-cat-desc {
  display: -webkit-box !important;
  -webkit-line-clamp: 2 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
  font-size: 0.74rem !important;
  color: #64748b !important;
  line-height: 1.35 !important;
  text-align: left !important;
  white-space: normal !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  margin-top: 3px !important;
}

.mega-cat-arrow {
  opacity: 0 !important;
  transform: translateX(-4px) !important;
  transition: all 0.18s ease !important;
  color: var(--kanha-blue) !important;
  flex-shrink: 0 !important;
  width: 14px !important;
  height: 14px !important;
  margin-left: auto !important;
}

.mega-cat-card:hover .mega-cat-arrow {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Footer Bar */
.mega-footer-v2 {
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid #f1f5f9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.mega-footer-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.74rem;
  color: #64748b;
}

.mega-footer-meta svg {
  color: var(--kanha-blue);
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.btn-mega-rfq {
  font-size: 0.76rem;
  font-weight: 600;
  color: #ffffff;
  background: var(--kanha-blue);
  border: 1px solid var(--kanha-blue);
  padding: 5px 13px;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 6px rgba(2, 132, 199, 0.2);
}

.btn-mega-rfq:hover {
  background: #0369a1;
  border-color: #0369a1;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(2, 132, 199, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1080px) {
  .mega-menu {
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: calc(100vw - 32px);
    max-width: 920px;
  }
  .has-dropdown:hover .mega-menu,
  .has-dropdown:focus-within .mega-menu,
  .has-dropdown.open .mega-menu {
    transform: translateX(-50%) translateY(0);
  }
}

@media (max-width: 820px) {
  .mega-menu {
    width: calc(100vw - 24px);
    padding: 12px 14px;
  }
}

@media (max-width: 680px) {
  .mega-categories-grid {
    grid-template-columns: 1fr;
  }
  .mega-footer-v2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: 48px;
  padding-bottom: 90px;
}

.hero > .container {
  max-width: 1420px;
}

.hero-container {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(340px, 400px);
  gap: 32px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 30%, rgba(22, 118, 183, 0.22) 0%, transparent 50%),
              linear-gradient(135deg, rgba(6, 19, 26, 0.92) 0%, rgba(9, 35, 48, 0.85) 50%, rgba(6, 19, 26, 0.88) 100%);
}

.hero-map {
  position: absolute;
  right: -5%;
  top: 10%;
  width: 55%;
  opacity: 0.12;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0;
  max-width: 860px;
  animation: hero-content-in 0.9s var(--ease) both;
}

.hero-since {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kanha-green);
  padding: 0;
}

.hero-since::before {
  content: '';
  width: 8px;
  height: 8px;
  display: none;
}

.hero-title,
.hero h1.display-xl,
.hero h1 {
  color: #ffffff !important;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(2.15rem, 2.6vw + 0.5rem, 2.95rem) !important;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.hero-title-line1 {
  display: block;
  color: #ffffff !important;
  white-space: nowrap;
}

.hero-title-line2,
.hero h1 span {
  display: block;
  color: #ffffff !important;
}

@media (max-width: 1100px) {
  .hero-title-line1 {
    white-space: normal;
  }
}

.hero-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 560px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-desc-lead {
  font-size: 1.12rem;
  color: #f1f5f9;
  font-weight: 500;
  margin-bottom: 8px;
  line-height: 1.55;
}

.hero-desc-sub {
  font-size: 0.96rem;
  color: #cbd5e1;
  margin-bottom: 24px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-actions .btn-primary { 
  background: #eab02f; 
  border-color: #eab02f; 
  color: var(--navy); 
  font-weight: 700;
}
.hero-actions .btn-primary:hover { 
  background: #f5c451; 
  border-color: #f5c451; 
}
.hero-actions .btn-primary span { 
  font-size: 1.25rem; 
  line-height: 0; 
}

.hero-stats { 
  display: flex; 
  gap: 32px; 
  padding-top: 20px; 
  border-top: 1px solid rgba(255, 255, 255, 0.18); 
  max-width: 560px; 
}
.hero-stats div { 
  display: grid; 
  gap: 2px; 
  min-width: 70px; 
}
.hero-stats strong { 
  font-family: var(--font-display); 
  font-size: 1.6rem; 
  font-weight: 800; 
  line-height: 1; 
  color: #fff; 
}
.hero-stats span { 
  color: rgba(255, 255, 255, 0.8); 
  font-size: 0.78rem; 
  line-height: 1.3; 
}

/* Premium Geometric Hero Visual Showcase */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 400px;
  justify-self: end;
  z-index: 2;
  animation: hero-panel-in 1s 0.18s var(--ease) both;
}

.trade-panel { 
  padding: 22px 18px 20px; 
  border: 1px solid rgba(255,255,255,0.22); 
  border-radius: 20px; 
  background: rgba(14, 38, 54, 0.72); 
  box-shadow: 0 24px 70px rgba(0,0,0,0.35); 
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  width: 100%;
}
.trade-label { 
  color: #7dd3fc; 
  font-size: 0.75rem; 
  font-weight: 700; 
  letter-spacing: 0.14em; 
  text-transform: uppercase; 
  margin-bottom: 12px; 
}
.trade-products { 
  overflow: hidden; 
  position: relative;
  width: 100%;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
}
.trade-products-track { 
  display: flex; 
  width: max-content; 
  gap: 12px; 
  animation: trade-products-marquee 22s linear infinite; 
  will-change: transform;
}
.trade-products-track.reverse { 
  animation: trade-products-marquee-rev 24s linear infinite; 
}
.trade-products:hover .trade-products-track,
.trade-products:active .trade-products-track { 
  animation-play-state: paused; 
}
.trade-product { 
  flex: 0 0 80px; 
  width: 80px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  gap: 6px; 
  color: rgba(255,255,255,0.88); 
  text-align: center; 
  font-size: 0.68rem; 
  font-weight: 500;
  line-height: 1.2; 
  text-decoration: none;
  transition: transform 0.3s var(--ease), color 0.3s; 
}
.trade-product:hover { 
  color: #38bdf8; 
  transform: translateY(-4px); 
}
.trade-product img { 
  width: 78px; 
  height: 78px; 
  aspect-ratio: 1; 
  object-fit: cover; 
  border-radius: 12px; 
  border: 1px solid rgba(255,255,255,0.22); 
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.trade-product:hover img {
  border-color: #38bdf8;
  box-shadow: 0 6px 18px rgba(56,189,248,0.35);
}
.trade-product span { 
  font-size: 0.68rem;
  line-height: 1.2;
  color: #cbd5e1;
  text-align: center;
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  white-space: normal;
}
.trade-divider { 
  height: 1px; 
  margin: 16px 0 16px; 
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent); 
}

@keyframes hero-content-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes hero-panel-in { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes trade-products-marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes trade-products-marquee-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

@media (max-width: 1100px) {
  .hero-container {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 36px;
  }
}

@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding-top: 36px;
    padding-bottom: 78px;
  }
  .hero-container {
    grid-template-columns: 1.12fr 0.88fr;
    gap: 16px;
    align-items: center;
  }
  .hero-visual {
    justify-self: stretch;
    max-width: 100%;
  }
}

.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 35, 48, 0.6);
  backdrop-filter: blur(8px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.45);
  border-color: rgba(255, 255, 255, 0.25);
}

.hero-card-tall {
  grid-row: span 2;
  aspect-ratio: 4/5;
}

.hero-card-square {
  aspect-ratio: 1;
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.hero-card:hover img {
  transform: scale(1.06);
}

.hero-card-tag {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  padding: 10px 14px;
  background: rgba(6, 19, 26, 0.82);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hero-badge-floating {
  position: absolute;
  top: -16px;
  right: -16px;
  background: linear-gradient(135deg, var(--kanha-blue), #0d5485);
  color: #fff;
  padding: 12px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(22, 118, 183, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.8125rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
}

.hero-badge-stat {
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-route {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  max-width: 900px;
  opacity: 0.25;
  z-index: 1;
}

/* Certifications Strip */
.cert-strip-container {
  max-width: 1680px;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
  justify-content: center;
}

.cert-strip {
  position: relative;
  z-index: 10;
  margin-top: -42px;
  background: var(--ivory);
  border-radius: 28px;
  padding: 16px 28px;
  box-shadow: 0 18px 56px rgba(6, 19, 26, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.85);
  width: 100%;
  box-sizing: border-box;
}

.cert-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
}

.cert-strip-label {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text-dark);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.cert-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px 14px;
  flex: 1;
  min-width: 0;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  background: #ffffff;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  color: var(--dark-blue);
  border: 1px solid rgba(6, 19, 26, 0.1);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.035);
  white-space: nowrap;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease), box-shadow 0.2s, border-color 0.2s;
}

.cert-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(6, 19, 26, 0.08);
  border-color: var(--kanha-blue);
}

.cert-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kanha-green);
  box-shadow: 0 0 6px rgba(53, 173, 69, 0.6);
  flex-shrink: 0;
}

@media (max-width: 1100px) and (min-width: 769px) {
  .cert-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .cert-badges {
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
  }
}

/* Sections */
.section { padding: 100px 0; }
.section-dark { background: var(--navy); color: #fff; }
.section-ivory { background: var(--ivory); }
.section-soft { background: var(--soft-white); }

/* Section Green Divider Separator */
.section-divider-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  position: relative;
  z-index: 5;
  box-sizing: border-box;
}

.section-green-divider {
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, rgba(53, 173, 69, 0.15) 0%, #35AD45 15%, #22c55e 50%, #35AD45 85%, rgba(53, 173, 69, 0.15) 100%);
  border-radius: 4px;
  box-shadow: 0 2px 10px rgba(53, 173, 69, 0.28);
}

#core-products { padding-bottom: 56px; }
#built-for-buyers { padding-top: 56px; }
#export-process { padding-bottom: 56px; }
#who-we-serve { padding-top: 56px; }

@media (max-width: 768px) {
  .section-divider-container {
    padding: 0 20px;
  }
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center { text-align: center; }
.section-header.center .body-lg { max-width: 640px; margin: 16px auto 0; }

.section-dark .body-lg { color: var(--text-light); }
.section-dark .eyebrow { color: var(--kanha-green); }

/* About Section Redesign */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.about-showcase {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  padding-bottom: 24px;
}

.about-asymmetric-showcase {
  position: relative;
  width: 100%;
}

.about-img-frame-primary {
  width: 80%;
  aspect-ratio: 4/4.8;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(6, 19, 26, 0.12);
  border: 1px solid rgba(6, 19, 26, 0.08);
  background: #ffffff;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-img-frame-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 32px 70px rgba(6, 19, 26, 0.18);
}

.about-img-frame-secondary {
  position: absolute;
  right: 0;
  bottom: -24px;
  width: 54%;
  aspect-ratio: 1;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 19, 26, 0.18);
  border: 6px solid var(--soft-white);
  background: #ffffff;
  z-index: 2;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.about-img-frame-secondary:hover {
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 28px 60px rgba(6, 19, 26, 0.24);
}

.about-img-frame-primary img,
.about-img-frame-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.about-img-frame-primary:hover img,
.about-img-frame-secondary:hover img {
  transform: scale(1.05);
}

.about-floating-badge-text span {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.75);
}

.about-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.about-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.about-feature-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #eef2f6;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.about-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(22, 118, 183, 0.09);
  border-color: rgba(22, 118, 183, 0.35);
}

.about-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.about-card-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(22, 118, 183, 0.1);
  color: var(--kanha-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature-card:nth-child(2) .about-card-icon {
  background: rgba(53, 173, 69, 0.1);
  color: var(--kanha-green);
}

.about-feature-card:nth-child(3) .about-card-icon {
  background: rgba(22, 118, 183, 0.1);
  color: var(--kanha-blue);
}

.about-feature-card:nth-child(4) .about-card-icon {
  background: rgba(53, 173, 69, 0.1);
  color: var(--kanha-green);
}

.about-feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #081d28;
  margin: 0;
}

.about-feature-card p {
  color: #64748b;
  font-size: 0.885rem;
  line-height: 1.62;
  margin: 0;
}

/* Executive B2B 8-Category Grid */
.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3.8;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 35, 48, 0.7);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px;
  text-decoration: none;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  transition: transform 0.7s var(--ease);
}

.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 26, 0.35) 0%, rgba(6, 19, 26, 0.2) 40%, rgba(6, 19, 26, 0.92) 100%);
  z-index: 1;
  transition: background 0.4s var(--ease);
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: var(--kanha-green);
  box-shadow: 0 24px 54px rgba(53, 173, 69, 0.22), 0 12px 32px rgba(0, 0, 0, 0.4);
}

.category-card:hover img {
  transform: scale(1.08);
}

.category-card:hover .category-card-overlay {
  background: linear-gradient(180deg, rgba(6, 19, 26, 0.2) 0%, rgba(6, 19, 26, 0.15) 35%, rgba(6, 19, 26, 0.96) 100%);
}

.category-badge-tag {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25);
  transition: border-color 0.3s, background 0.3s;
}

.category-card:hover .category-badge-tag {
  border-color: rgba(53, 173, 69, 0.6);
  background: rgba(53, 173, 69, 0.25);
}

.category-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}

.category-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.2;
}

.category-card-sub {
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
}

.category-card-arrow {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.3s, transform 0.3s, border-color 0.3s;
}

.category-card:hover .category-card-arrow {
  background: var(--kanha-green);
  border-color: var(--kanha-green);
  transform: translateX(4px);
}

.categories-cta {
  margin-top: 48px;
  text-align: center;
}

/* Executive 4-Column Values Grid */
.values-showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  position: relative;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 24px;
  border: 1px solid rgba(6, 19, 26, 0.08);
  box-shadow: 0 10px 30px rgba(6, 19, 26, 0.04);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--kanha-blue), var(--kanha-green));
  opacity: 0;
  transition: opacity 0.3s var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(6, 19, 26, 0.1);
  border-color: rgba(22, 118, 183, 0.3);
}

.value-card:hover::before {
  opacity: 1;
}

.value-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.value-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(22, 118, 183, 0.08);
  color: var(--kanha-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.value-card:nth-child(2) .value-card-icon {
  background: rgba(53, 173, 69, 0.08);
  color: var(--kanha-green);
}

.value-card:nth-child(3) .value-card-icon {
  background: rgba(22, 118, 183, 0.08);
  color: var(--kanha-blue);
}

.value-card:nth-child(4) .value-card-icon {
  background: rgba(53, 173, 69, 0.08);
  color: var(--kanha-green);
}

.value-card-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: rgba(22, 118, 183, 0.35);
  line-height: 1;
}

.value-card:nth-child(1) .value-card-num,
.value-card:nth-child(3) .value-card-num {
  color: rgba(22, 118, 183, 0.38);
}

.value-card:nth-child(2) .value-card-num,
.value-card:nth-child(4) .value-card-num {
  color: rgba(53, 173, 69, 0.42);
}

.value-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.value-card p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin: 0;
}

/* Quality Assurance Trust Banner */
.values-trust-banner {
  margin-top: 48px;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(6, 19, 26, 0.1);
  border: 1px solid rgba(6, 19, 26, 0.08);
  background: var(--navy);
}

.values-trust-banner img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  opacity: 0.45;
}

.values-trust-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(6, 19, 26, 0.92) 0%, rgba(9, 35, 48, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 36px 48px;
  gap: 32px;
  flex-wrap: wrap;
}

.values-trust-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 6px;
}

.values-trust-content p {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 540px;
}

.values-trust-highlights {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.values-trust-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #ffffff;
}

.values-trust-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kanha-green);
  box-shadow: 0 0 8px var(--kanha-green);
}

/* Global Presence */
.global-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  width: 100%;
}

.map-wrap {
  position: relative;
  background: #06131a;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 2/1;
}

.map-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--transition);
}

.map-wrap:hover img {
  transform: scale(1.015);
}

@media (max-width: 768px) {
  .map-wrap {
    aspect-ratio: 16/10;
  }
}

/* Export Process - Animated Stepper (No Boxes) */
.process-section {
  position: relative;
  background: var(--soft-white);
  padding: 90px 0;
  overflow: hidden;
}

.process-stepper-wrap {
  position: relative;
  margin-top: 50px;
}

/* Horizontal Flow Line Track */
.process-track {
  position: absolute;
  top: 105px;
  left: 8%;
  right: 8%;
  height: 4px;
  z-index: 1;
}

.process-track-bg {
  position: absolute;
  inset: 0;
  background: rgba(9, 35, 48, 0.1);
  border-radius: 4px;
}

.process-track-fill {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  background: linear-gradient(90deg, var(--kanha-blue) 0%, var(--kanha-green) 100%);
  border-radius: 4px;
}



.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}

.process-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
  padding: 0 8px;
}

/* Node Container */
.step-node-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}

/* Floating Icon Bubble */
.step-icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #FFFFFF;
  box-shadow: 0 8px 24px -6px rgba(9, 35, 48, 0.12), 0 0 0 1px rgba(22, 118, 183, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kanha-blue);
  margin-bottom: 24px;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  animation: iconFloat 4s ease-in-out infinite;
}

.process-step-item:nth-child(2) .step-icon-bubble { animation-delay: -1s; color: var(--kanha-green); }
.process-step-item:nth-child(3) .step-icon-bubble { animation-delay: -2s; color: var(--kanha-blue); }
.process-step-item:nth-child(4) .step-icon-bubble { animation-delay: -3s; color: var(--kanha-green); }

.step-icon-bubble svg {
  width: 24px !important;
  height: 24px !important;
  min-width: 24px;
  min-height: 24px;
  flex-shrink: 0;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.process-step-item:hover .step-icon-bubble {
  transform: translateY(-10px) scale(1.12);
  background: linear-gradient(135deg, var(--kanha-blue) 0%, var(--kanha-green) 100%);
  color: #FFFFFF;
  box-shadow: 0 12px 30px -6px rgba(22, 118, 183, 0.35);
}

/* Step Node Circle */
.step-node {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid var(--kanha-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  box-shadow: 0 4px 14px rgba(9, 35, 48, 0.08);
}

.process-step-item:nth-child(even) .step-node {
  border-color: var(--kanha-green);
}

.node-num {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--navy);
  transition: color 0.3s ease;
}

/* Pulsing Outer Ring */
.node-ring {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(22, 118, 183, 0.3);
  animation: ringPulse 3s ease-out infinite;
  opacity: 0;
}

.process-step-item:nth-child(even) .node-ring {
  border-color: rgba(53, 173, 69, 0.3);
  animation-delay: -1.5s;
}

@keyframes ringPulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

.process-step-item:hover .step-node {
  background: linear-gradient(135deg, var(--kanha-blue) 0%, var(--kanha-green) 100%);
  border-color: transparent;
  transform: scale(1.18);
  box-shadow: 0 8px 24px rgba(53, 173, 69, 0.4);
}

.process-step-item:hover .node-num {
  color: #FFFFFF;
}

/* Step Info Typography */
.step-info {
  max-width: 260px;
  margin: 0 auto;
}

.step-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--kanha-blue);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.process-step-item:nth-child(even) .step-label {
  color: var(--kanha-green);
}

.step-info h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.35;
  transition: color 0.3s ease;
}

.step-info p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.process-step-item:hover .step-info h3 {
  color: var(--kanha-blue);
}

@media (max-width: 1024px) {
  .process-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 48px 24px;
  }
  .process-track { display: none; }
}

@media (max-width: 640px) {
  .process-steps {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* Poultry Division - Premium Redesign */
.poultry-section {
  position: relative;
  background: var(--navy);
  padding: 96px 0;
}

.poultry-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
}

/* Left Content */
.poultry-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(53, 173, 69, 0.12);
  border: 1px solid rgba(53, 173, 69, 0.25);
  border-radius: 30px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--kanha-green);
  margin-bottom: 24px;
}

.poultry-tag .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--kanha-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--kanha-green);
  animation: tagPulse 2s infinite;
}

@keyframes tagPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.85); }
}

.poultry-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 2.6rem);
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1.25;
  margin-bottom: 20px;
}

.poultry-lead {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 36px;
}

.poultry-lead strong {
  color: #FFFFFF;
}

/* Feature Grid */
.poultry-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.poultry-feat-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 14px 18px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.poultry-feat-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(53, 173, 69, 0.3);
}

.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(22, 118, 183, 0.2) 0%, rgba(53, 173, 69, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kanha-green);
  flex-shrink: 0;
}

.poultry-feat-item h4 {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.poultry-feat-item p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Action Button */
.poultry-action .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s var(--ease);
}

.poultry-action .btn svg {
  transition: transform 0.3s ease;
}

.poultry-action .btn:hover svg {
  transform: translateX(4px);
}

/* Right Visual Frame */
.poultry-visual-frame {
  position: relative;
  height: 440px;
}

.visual-main-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 82%;
  height: 360px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.visual-main-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.visual-main-card:hover img {
  transform: scale(1.05);
}

.visual-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(6, 19, 26, 0.75) 100%);
}

.visual-badge-top {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 19, 26, 0.75);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #FFFFFF;
  font-weight: 600;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--kanha-green);
  border-radius: 50%;
}

.visual-sub-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 48%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #092330;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.visual-sub-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.visual-sub-card:hover img {
  transform: scale(1.06);
}

/* Floating Stat Badge */
.visual-floating-stat {
  position: absolute;
  bottom: 30px;
  left: 20px;
  z-index: 3;
  background: rgba(14, 30, 40, 0.88);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(53, 173, 69, 0.3);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kanha-green);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 1100px) {
  .poultry-grid { grid-template-columns: 1fr; gap: 48px; }
  .poultry-visual-frame { height: 400px; max-width: 600px; margin: 0 auto; width: 100%; }
}

@media (max-width: 640px) {
  .poultry-features { grid-template-columns: 1fr; }
  .poultry-visual-frame { height: 320px; }
  .visual-main-card { width: 100%; height: 260px; }
  .visual-sub-card { display: none; }
}

/* CTA Pre-Footer Section - Main Background Image with Solid White Card */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 19, 26, 0.45) 0%, rgba(9, 35, 48, 0.6) 100%);
}

.cta-card {
  position: relative;
  z-index: 2;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  padding: 60px 48px;
  text-align: center;
  max-width: 980px;
  margin: 0 auto;
}

.cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  background: rgba(53, 173, 69, 0.12);
  border: 1px solid rgba(53, 173, 69, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #278834;
  margin-bottom: 24px;
}

.cta-card h2 {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(1.875rem, 3.5vw, 2.625rem);
  line-height: 1.25;
  margin-bottom: 16px;
}

.cta-lead {
  color: var(--text-muted);
  font-size: 1.0625rem;
  max-width: 680px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* Pre-Footer Metrics Bar */
.cta-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  padding: 22px 36px;
  background: #F4F7F9;
  border: 1px solid rgba(6, 19, 26, 0.08);
  border-radius: 18px;
  max-width: 760px;
  margin: 0 auto 40px;
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.metric-val {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: #278834;
  line-height: 1.1;
}

.metric-lbl {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.metric-divider {
  width: 1px;
  height: 36px;
  background: rgba(6, 19, 26, 0.12);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}

.btn-outline-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #128C7E;
  border-radius: 30px;
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 0.3s var(--ease);
}

.btn-outline-whatsapp:hover {
  background: #25D366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  transform: translateY(-2px);
}

/* =========================================================
   CLEAN LUXURY HOW WE WORK SECTION (ABOUT US)
   ========================================================= */
.about-proc-clean-section {
  position: relative;
  padding: 100px 0 90px;
  background: #FCFDFD;
  overflow: hidden;
  border-top: 1px solid rgba(6, 19, 26, 0.05);
  border-bottom: 1px solid rgba(6, 19, 26, 0.05);
}

.proc-clean-bg-decor {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  background-image: 
    radial-gradient(circle at 10% 15%, rgba(53, 173, 69, 0.035) 0%, transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(22, 118, 183, 0.035) 0%, transparent 45%);
}

.proc-clean-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 56px;
}

.proc-clean-title-col {
  max-width: 620px;
}

.proc-clean-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--kanha-blue);
  background: rgba(22, 118, 183, 0.08);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.proc-clean-tag::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kanha-blue);
}

.proc-clean-title {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--navy);
  margin: 0;
}

.proc-clean-title em {
  font-style: normal;
  color: var(--kanha-green);
  position: relative;
}

.proc-clean-desc-col {
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.proc-clean-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
}

.proc-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--kanha-green);
  background: rgba(53, 173, 69, 0.08);
  padding: 6px 14px;
  border-radius: 10px;
  width: fit-content;
}

.proc-trust-badge svg {
  color: var(--kanha-green);
}

/* Dynamic Interactive Rail */
.proc-dynamic-rail {
  position: relative;
  margin-bottom: 40px;
}

.proc-rail-track {
  width: 100%;
  height: 3px;
  background: rgba(6, 19, 26, 0.06);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.proc-rail-bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 25%;
  background: linear-gradient(90deg, var(--kanha-green), var(--kanha-blue));
  border-radius: 2px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.proc-rail-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  top: -12px;
}

.proc-step-bullet {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 0 4px;
  transition: all 0.3s ease;
  user-select: none;
}

.proc-step-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid rgba(6, 19, 26, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.proc-step-dot-inner {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.proc-step-num {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  transition: all 0.3s ease;
}

.proc-step-bullet.active .proc-step-dot {
  border-color: var(--kanha-green);
  background: #FFFFFF;
  box-shadow: 0 0 0 4px rgba(53, 173, 69, 0.15);
}

.proc-step-bullet.active .proc-step-dot-inner {
  background: var(--kanha-green);
}

.proc-step-bullet.active .proc-step-num {
  color: var(--navy);
  font-weight: 800;
}

/* Process 4 Cards Grid */
.proc-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}

.proc-clean-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(6, 19, 26, 0.08);
  border-radius: 20px;
  padding: 32px 26px 28px;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 18px rgba(6, 19, 26, 0.03);
  cursor: pointer;
}

.proc-clean-card:hover {
  transform: translateY(-5px);
  border-color: rgba(22, 118, 183, 0.25);
  box-shadow: 0 16px 36px rgba(6, 19, 26, 0.08);
}

.proc-clean-card.active {
  background: #FFFFFF;
  border-color: rgba(22, 118, 183, 0.35);
  box-shadow: 0 14px 40px rgba(22, 118, 183, 0.1);
  transform: translateY(-4px);
}

.proc-clean-card.active::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--kanha-green), var(--kanha-blue));
  border-radius: 3px 3px 0 0;
}

.proc-clean-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.proc-clean-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #F4F8FA;
  border: 1px solid rgba(22, 118, 183, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kanha-blue);
  transition: all 0.3s ease;
}

.proc-clean-card.active .proc-clean-icon-wrap {
  background: var(--kanha-blue);
  border-color: var(--kanha-blue);
  color: #FFFFFF;
  box-shadow: 0 8px 18px rgba(22, 118, 183, 0.25);
}

.proc-clean-card:hover:not(.active) .proc-clean-icon-wrap {
  background: rgba(22, 118, 183, 0.1);
  color: var(--kanha-blue);
}

.proc-clean-num-badge {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: rgba(6, 19, 26, 0.25);
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.proc-clean-card.active .proc-clean-num-badge {
  color: var(--kanha-green);
}

.proc-clean-card-body {
  flex-grow: 1;
}

.proc-clean-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.proc-clean-card.active .proc-clean-card-title {
  color: var(--kanha-blue);
}

.proc-clean-card-desc {
  font-size: 0.925rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.proc-clean-card-points {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(6, 19, 26, 0.06);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.proc-clean-card-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
}

.proc-clean-card-points li svg {
  color: var(--kanha-green);
  flex-shrink: 0;
}

/* Bottom Action Strip */
.proc-clean-action-strip {
  background: #FFFFFF;
  border: 1px solid rgba(6, 19, 26, 0.08);
  border-radius: 20px;
  padding: 24px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  box-shadow: 0 4px 20px rgba(6, 19, 26, 0.03);
}

.proc-action-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.proc-action-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--kanha-green);
  box-shadow: 0 0 0 4px rgba(53, 173, 69, 0.2);
  flex-shrink: 0;
}

.proc-action-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 2px;
}

.proc-action-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.proc-action-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-proc-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--kanha-blue);
  color: #FFFFFF;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 14px rgba(22, 118, 183, 0.25);
}

.btn-proc-primary:hover {
  background: #0f5b90;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(22, 118, 183, 0.35);
  color: #FFFFFF;
}

.btn-proc-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(6, 19, 26, 0.15);
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-proc-secondary:hover {
  background: #F4F7F9;
  border-color: rgba(6, 19, 26, 0.3);
  color: var(--navy);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .proc-clean-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .proc-dynamic-rail {
    display: none;
  }
  .proc-clean-action-strip {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
  }
  .proc-action-btn-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .proc-clean-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .about-proc-clean-section {
    padding: 60px 0;
  }
  .proc-clean-grid {
    grid-template-columns: 1fr;
  }
  .proc-action-btn-group {
    flex-direction: column;
    width: 100%;
  }
  .btn-proc-primary, .btn-proc-secondary {
    width: 100%;
    justify-content: center;
  }
}

/* Footer - 4 Column Layout */
.site-footer {
  background: #040d12;
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.25fr;
  gap: 36px;
  margin-bottom: 48px;
  align-items: start;
}

@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 28px;
  }
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-col-support {
    grid-column: span 2;
  }
}

@media (max-width: 380px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-brand, .footer-col-support {
    grid-column: span 1;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 12px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.footer-logo img {
  height: 80px;
  width: auto;
  display: block;
}

.footer-company-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: 0.04em;
  margin: 0 0 8px 0;
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.5;
  margin-bottom: 12px;
}

.footer-location-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 18px;
}

.footer-location-info svg {
  color: var(--kanha-green);
  flex-shrink: 0;
}

.footer-regions-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.region-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  transition: all 0.25s ease;
}

.region-pill:hover {
  background: rgba(53, 173, 69, 0.18);
  border-color: var(--kanha-green);
  color: #86efac;
  transform: translateY(-2px);
}

.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal-links a:hover {
  color: var(--kanha-green);
}

.legal-title {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.legal-sep {
  color: rgba(255, 255, 255, 0.25);
}

.footer-brand p {
  font-size: 0.90625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.footer-badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.03em;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s var(--ease);
}

.social-icon:hover {
  background: var(--kanha-green);
  color: #fff;
  border-color: var(--kanha-green);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(53, 173, 69, 0.35);
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: var(--kanha-green);
  border-radius: 1px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a {
  font-size: 0.90625rem;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-col a:hover {
  color: var(--kanha-green);
  transform: translateX(4px);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.90625rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  color: var(--kanha-green);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.2s;
}

.footer-contact-item a:hover {
  color: var(--kanha-green);
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.65);
}

.loc-dot {
  width: 6px;
  height: 6px;
  background: var(--kanha-green);
  border-radius: 50%;
  display: inline-block;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-visual-item { opacity: 1; transform: none; }
}

/* Responsive */
@media (max-width: 1320px) {
  .header-inner { gap: 10px; }
  .nav-main { gap: 2px; }
  .nav-link { padding: 6px 9px; font-size: 0.855rem; gap: 4px; }
  .logo img { height: 44px; }
  .btn-whatsapp-header { padding: 7px 12px; font-size: 0.80rem; gap: 5px; }
  .btn-quote-header { padding: 7px 14px; font-size: 0.84rem; }
}

@media (max-width: 1200px) {
  :root { --pad: 40px; }
  .header-inner { gap: 8px; }
  .nav-link { padding: 6px 8px; font-size: 0.835rem; }
  .hero-visual { width: 42%; }
  .hero h1 { max-width: 680px; font-size: clamp(2.6rem, 4vw, 3.25rem); }
  .trade-product { flex-basis: 62px; }
  .trade-product img { width: 62px; }
  .category-mosaic { grid-template-rows: repeat(2, 220px); }
}

@media (max-width: 1120px) {
  .header-actions .btn-whatsapp-header { display: none; }
  .nav-link { padding: 6px 8px; font-size: 0.835rem; }
}

@media (max-width: 1024px) {
  :root { --pad: 40px; }
  .nav-main { display: none; }
  .header-actions .btn-whatsapp-header { display: none; }
  .nav-toggle { display: block; }
  .header-actions .btn-quote-header { display: inline-flex; padding: 8px 16px; font-size: 0.82rem; }

  .nav-main.mobile-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--header-h, 72px);
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    padding: 16px;
    gap: 8px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1002;
  }

  .nav-main.mobile-open .nav-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    box-sizing: border-box;
    color: #0f172a;
    font-size: 1rem;
    font-weight: 700;
    padding: 13px 16px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    text-decoration: none;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .nav-main.mobile-open .nav-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    color: #64748b;
    transition: transform 0.25s ease;
  }

  .nav-main.mobile-open .nav-link:hover,
  .nav-main.mobile-open .nav-link.active {
    background: #eff6ff;
    border-color: #93c5fd;
    color: var(--kanha-blue);
  }

  .nav-main.mobile-open .has-dropdown {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .nav-main.mobile-open .has-dropdown.open > .nav-link {
    background: #eff6ff;
    border-color: var(--kanha-blue);
    color: var(--kanha-blue);
    border-radius: 12px 12px 0 0;
  }

  .nav-main.mobile-open .has-dropdown.open > .nav-link svg {
    transform: rotate(180deg);
    color: var(--kanha-blue);
  }

  /* Dropdown Panels in Mobile Menu */
  .nav-main.mobile-open .has-dropdown .dropdown-panel {
    display: none;
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: none !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .nav-main.mobile-open .has-dropdown.open > .dropdown-panel {
    display: block !important;
  }

  /* About Us Submenu in Mobile */
  .nav-main.mobile-open .dropdown-panel.nav-sub-menu {
    background: #f8fafc !important;
    border: 1px solid var(--kanha-blue) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 8px 10px 10px !important;
    margin-top: -1px !important;
  }

  .nav-main.mobile-open .has-dropdown.open .dropdown-panel.nav-sub-menu {
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
  }

  .nav-main.mobile-open .dropdown-panel.nav-sub-menu a {
    padding: 10px 14px !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    color: #334155 !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    display: block !important;
    text-decoration: none !important;
    transition: all 0.15s ease !important;
  }

  .nav-main.mobile-open .dropdown-panel.nav-sub-menu a:hover,
  .nav-main.mobile-open .dropdown-panel.nav-sub-menu a.active {
    background: #f0f7ff !important;
    border-color: #93c5fd !important;
    color: var(--kanha-blue) !important;
    padding-left: 18px !important;
  }

  /* Mega Menu in Mobile */
  .nav-main.mobile-open .dropdown-panel.mega-menu,
  .nav-main.mobile-open .has-dropdown.open .mega-menu,
  .nav-main.mobile-open .has-dropdown:hover .mega-menu,
  .nav-main.mobile-open .has-dropdown:focus-within .mega-menu {
    position: static !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    box-sizing: border-box !important;
    background: #f8fafc !important;
    border: 1px solid var(--kanha-blue) !important;
    border-top: none !important;
    border-radius: 0 0 12px 12px !important;
    padding: 12px 10px 14px !important;
    margin-top: -1px !important;
    box-shadow: none !important;
    overflow: visible !important;
  }

  .nav-main.mobile-open .mega-clean-wrapper {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .nav-main.mobile-open .mega-header-bar {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding-bottom: 8px !important;
    margin-bottom: 10px !important;
    border-bottom: 1px solid #e2e8f0 !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .nav-main.mobile-open .mega-header-title {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 0.72rem !important;
    color: #0f172a !important;
  }

  .nav-main.mobile-open .mega-header-sub {
    display: none !important;
  }

  .nav-main.mobile-open .mega-quick-all-link {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    color: var(--kanha-blue) !important;
    text-decoration: none !important;
  }

  .nav-main.mobile-open .mega-categories-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 6px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .nav-main.mobile-open .dropdown-panel a.mega-cat-card,
  .nav-main.mobile-open .mega-cat-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 8px 8px !important;
    border-radius: 8px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    text-decoration: none !important;
    text-align: left !important;
  }

  .nav-main.mobile-open .mega-cat-card:hover {
    background: #f0f7ff !important;
    border-color: #93c5fd !important;
  }

  .nav-main.mobile-open .mega-cat-thumb {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 1px solid #e2e8f0 !important;
    margin: 0 !important;
  }

  .nav-main.mobile-open .mega-cat-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  .nav-main.mobile-open .mega-cat-info {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    flex: 1 !important;
    text-align: left !important;
  }

  .nav-main.mobile-open .mega-cat-name {
    font-size: 0.74rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    line-height: 1.2 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    width: 100% !important;
  }

  .nav-main.mobile-open .mega-cat-desc {
    display: none !important;
  }

  .nav-main.mobile-open .mega-cat-arrow {
    display: none !important;
  }

  .nav-main.mobile-open .mega-footer-v2 {
    margin-top: 10px !important;
    padding-top: 10px !important;
    border-top: 1px solid #e2e8f0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    align-items: stretch !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .nav-main.mobile-open .mega-footer-meta {
    font-size: 0.7rem !important;
    color: #64748b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 6px !important;
    text-align: center !important;
  }

  .nav-main.mobile-open .btn-mega-rfq {
    width: 100% !important;
    text-align: center !important;
    justify-content: center !important;
    padding: 10px 14px !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    background: var(--kanha-blue) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    display: block !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
  }


  @keyframes hero-panel-in { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
  .about-grid, .values-grid, .global-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-showcase { max-width: 540px; margin: 0 auto; }
  .category-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .values-showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .values-trust-overlay { padding: 28px 32px; flex-direction: column; align-items: flex-start; }
  .poultry-split { grid-template-columns: 1fr; }
  .poultry-images { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-card { padding: 24px 20px; }
}

@media (max-width: 768px) {
  :root { --pad: 18px; --header-h: 72px; }
  .section { padding: 48px 0; }
  .cert-strip-container { padding: 0 16px !important; margin-top: 28px !important; margin-bottom: 0 !important; position: relative !important; z-index: 10 !important; }
  .cert-strip { margin-top: 0 !important; padding: 18px 14px !important; border-radius: 16px !important; background: #ffffff !important; border: 1px solid #e2e8f0 !important; box-shadow: 0 10px 30px rgba(6, 19, 26, 0.08) !important; }
  .cert-strip-inner { flex-direction: column; align-items: center; text-align: center; gap: 12px; }
  .cert-strip-label { font-size: 0.88rem; font-weight: 800; color: #081d28; letter-spacing: 0.08em; text-transform: uppercase; }
  .cert-badges { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 10px; width: 100%; }
  .cert-badge { display: flex; align-items: center; justify-content: center; gap: 7px; font-size: 0.84rem; font-weight: 700; color: #1e293b; padding: 10px 10px; background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cert-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 6px rgba(22, 163, 74, 0.4); flex-shrink: 0; }
  .about-cards-grid { grid-template-columns: 1fr; }
  .about-showcase { max-width: 100%; }
  .values-trust-banner img { height: 300px; }
  .values-trust-overlay { padding: 22px; }
  .process-grid { grid-template-columns: 1fr; }
  .poultry-content { padding: 36px 22px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 16px; }
  .footer-brand { grid-column: span 2; margin-bottom: 8px; }
  .footer-col-support { grid-column: span 2; }
  .hero { min-height: 0 !important; padding-top: 28px !important; padding-bottom: 36px !important; overflow: hidden !important; }
  .hero-container { display: flex !important; flex-direction: column !important; gap: 28px !important; padding-inline: 18px !important; width: 100% !important; max-width: 600px !important; margin-inline: auto !important; }
  .hero-content { padding: 0 !important; width: 100% !important; max-width: 100% !important; text-align: left !important; }
  .hero-since { font-size: 0.72rem !important; letter-spacing: 0.1em !important; margin-bottom: 10px !important; color: #38bdf8 !important; font-weight: 700 !important; text-transform: uppercase !important; display: block !important; }
  .hero-title, .hero h1.display-xl, .hero h1 { font-size: clamp(1.65rem, 5.2vw, 2.15rem) !important; line-height: 1.22 !important; margin-bottom: 14px !important; font-weight: 800 !important; color: #ffffff !important; letter-spacing: -0.01em !important; }
  .hero-title-line1 { display: inline !important; }
  .hero-title-line2 { display: inline !important; }
  .hero-desc { margin-bottom: 8px !important; }
  .hero-desc-lead { font-size: 0.94rem !important; line-height: 1.55 !important; color: #e2e8f0 !important; margin-bottom: 20px !important; display: block !important; }
  .hero-desc-sub { display: none !important; }
  .hero-actions { display: flex !important; flex-direction: row !important; align-items: center !important; gap: 12px !important; flex-wrap: wrap !important; margin-bottom: 24px !important; width: 100% !important; }
  .hero-actions .btn { width: auto !important; flex: 0 1 auto !important; padding: 11px 18px !important; font-size: 0.88rem !important; font-weight: 700 !important; border-radius: 10px !important; white-space: nowrap !important; line-height: 1.2 !important; text-decoration: none !important; }
  .hero-actions .btn-primary, .hero-actions .btn-hero-quote { background: #eab02f !important; border: 1px solid #eab02f !important; color: #06131a !important; box-shadow: 0 4px 16px rgba(234, 176, 47, 0.35) !important; }
  .hero-actions .btn-outline, .hero-actions .btn-hero-explore { background: rgba(255, 255, 255, 0.08) !important; border: 1.5px solid rgba(255, 255, 255, 0.65) !important; color: #ffffff !important; backdrop-filter: blur(8px) !important; display: inline-flex !important; }
  .hero-stats { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; border-top: 1px solid rgba(255, 255, 255, 0.18) !important; padding-top: 16px !important; margin-top: 0 !important; background: transparent !important; border-bottom: none !important; border-left: none !important; border-right: none !important; border-radius: 0 !important; backdrop-filter: none !important; width: 100% !important; max-width: 100% !important; }
  .hero-stats div { display: flex !important; flex-direction: column !important; gap: 3px !important; min-width: 0 !important; text-align: left !important; }
  .hero-stats strong { font-size: 1.25rem !important; font-weight: 800 !important; color: #ffffff !important; line-height: 1.15 !important; }
  .hero-stats span { font-size: 0.72rem !important; color: #94a3b8 !important; line-height: 1.25 !important; white-space: nowrap !important; }
  .hero-visual { width: 100% !important; max-width: 540px !important; margin: 0 auto !important; display: block !important; }
  .trade-panel { padding: 16px 14px !important; border-radius: 18px !important; background: rgba(14, 38, 54, 0.78) !important; border: 1px solid rgba(255, 255, 255, 0.18) !important; box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4) !important; backdrop-filter: blur(14px) !important; -webkit-backdrop-filter: blur(14px) !important; width: 100% !important; box-sizing: border-box !important; }
  .trade-label { font-size: 0.72rem !important; font-weight: 700 !important; letter-spacing: 0.12em !important; color: #7dd3fc !important; text-transform: uppercase !important; margin-bottom: 10px !important; display: block !important; }
  .trade-products { overflow: hidden !important; position: relative !important; mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important; -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important; width: 100% !important; display: flex !important; }
  .trade-products-track { display: flex !important; width: max-content !important; gap: 10px !important; animation: trade-products-marquee 20s linear infinite !important; }
  .trade-products-track.reverse { animation: trade-products-marquee-rev 22s linear infinite !important; }
  .trade-products-track [aria-hidden="true"] { display: flex !important; }
  .trade-product { flex: 0 0 68px !important; width: 68px !important; display: flex !important; flex-direction: column !important; align-items: center !important; text-align: center !important; gap: 5px !important; text-decoration: none !important; min-width: 0 !important; }
  .trade-product img { width: 62px !important; height: 62px !important; max-width: 62px !important; aspect-ratio: 1 !important; border-radius: 10px !important; border: 1px solid rgba(255, 255, 255, 0.22) !important; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important; object-fit: cover !important; display: block !important; margin: 0 auto !important; }
  .trade-product span { font-size: 0.65rem !important; line-height: 1.2 !important; color: #cbd5e1 !important; text-align: center !important; margin-top: 2px !important; overflow: hidden !important; text-overflow: ellipsis !important; display: -webkit-box !important; -webkit-line-clamp: 2 !important; -webkit-box-orient: vertical !important; white-space: normal !important; text-shadow: none !important; font-weight: 500 !important; }
  .trade-divider { height: 1px !important; margin: 14px 0 !important; background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important; }
}

@media (max-width: 600px) {
  .header-top-socials { display: none; }
  .header-top-inner { justify-content: center; }
  .header-top-contact { gap: 10px; font-size: 0.75rem; }
  .category-grid { grid-template-columns: 1fr; }
  .values-showcase-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .btn { padding: 13px 18px; font-size: 0.88rem; }
  .hero-actions, .cta-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn, .cta-actions .btn { width: 100%; }
  .hero-title, .hero h1.display-xl, .hero h1 { font-size: 1.85rem !important; }
  .about-img-frame-primary { width: 85%; }
  .about-img-frame-secondary { width: 50%; bottom: -16px; border-width: 4px; }
}

/* Inner Pages */
.page-hero {
  background: var(--navy);
  padding: calc(var(--header-h) + 60px) 0 80px;
  text-align: center;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: #fff;
  margin-bottom: 12px;
}

.page-hero p { color: var(--text-light); max-width: 560px; margin: 0 auto; }

@media (max-width: 768px) {
  .page-hero {
    padding: calc(var(--header-h) + 24px) 0 44px;
  }
  .page-hero h1 {
    font-size: 1.85rem;
    line-height: 1.25;
  }
  .page-hero p {
    font-size: 0.92rem;
    line-height: 1.55;
    padding: 0 12px;
  }
}

.about-hero-premium {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 56px) 0 88px;
  text-align: left;
  background:
    radial-gradient(circle at 10% 12%, rgba(53, 173, 69, 0.16), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(22, 118, 183, 0.24), transparent 24%),
    linear-gradient(135deg, #05131a 0%, #0a2431 48%, #0d2e25 100%);
}

.about-hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../assets/images/world-map-clean.png') center / cover no-repeat;
  opacity: 0.07;
  mix-blend-mode: screen;
  pointer-events: none;
}

.about-hero-premium::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(245, 240, 231, 0.09);
  filter: blur(16px);
  pointer-events: none;
}

.page-hero-bg-accent {
  position: absolute;
  top: 116px;
  left: -110px;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 240, 231, 0.16) 0%, rgba(245, 240, 231, 0.04) 42%, transparent 74%);
  pointer-events: none;
}

.about-hero-premium .container {
  position: relative;
  z-index: 1;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 52px;
  align-items: end;
}

.page-hero-copy {
  max-width: 700px;
}

.page-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.hero-badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--kanha-green);
  box-shadow: 0 0 0 6px rgba(53, 173, 69, 0.12);
}

.page-hero-title {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(3.25rem, 7vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.page-hero-title em {
  color: var(--kanha-green);
  font-style: normal;
  font-weight: 400;
}

.about-hero-premium .page-hero-subtitle {
  max-width: 620px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
  text-align: left;
}

.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}

.about-hero-premium .btn-outline {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.04);
}

.about-hero-premium .btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.page-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 920px;
}

.hero-metric-divider {
  display: none;
}

.hero-metric-item {
  padding: 20px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: 0 16px 34px rgba(4, 16, 22, 0.18);
  backdrop-filter: blur(16px);
}

.hero-metric-item strong {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1;
}

.hero-metric-item span {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-transform: uppercase;
}

.about-hero-showcase {
  position: relative;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.05));
  box-shadow: 0 24px 60px rgba(1, 8, 12, 0.34);
  backdrop-filter: blur(18px);
}

.about-hero-showcase::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  pointer-events: none;
}

.about-hero-showcase-top {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.about-hero-kicker,
.about-hero-location {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-hero-visual {
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 22px;
  background: #0c1b21;
}

.about-hero-visual img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.92);
}

.about-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 26, 0.02) 22%, rgba(6, 19, 26, 0.72) 100%);
}

.about-hero-visual-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(6, 19, 26, 0.58);
  backdrop-filter: blur(12px);
}

.about-hero-visual-badge strong {
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
}

.about-hero-visual-badge span {
  max-width: 220px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.84rem;
  line-height: 1.5;
  text-align: right;
}

.about-hero-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.about-hero-panel p {
  margin: 0;
  max-width: none;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.98rem;
  line-height: 1.75;
}

.about-hero-highlights {
  display: grid;
  gap: 12px;
}

.about-hero-highlights li {
  position: relative;
  padding: 14px 16px 14px 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  font-size: 0.9rem;
  line-height: 1.55;
}

.about-hero-highlights li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 18px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle at 35% 35%, #fff 0 18%, var(--kanha-green) 22% 100%);
  box-shadow: 0 0 0 6px rgba(53, 173, 69, 0.12);
}

@media (max-width: 1100px) {
  .page-hero-layout {
    grid-template-columns: 1fr;
  }

  .page-hero-copy {
    max-width: none;
  }

  .page-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-hero-showcase {
    max-width: 720px;
  }
}

@media (max-width: 768px) {
  .about-hero-premium {
    padding: calc(var(--header-h) + 40px) 0 72px;
  }

  .page-hero-layout {
    gap: 32px;
  }

  .page-hero-badge {
    margin-bottom: 18px;
    padding: 9px 14px;
  }

  .about-hero-premium .page-hero-subtitle {
    margin-bottom: 24px;
    font-size: 1rem;
  }

  .page-hero-actions {
    margin-bottom: 30px;
  }

  .page-hero-actions .btn {
    width: 100%;
  }

  .page-hero-metrics {
    gap: 12px;
  }

  .hero-metric-item {
    padding: 18px 16px;
    border-radius: 18px;
  }

  .about-hero-showcase {
    padding: 18px;
    border-radius: 24px;
  }

  .about-hero-showcase::before {
    inset: 10px;
    border-radius: 18px;
  }

  .about-hero-visual img {
    height: 270px;
  }

  .about-hero-visual-badge {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero-visual-badge span {
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 520px) {
  .page-hero-title {
    font-size: clamp(2.7rem, 13vw, 4.2rem);
  }

  .page-hero-metrics {
    grid-template-columns: 1fr;
  }

  .about-hero-showcase-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .about-hero-visual img {
    height: 240px;
  }
}

.page-content { padding: 80px 0; }
.page-content .container { max-width: 900px; }
.page-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin: 32px 0 12px;
}
.page-content p, .page-content li {
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

/* Premium 3-Column Product Grid & Ultra-Clean Cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 680px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.product-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(6, 19, 26, 0.08);
  box-shadow: 0 6px 24px rgba(6, 19, 26, 0.04), 0 1px 3px rgba(6, 19, 26, 0.02);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(6, 19, 26, 0.12), 0 4px 12px rgba(22, 118, 183, 0.1);
  border-color: rgba(22, 118, 183, 0.35);
}

.product-card-media {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  background-color: #eef2f5;
}

.product-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.product-card-media .product-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.product-card:hover .product-card-media .product-img {
  transform: none;
}

.product-card-media .product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(6, 19, 26, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  z-index: 2;
  pointer-events: none;
}

.product-card-body {
  padding: 24px 26px 22px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-label {
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--kanha-green);
  margin-bottom: 8px;
}

.product-card-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.3;
}

.product-card-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-card-title a:hover {
  color: var(--kanha-blue);
}

.product-card-desc {
  font-size: 14px;
  color: #556575;
  line-height: 1.6;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

.product-card-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.spec-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
}

.spec-pill .pill-label {
  color: #94a3b8;
  font-weight: 600;
}

.spec-pill .pill-val {
  color: #334155;
  font-weight: 600;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 19, 26, 0.06);
  margin-top: auto;
}

.btn-view-detail {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kanha-blue);
  text-decoration: none;
  transition: all 0.25s ease;
}

.btn-view-detail svg {
  transition: transform 0.25s ease;
}

.btn-view-detail:hover {
  color: var(--kanha-green);
}

.btn-view-detail:hover svg {
  transform: translateX(4px);
}

.btn-get-quote {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 18px;
  border-radius: 30px;
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.btn-get-quote:hover {
  background: var(--kanha-green);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(53, 173, 69, 0.35);
  transform: translateY(-1px);
}

/* --- SHORT / COMPACT PRODUCT DETAIL PAGE STYLES --- */
.product-detail-page {
  padding: calc(var(--header-h) + 40px) 0 80px;
  background-color: var(--soft-white);
  min-height: calc(100vh - 350px);
}

.detail-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.detail-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.detail-breadcrumb a:hover {
  color: var(--kanha-blue);
}

.detail-breadcrumb .sep {
  opacity: 0.5;
}

.detail-breadcrumb .current {
  color: var(--text-dark);
  font-weight: 600;
}

.detail-compact-card {
  background: #ffffff;
  border: 1px solid rgba(6, 19, 26, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(6, 19, 26, 0.06);
  display: grid;
  grid-template-columns: 440px 1fr;
  overflow: hidden;
}

.detail-image-box {
  position: relative;
  background-color: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.detail-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(6, 19, 26, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
}

.detail-content-box {
  padding: 44px;
  display: flex;
  flex-direction: column;
}

.detail-header-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.detail-category-pill {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kanha-green);
  background: rgba(53, 173, 69, 0.1);
  padding: 4px 12px;
  border-radius: 6px;
}

.detail-origin-pill {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
}

.detail-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 16px;
}

.detail-description {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.detail-specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  background: var(--soft-white);
  padding: 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(6, 19, 26, 0.06);
  margin-bottom: 30px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-item.spec-full {
  grid-column: 1 / -1;
}

.spec-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  font-weight: 700;
}

.spec-value {
  font-size: 14px;
  color: var(--navy);
  line-height: 1.4;
}

.detail-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: auto;
}

.detail-btn-rfq {
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.detail-btn-wa {
  padding: 14px 22px;
  font-size: 14.5px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.4);
  color: #128C7E;
}

.detail-btn-wa:hover {
  background: #25D366;
  color: #ffffff;
}

.detail-back-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  margin-left: auto;
  transition: color 0.2s ease;
}

.detail-back-link:hover {
  color: var(--kanha-blue);
}

@media (max-width: 900px) {
  .detail-compact-card {
    grid-template-columns: 1fr;
  }
  .detail-image-box {
    min-height: 280px;
    max-height: 340px;
  }
  .detail-content-box {
    padding: 24px;
  }
  .detail-title {
    font-size: 1.8rem;
  }
  .detail-specs-grid {
    grid-template-columns: 1fr;
  }
  .detail-back-link {
    width: 100%;
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }
}

.contact-form {
  display: grid;
  gap: 20px;
  max-width: 600px;
}

.contact-form label {
  font-size: 0.875rem;
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(6, 19, 26, 0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--soft-white);
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--kanha-blue);
  box-shadow: 0 0 0 3px rgba(22, 118, 183, 0.15);
}

.contact-form textarea { min-height: 140px; resize: vertical; }

.category-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  justify-content: center;
}

.category-filter button,
.filter-chip {
  padding: 10px 22px;
  border: 1px solid rgba(6, 19, 26, 0.12);
  border-radius: 100px;
  background: #ffffff;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.category-filter button:hover,
.filter-chip:hover {
  background: #f0f7fb;
  border-color: var(--kanha-blue);
  color: var(--kanha-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 118, 183, 0.12);
}

.category-filter button.active,
.filter-chip.active {
  background: var(--kanha-blue);
  color: #fff;
  border-color: var(--kanha-blue);
  box-shadow: 0 4px 16px rgba(22, 118, 183, 0.35);
  transform: translateY(-1px);
}

/* Shop catalogue layout */
.shop-section {
  padding: 54px 0 96px;
  background: linear-gradient(180deg, #fbfaf6 0%, #f5f0e7 100%);
}

.shop-section > .container {
  max-width: 1480px;
  padding-left: 40px;
  padding-right: 40px;
}

.shop-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.shop-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  padding: 26px 22px 22px;
  background: #ffffff;
  border: 1px solid rgba(6, 19, 26, 0.1);
  border-top: 3px solid var(--kanha-green);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(6, 19, 26, 0.06);
}

.shop-sidebar-heading h2,
.shop-results-toolbar h2 {
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.2;
  color: var(--navy);
}

.shop-sidebar-copy {
  margin: 12px 0 22px;
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.55;
}

.category-filters {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.category-filters .filter-chip {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 7px;
  background: transparent;
  box-shadow: none;
  text-align: left;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  transform: none;
}

.category-filters .filter-chip::after {
  content: '\2192';
  color: #a1adb5;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.category-filters .filter-chip:hover,
.category-filters .filter-chip.active {
  background: rgba(22, 118, 183, 0.09);
  border-color: rgba(22, 118, 183, 0.16);
  color: var(--kanha-blue);
  box-shadow: none;
}

.category-filters .filter-chip:hover::after,
.category-filters .filter-chip.active::after {
  opacity: 1;
}

.category-filters .filter-chip.active::after { color: var(--kanha-green); }

.shop-sidebar-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(6, 19, 26, 0.09);
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.shop-sidebar-note-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  border-radius: 50%;
  background: rgba(53, 173, 69, 0.14);
  color: var(--kanha-green);
  font-size: 0.7rem;
  font-weight: 800;
}

.shop-results { min-width: 0; }

.shop-results-toolbar {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(6, 19, 26, 0.11);
}

.shop-results-count {
  margin: 0 0 3px;
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.shop-results .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.shop-results .product-card-media { height: 220px; }

@media (max-width: 1100px) {
  .shop-section > .container { padding-left: 32px; padding-right: 32px; }
  .shop-layout { grid-template-columns: 270px minmax(0, 1fr); gap: 28px; }
  .shop-results .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-results .product-grid { gap: 18px; }
}

@media (max-width: 760px) {
  .shop-section > .container { padding-left: var(--pad-sm); padding-right: var(--pad-sm); }
  .shop-section { padding: 32px 0 68px; }
  .shop-layout { grid-template-columns: 1fr; gap: 34px; }
  .shop-sidebar { position: static; padding: 22px 18px 18px; }
  .shop-sidebar-copy { max-width: 480px; }
  .category-filters { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 4px 10px; }
  .shop-sidebar-note { display: none; }
  .shop-results-toolbar { align-items: flex-start; flex-direction: column; gap: 8px; }
  .shop-results .product-grid { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
  .category-filters { grid-template-columns: 1fr; }
}

.inner-hero { position: relative; min-height: 620px; display: flex; align-items: flex-end; overflow: hidden; background: var(--navy); }
.inner-hero-image, .inner-hero-overlay { position: absolute; inset: 0; }
.inner-hero-image img { width: 100%; height: 100%; object-fit: cover; }
.inner-hero-overlay { background: linear-gradient(90deg, rgba(6, 19, 26, .92), rgba(6, 19, 26, .35) 68%, rgba(6, 19, 26, .5)); }
.inner-hero-content { position: relative; z-index: 1; padding-top: 160px; padding-bottom: 92px; }
.inner-hero h1 { max-width: 700px; color: #fff; font-family: var(--font-display); font-size: clamp(3.2rem, 7vw, 6.5rem); font-weight: 500; line-height: .98; margin: 18px 0 24px; }
.inner-hero h1 em, .about-intro h2 em, .about-global h2 em, .contact-section h2 em { color: var(--kanha-green); font-style: normal; }
.inner-hero-content p { max-width: 540px; color: var(--text-light); font-size: 1.1rem; line-height: 1.7; }
.about-intro { padding: 120px 0; }
.about-intro-grid, .about-global-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.about-intro-copy h2, .about-global-copy h2, .contact-aside h2, .form-heading h2 { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 4rem); font-weight: 500; line-height: 1.05; margin: 18px 0 28px; }
.about-intro-copy p, .about-global-copy p, .contact-aside > p { max-width: 570px; color: var(--text-muted); margin-bottom: 18px; }
.about-intro-copy .btn { margin-top: 16px; }
.about-intro-visual { position: relative; padding: 0 0 42px 42px; }
.about-intro-visual img { width: 100%; aspect-ratio: 1 / 1.08; object-fit: cover; border-radius: 28px; box-shadow: 0 24px 64px rgba(6, 19, 26, .18); }
.about-stat { position: absolute; bottom: 0; left: 0; display: flex; flex-direction: column; padding: 20px 26px; background: var(--kanha-blue); color: #fff; border-radius: 16px; box-shadow: 0 14px 30px rgba(22, 118, 183, .28); }
.about-stat strong { font: 500 2rem/1 var(--font-display); }.about-stat span { font-size: .78rem; margin-top: 5px; opacity: .8; }
.mission-vision { padding: 112px 0 126px; overflow: hidden; background: linear-gradient(135deg, #f5f7ef 0%, var(--soft-white) 48%, #f8f1df 100%); }
.mission-heading { text-align: center; }.mission-heading h2 { color: #0a4026; font-family: var(--font-display); font-size: clamp(2.6rem, 5vw, 4.35rem); font-weight: 800; line-height: 1.05; letter-spacing: -.02em; margin-top: 18px; }
.mission-map { position: relative; max-width: 1120px; margin: 42px auto 0; padding-top: 112px; }
.mission-core { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; width: 150px; height: 150px; margin: 0 auto; padding-top: 22px; background: rgba(255,255,255,.78); border: 1px solid #e8cb89; border-radius: 50%; box-shadow: 0 14px 38px rgba(22, 80, 43, .12); color: #174b2d; }
.mission-core::before { content: ''; position: absolute; inset: -18px; border: 1px dashed rgba(53, 138, 79, .25); border-radius: 50%; }.mission-core-icon { display: grid; place-items: center; width: 42px; height: 42px; margin-bottom: 10px; border-radius: 50%; background: #fff; color: #267746; font-size: 1.2rem; box-shadow: 0 4px 16px rgba(22,80,43,.1); }.mission-core strong { font: 600 1rem var(--font-display); }.mission-core small { margin-top: 8px; font-size: .55rem; font-weight: 700; letter-spacing: .12em; color: #7a8668; }
.mission-connections { position: absolute; top: 86px; left: 0; z-index: 1; width: 100%; height: 360px; overflow: visible; pointer-events: none; }.mission-connection-path { fill: none; stroke: rgba(53, 138, 79, .68); stroke-width: 2.5; stroke-dasharray: 9 9; stroke-linecap: round; animation: mission-line-flow 2.8s linear infinite; }
@keyframes mission-line-flow { to { stroke-dashoffset: -36; } }
.mission-cards { position: relative; z-index: 2; display: grid; grid-template-columns: repeat(2, 1fr); gap: 140px; margin-top: 112px; }.mission-card { position: relative; min-height: 286px; padding: 28px 28px 26px; background: rgba(255,255,255,.82); border: 1px solid rgba(224, 193, 119, .55); border-radius: 22px; box-shadow: 0 18px 42px rgba(22, 80, 43, .08); transition: box-shadow .45s var(--ease), border-color .45s ease, background .45s ease; }.mission-card::before { content: ''; position: absolute; z-index: 3; top: -9px; left: 50%; width: 14px; height: 14px; transform: translateX(-50%); border: 3px solid #f5f7ef; border-radius: 50%; background: #2e8a50; box-shadow: 0 4px 14px rgba(22,80,43,.28); animation: mission-node-pulse 2.8s ease-in-out infinite; }.mission-card:hover { background: #fff; border-color: rgba(53, 138, 79, .5); box-shadow: 0 28px 58px rgba(22, 80, 43, .16); }.mission-card-top { display: flex; justify-content: space-between; align-items: center; }.mission-card-icon { display: grid; place-items: center; width: 46px; height: 46px; color: #3f9360; background: #fffdf4; border: 1px solid #efdca8; border-radius: 12px; font-size: 1rem; transition: transform .45s var(--ease), background .45s ease, color .45s ease; }.mission-card:hover .mission-card-icon { transform: rotate(12deg) scale(1.08); background: #eef8ec; color: #196638; }.mission-number { padding: 7px 12px; color: #277143; background: #eef8ec; border: 1px solid #c7e2c6; border-radius: 999px; font-size: .62rem; font-weight: 700; letter-spacing: .1em; transition: transform .45s var(--ease), background .45s ease; }.mission-card:hover .mission-number { transform: translateX(-4px); background: #e1f2df; }.mission-card h3 { color: #0a4026; font: 700 1.7rem var(--font-body); letter-spacing: -.02em; margin: 26px 0 10px; }.mission-card p { max-width: 390px; color: #536355; font-size: .9rem; line-height: 1.65; }.mission-card ul { display: grid; gap: 7px; margin-top: 18px; }.mission-card li { position: relative; padding-left: 16px; color: #536355; font-size: .78rem; transition: transform .35s var(--ease), color .35s ease; }.mission-card li::before { content: ''; position: absolute; left: 0; top: .55em; width: 5px; height: 5px; border-radius: 50%; background: #d6a52d; }.mission-card:hover li { transform: translateX(4px); color: #245c3a; }.mission-card:hover li:nth-child(2) { transition-delay: .04s; }.mission-card:hover li:nth-child(3) { transition-delay: .08s; }
@keyframes mission-node-pulse { 0%, 100% { transform: scale(1); opacity: .85; } 50% { transform: scale(1.25); opacity: 1; } }
.about-values { padding: 110px 0; }.about-values-header { display: flex; justify-content: space-between; align-items: flex-end; gap: 40px; }.about-values-header h2 { margin: 18px 0 0; }
.about-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 64px; border-top: 1px solid rgba(255,255,255,.18); }
.about-value { padding: 34px 32px 18px 0; border-bottom: 1px solid rgba(255,255,255,.18); }.about-value + .about-value { padding-left: 32px; border-left: 1px solid rgba(255,255,255,.18); }.about-value span { color: var(--kanha-green); font-size: .8rem; letter-spacing: .12em; }.about-value h3 { color: #fff; font: 500 1.65rem var(--font-display); margin: 28px 0 12px; }.about-value p { color: var(--text-light); font-size: .95rem; }
.about-global { padding: 120px 0; }.about-global-image { background: #fff; border-radius: 28px; padding: 30px; box-shadow: 0 20px 60px rgba(6,19,26,.08); }.about-global-image img { width: 100%; }.about-global-note { display: flex; gap: 14px; align-items: center; margin-top: 36px; padding-top: 22px; border-top: 1px solid rgba(6,19,26,.12); }.about-global-note strong { color: var(--kanha-blue); }.about-global-note span { color: var(--text-muted); font-size: .85rem; }
/* ==========================================================================
   PREMIUM CONTACT PAGE STYLING
   ========================================================================== */
.contact-page-body {
  background-color: var(--warm-ivory);
}

/* Contact Hero Showcase & Status */
.contact-hero-premium {
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 173, 69, 0.18), transparent 28%),
    radial-gradient(circle at 86% 20%, rgba(22, 118, 183, 0.24), transparent 30%),
    linear-gradient(135deg, #06131a 0%, #0a2532 52%, #0d3028 100%);
  padding: calc(var(--header-h) + 58px) 0 74px;
  overflow: hidden;
  border-bottom: 1px solid rgba(13, 31, 45, 0.06);
}

.contact-hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 86%);
  pointer-events: none;
}

.contact-hero-premium .container {
  position: relative;
  z-index: 1;
}

.contact-hero-premium .page-hero-layout {
  grid-template-columns: minmax(0, 0.96fr) minmax(460px, 1.04fr);
  gap: 72px;
  align-items: center;
}

.contact-hero-premium .page-hero-copy {
  max-width: 640px;
}

.contact-hero-premium .page-hero-title {
  max-width: 620px;
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.contact-hero-premium .page-hero-subtitle {
  max-width: 590px;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: left;
}

.contact-hero-premium .page-hero-actions {
  margin-bottom: 30px;
}

.contact-hero-premium .page-hero-metrics {
  max-width: 640px;
}

.contact-hero-showcase {
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(13, 31, 45, 0.08);
  box-shadow: 0 24px 50px rgba(13, 31, 45, 0.06);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-hero-showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.contact-hero-kicker {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kanha-blue);
}

.contact-hero-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EEF8F1;
  color: #1B7A3E;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
}

.status-pulse {
  width: 7px;
  height: 7px;
  background-color: #2BA84A;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(43, 168, 74, 0.7);
  animation: pulseGreen 2s infinite;
}

@keyframes pulseGreen {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(43, 168, 74, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(43, 168, 74, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(43, 168, 74, 0); }
}

.contact-hero-visual {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.contact-hero-visual img {
  width: 100%;
  height: 238px;
  object-fit: cover;
  display: block;
}

.contact-hero-badge-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(13, 31, 45, 0.88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 12px 16px;
  border-radius: 10px;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.badge-icon {
  color: #55D688;
  display: flex;
  align-items: center;
}

.badge-content strong {
  display: block;
  font-size: 0.85rem;
  line-height: 1.2;
}

.badge-content span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.75);
}

.contact-hero-showcase-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  border-top: 1px solid rgba(13, 31, 45, 0.06);
  padding-top: 14px;
}

.showcase-mini-stat span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.showcase-mini-stat strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
  margin-top: 2px;
}

/* Contact Layout and Channels */
.contact-section {
  padding: 100px 0;
  background-color: var(--warm-ivory);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}

.contact-layout > * {
  min-width: 0;
}

.contact-aside-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.15;
  color: var(--navy);
  margin: 12px 0 16px;
}

.contact-aside-header h2 em {
  font-style: normal;
  font-weight: 400;
  color: var(--kanha-blue);
}

.contact-aside-header p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 36px;
}

.contact-channels-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.contact-channel-card {
  display: flex;
  align-items: center;
  gap: 18px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 16px;
  border: 1px solid rgba(13, 31, 45, 0.07);
  box-shadow: 0 4px 18px rgba(13, 31, 45, 0.03);
  text-decoration: none;
  transition: all 0.3s var(--ease);
  position: relative;
}

.contact-channel-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(13, 31, 45, 0.08);
  border-color: rgba(13, 31, 45, 0.15);
}

.channel-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.phone-icon {
  background: rgba(0, 102, 179, 0.08);
  color: var(--kanha-blue);
}

.wa-icon {
  background: rgba(37, 211, 102, 0.12);
  color: #128C7E;
}

.email-icon {
  background: rgba(224, 120, 48, 0.1);
  color: #D35400;
}

.pin-icon {
  background: rgba(13, 31, 45, 0.06);
  color: var(--navy);
}

.channel-info {
  flex-grow: 1;
  min-width: 0;
}

.channel-info small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.channel-info strong {
  display: block;
  font-size: 1.05rem;
  color: var(--navy);
  font-weight: 600;
  overflow-wrap: anywhere;
}

.channel-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-top: 2px;
  overflow-wrap: anywhere;
}

.channel-action-arrow {
  font-size: 1.25rem;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}

.contact-channel-card:hover .channel-action-arrow {
  transform: translateX(4px);
  color: var(--kanha-blue);
}

.wa-channel:hover .channel-action-arrow {
  color: #128C7E;
}

/* Contact Trust Card */
.contact-trust-card {
  background: linear-gradient(135deg, #0D1F2D 0%, #15334A 100%);
  border-radius: 18px;
  padding: 26px;
  color: #ffffff;
}

.trust-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.trust-pill {
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.trust-rating {
  font-size: 0.8rem;
  color: #F8D348;
  font-weight: 600;
}

.contact-trust-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 18px;
}

.trust-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.t-badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 500;
  color: #E1E8ED;
}

/* Contact Form Panel */
.contact-form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 48px;
  box-shadow: 0 20px 60px rgba(13, 31, 45, 0.06);
  border: 1px solid rgba(13, 31, 45, 0.08);
}

.form-kicker-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0, 102, 179, 0.08);
  color: var(--kanha-blue);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.kicker-dot {
  width: 6px;
  height: 6px;
  background: var(--kanha-blue);
  border-radius: 50%;
}

.form-heading h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 2.8vw, 2.5rem);
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 10px;
}

.form-heading h2 em {
  font-style: normal;
  font-weight: 400;
  color: var(--kanha-green);
}

.form-heading p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

/* Quick Category Tags */
.quick-category-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px 16px;
  background: #F8F9FA;
  border-radius: 12px;
  margin-bottom: 24px;
  border: 1px dashed rgba(13, 31, 45, 0.12);
}

.tag-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
}

.quick-tag {
  background: #ffffff;
  border: 1px solid rgba(13, 31, 45, 0.15);
  border-radius: 100px;
  padding: 4px 12px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--navy);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.quick-tag:hover {
  background: var(--kanha-blue);
  color: #ffffff;
  border-color: var(--kanha-blue);
}

/* Contact Form Grid */
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}

.label-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 6px;
}

.label-row label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0;
}

.helper-text {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.input-with-icon {
  position: relative;
  display: flex;
  align-items: center;
}

.input-with-icon svg {
  position: absolute;
  left: 14px;
  color: var(--text-muted);
  pointer-events: none;
}

.input-with-icon input,
.input-with-icon select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid rgba(13, 31, 45, 0.15);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--navy);
  background-color: #FAFAFA;
  transition: all 0.25s var(--ease);
  outline: none;
}

.input-with-icon input:focus,
.input-with-icon select:focus,
.contact-form textarea:focus {
  background-color: #ffffff;
  border-color: var(--kanha-blue);
  box-shadow: 0 0 0 3px rgba(0, 102, 179, 0.12);
}

.select-wrapper select {
  appearance: none;
  cursor: pointer;
}

.contact-form textarea {
  width: 100%;
  min-height: 120px;
  padding: 14px 16px;
  border: 1px solid rgba(13, 31, 45, 0.15);
  border-radius: 10px;
  font-size: 0.92rem;
  font-family: inherit;
  color: var(--navy);
  background-color: #FAFAFA;
  resize: vertical;
  transition: all 0.25s var(--ease);
  outline: none;
}

.form-submit-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}

.btn-submit-quote {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  cursor: pointer;
}

.form-sla-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.form-sla-badge svg {
  color: var(--kanha-green);
}

.form-success-message {
  background: #EEF8F1;
  border: 1px solid #C3E6CB;
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: #155724;
}

.success-icon {
  background: #28A745;
  color: #ffffff;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hubs & Infrastructure Section */
.export-hubs-section {
  padding: 90px 0;
  background-color: #F8F6F0;
  border-top: 1px solid rgba(13, 31, 45, 0.06);
  border-bottom: 1px solid rgba(13, 31, 45, 0.06);
}

.section-header-centered {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-header-centered h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  color: var(--navy);
  line-height: 1.2;
  margin: 10px 0 14px;
}

.section-header-centered h2 em {
  font-style: normal;
  font-weight: 400;
  color: var(--kanha-blue);
}

.section-header-centered p {
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hub-card {
  background: #ffffff;
  padding: 32px 28px;
  border-radius: 18px;
  border: 1px solid rgba(13, 31, 45, 0.07);
  box-shadow: 0 4px 20px rgba(13, 31, 45, 0.03);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.hub-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 34px rgba(13, 31, 45, 0.08);
}

.hub-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.hub-header h3 {
  font-size: 1.2rem;
  color: var(--navy);
  font-weight: 600;
}

.hub-tag {
  background: rgba(0, 102, 179, 0.08);
  color: var(--kanha-blue);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.hub-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.55;
  margin-bottom: 20px;
}

.hub-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(13, 31, 45, 0.06);
  padding-top: 14px;
}

.hub-specs span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* FAQ Accordion Section */
.contact-faq-section {
  padding: 100px 0;
  background-color: var(--warm-ivory);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 64px;
  align-items: start;
}

.faq-copy h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1.2;
  color: var(--navy);
  margin: 10px 0 16px;
}

.faq-copy h2 em {
  font-style: normal;
  font-weight: 400;
  color: var(--kanha-blue);
}

.faq-copy p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 28px;
}

.faq-cta-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(13, 31, 45, 0.08);
  box-shadow: 0 6px 20px rgba(13, 31, 45, 0.03);
}

.faq-cta-box strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 6px;
}

.faq-cta-box p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid rgba(13, 31, 45, 0.08);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.faq-item.active {
  border-color: var(--kanha-blue);
  box-shadow: 0 8px 24px rgba(0, 102, 179, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
}

.faq-chevron {
  font-size: 1.4rem;
  color: var(--text-muted);
  transition: transform 0.25s var(--ease);
  line-height: 1;
}

.faq-item.active .faq-chevron {
  transform: rotate(45deg);
  color: var(--kanha-blue);
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--text-secondary);
  font-size: 0.94rem;
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Bottom Ribbon */
.contact-ribbon-section {
  padding: 0 0 100px;
}

.contact-ribbon-card {
  background: linear-gradient(135deg, var(--navy) 0%, #0a2538 100%);
  border-radius: 24px;
  padding: 56px 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(13, 31, 45, 0.15);
}

.ribbon-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: #ffffff;
  margin: 10px 0 8px;
}

.ribbon-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
}

.ribbon-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.btn-white {
  background: #ffffff;
  color: var(--navy);
  padding: 12px 24px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s var(--ease);
}

.btn-white:hover {
  background: #F0F4F8;
  transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 991px) {
  .contact-hero-premium .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-hero-premium .page-hero-copy {
    max-width: 720px;
  }

  .contact-layout,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hubs-grid {
    grid-template-columns: 1fr;
  }
  .contact-ribbon-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 28px;
  }
  .ribbon-actions {
    flex-direction: column;
    width: 100%;
  }
  .ribbon-actions a {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form-panel {
    padding: 30px 20px;
  }
  .contact-hero-premium {
    padding: 110px 0 60px;
  }

  .contact-hero-premium .page-hero-title {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

  .contact-hero-premium .page-hero-subtitle {
    font-size: 0.98rem;
  }

  .contact-hero-showcase {
    padding: 18px;
  }

  .contact-hero-visual img {
    height: 190px;
  }
}

@media (max-width: 768px) {
  .inner-hero { min-height: 570px; }.inner-hero-content { padding-bottom: 64px; }.about-intro, .about-global, .contact-section { padding: 76px 0; }.about-intro-grid, .about-global-grid, .contact-layout { grid-template-columns: 1fr; gap: 52px; }.about-values { padding: 76px 0; }.about-values-header { display: block; }.about-values-grid { grid-template-columns: 1fr; margin-top: 40px; }.about-value, .about-value + .about-value { padding: 26px 0; border-left: 0; }.contact-form-panel { padding: 30px 24px; }.mission-vision { padding: 76px 0 88px; }.mission-map { padding-top: 100px; }.mission-connections { display: none; }.mission-cards { grid-template-columns: 1fr; gap: 24px; margin-top: 64px; }.mission-card { min-height: 0; }.mission-core { width: 138px; height: 138px; }
}

@media (max-width: 520px) { .contact-form { grid-template-columns: 1fr; }.contact-form > div:nth-child(5), .contact-form > button { grid-column: auto; }.inner-hero h1 { font-size: 3.3rem; }.about-intro-visual { padding-left: 20px; }.about-stat { padding: 16px 18px; } }

/* About page polish */
.about-inner-hero {
  min-height: min(760px, 84vh);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.about-inner-hero .inner-hero-image img {
  object-position: center 42%;
  transform: scale(1.03);
  filter: saturate(.82);
}

.about-inner-hero .inner-hero-overlay {
  background: linear-gradient(90deg, rgba(4, 16, 22, .94) 0%, rgba(4, 16, 22, .68) 43%, rgba(4, 16, 22, .18) 100%), linear-gradient(0deg, rgba(4,16,22,.52), transparent 55%);
}

.about-inner-hero .inner-hero-content {
  padding-bottom: clamp(72px, 10vw, 132px);
}

.about-inner-hero .eyebrow-light {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.about-inner-hero .eyebrow-light::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--kanha-green);
}

.about-inner-hero h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 8vw, 7.6rem);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.about-inner-hero .inner-hero-content p {
  padding-left: 18px;
  border-left: 1px solid rgba(53,173,69,.7);
}

.about-intro {
  position: relative;
  background: #fffdf9;
}

.about-intro::before,
.about-global::before {
  content: 'KGE / 01';
  position: absolute;
  top: 42px;
  right: var(--pad);
  color: rgba(6,19,26,.32);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
}

.about-intro-grid,
.about-global-grid {
  gap: clamp(48px, 8vw, 128px);
}

.about-intro-copy h2,
.about-global-copy h2 {
  max-width: 620px;
  letter-spacing: -.035em;
}

.about-intro-copy p,
.about-global-copy p {
  font-size: 1.02rem;
  line-height: 1.8;
}

.about-intro-visual {
  padding: 0 0 54px 54px;
}

.about-intro-visual::before {
  content: '';
  position: absolute;
  top: -22px;
  left: 16px;
  width: 76px;
  height: 76px;
  border-top: 1px solid var(--kanha-green);
  border-left: 1px solid var(--kanha-green);
}

.about-intro-visual img {
  border-radius: 2px;
  box-shadow: 24px 24px 0 rgba(53,173,69,.12), 0 24px 64px rgba(6,19,26,.18);
  transition: transform .7s var(--ease), box-shadow .7s var(--ease);
}

.about-intro-visual:hover img {
  transform: translate(-5px, -5px);
  box-shadow: 28px 28px 0 rgba(53,173,69,.16), 0 30px 70px rgba(6,19,26,.2);
}

.about-stat {
  left: 12px;
  bottom: 8px;
  border-radius: 2px;
  border-left: 4px solid var(--kanha-green);
}

.mission-vision {
  position: relative;
  background: linear-gradient(135deg, #eef5ed 0%, #fbfaf6 52%, #f7efd9 100%);
}

.mission-heading h2 {
  letter-spacing: -.04em;
}

.mission-heading .eyebrow::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  margin: 16px auto 0;
  background: var(--kanha-green);
}

.mission-card {
  border-radius: 4px;
  backdrop-filter: blur(10px);
}

.about-values {
  position: relative;
  background: linear-gradient(125deg, #06131a 0%, #092b2d 100%);
}

.about-values::after {
  content: '';
  position: absolute;
  top: 0;
  right: 8%;
  width: 1px;
  height: 100%;
  background: linear-gradient(transparent, rgba(53,173,69,.45), transparent);
  opacity: .6;
}

.about-values-header h2 {
  max-width: 620px;
  letter-spacing: -.035em;
}

.about-value {
  min-height: 220px;
  padding-top: 38px;
}

.about-value h3 {
  letter-spacing: -.02em;
}

.about-value p {
  max-width: 300px;
  line-height: 1.75;
}

.about-global {
  position: relative;
  background: #f5f0e7;
}

.about-global-image {
  padding: clamp(20px, 3vw, 42px);
  border-radius: 2px;
  border: 1px solid rgba(6,19,26,.08);
  background: rgba(255,255,255,.6);
}

.about-global-image img {
  opacity: .88;
  transition: transform .8s var(--ease);
}

.about-global-image:hover img { transform: scale(1.035); }

@media (max-width: 1024px) {
  .about-intro-grid,
  .about-global-grid { gap: 56px; }
  .about-inner-hero { min-height: 680px; }
}

@media (max-width: 768px) {
  .about-inner-hero { min-height: 620px; }
  .about-inner-hero h1 { font-size: clamp(3.3rem, 14vw, 5rem); }
  .about-intro::before,
  .about-global::before { display: none; }
  .about-intro-visual { padding: 0 0 42px 28px; }
  .about-intro-visual::before { left: 0; }
  .about-stat { left: 0; bottom: 0; }
  .about-value { min-height: auto; }
  .about-values::after { display: none; }
  .about-global-image { order: 2; }
}

@media (max-width: 520px) {
  .about-inner-hero-content { padding-top: 120px; }
  .about-inner-hero .inner-hero-content p { font-size: 1rem; }
  .about-intro-visual img { box-shadow: 12px 14px 0 rgba(53,173,69,.12), 0 18px 40px rgba(6,19,26,.16); }
  .about-intro-visual:hover img { transform: none; }
}

/* Keep the three company pillars compact and visible together. */
.mission-vision { padding: 82px 0 94px; }
.mission-map { margin-top: 26px; padding-top: 82px; }
.mission-core { width: 132px; height: 132px; padding-top: 18px; }
.mission-connections { top: 62px; height: 300px; }
.mission-cards { grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 78px; }
.mission-card { min-height: 0; padding: 24px 22px 22px; }
.mission-card h3 { font-size: 1.4rem; margin-top: 20px; }
.mission-card p { font-size: .84rem; }
.mission-card ul { gap: 5px; margin-top: 14px; }
.mission-card li { font-size: .76rem; }
.about-values { padding: 82px 0; }
.about-values-grid { margin-top: 42px; }

/* ==========================================================================
   ABOUT PAGE - ULTRA PREMIUM DYNAMIC PROCESS SECTION
   ========================================================================== */
.about-process-clean {
  padding: 110px 0 100px;
  background: linear-gradient(180deg, #FAF7F2 0%, #F5EFE6 50%, #FAF7F2 100%);
  position: relative;
  overflow: hidden;
}

.about-process-clean::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(circle at 50% 15%, rgba(22, 101, 52, 0.06) 0%, transparent 65%);
  pointer-events: none;
}

.about-clean-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--space-8, 32px);
  margin-bottom: 48px;
}

.about-clean-title-wrap .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--kanha-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 12px;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kanha-green);
  display: inline-block;
  box-shadow: 0 0 0 3px rgba(22, 101, 52, 0.2);
  animation: pulseDot 2s infinite ease-in-out;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.about-clean-title-wrap h2 {
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.about-clean-title-wrap h2 em {
  color: var(--kanha-green);
  font-style: normal;
  font-weight: 400;
}

.about-clean-desc-wrap {
  max-width: 480px;
}

.about-clean-lead {
  color: #4B5563;
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 16px 0;
}

.process-quick-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(22, 101, 52, 0.15);
  padding: 4px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.pill-check {
  color: var(--kanha-green);
  font-weight: 800;
  font-style: normal;
}

/* Timeline Track Navigation */
.clean-process-board {
  margin-bottom: 48px;
}

.clean-process-track {
  position: relative;
  margin-bottom: 36px;
  padding: 0 20px;
}

.clean-process-line {
  position: absolute;
  top: 36px;
  left: 8%;
  right: 8%;
  height: 3px;
  background: #E2D9CC;
  border-radius: 4px;
  z-index: 1;
  overflow: hidden;
}

.clean-process-progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #15803d, #16a34a, #22c55e);
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(22, 163, 74, 0.5);
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.clean-process-steps-nav {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.clean-step-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  outline: none;
}

.step-nav-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #6B7280;
  background: #EFE8DC;
  padding: 3px 9px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.step-nav-point {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 3px solid #D1C5B4;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.point-glow {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: transparent;
  transition: all 0.3s ease;
}

.step-nav-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: #4B5563;
  transition: all 0.3s ease;
}

.clean-step-nav:hover .step-nav-point {
  border-color: var(--kanha-green);
  transform: scale(1.18);
  box-shadow: 0 0 10px rgba(22, 101, 52, 0.25);
}

.clean-step-nav:hover .step-nav-title {
  color: var(--navy);
}

.clean-step-nav.active {
  transform: translateY(-2px);
}

.clean-step-nav.active .step-nav-badge {
  color: #FFFFFF;
  background: var(--kanha-green);
  box-shadow: 0 2px 8px rgba(22, 101, 52, 0.3);
}

.clean-step-nav.active .step-nav-point {
  background: var(--kanha-green);
  border-color: #FFFFFF;
  box-shadow: 0 0 0 4px var(--kanha-green), 0 4px 14px rgba(22, 101, 52, 0.4);
  transform: scale(1.25);
}

.clean-step-nav.active .point-glow {
  background: #FFFFFF;
}

.clean-step-nav.active .step-nav-title {
  color: var(--navy);
  font-weight: 700;
}

/* Process Cards Grid */
.clean-process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.clean-proc-card {
  background: #FFFFFF;
  border: 1px solid rgba(226, 217, 204, 0.9);
  border-radius: 18px;
  padding: 32px 26px 26px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(10, 37, 64, 0.04);
}

.clean-card-glow-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: transparent;
  transition: all 0.35s ease;
}

.clean-proc-card:hover {
  transform: translateY(-7px);
  border-color: rgba(22, 101, 52, 0.35);
  box-shadow: 0 16px 36px rgba(10, 37, 64, 0.1);
}

.clean-proc-card:hover .clean-card-glow-bg {
  background: linear-gradient(90deg, var(--kanha-green), #22c55e);
}

.clean-proc-card.active {
  border-color: var(--kanha-green);
  box-shadow: 0 20px 42px rgba(22, 101, 52, 0.15), 0 0 0 1px rgba(22, 101, 52, 0.2);
  transform: translateY(-7px);
}

.clean-proc-card.active .clean-card-glow-bg {
  height: 5px;
  background: linear-gradient(90deg, #15803d, #22c55e);
}

/* Card Header */
.clean-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.clean-card-num-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.clean-card-num {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: #1F2937;
  letter-spacing: -0.02em;
  transition: color 0.3s ease;
}

.clean-card-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #9CA3AF;
  text-transform: uppercase;
}

.clean-proc-card.active .clean-card-num {
  color: var(--kanha-green);
}

.clean-proc-card.active .clean-card-label {
  color: var(--kanha-green);
}

.clean-card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #F4EFE6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.clean-card-icon-wrap svg {
  width: 22px;
  height: 22px;
  transition: transform 0.3s ease;
}

.clean-proc-card:hover .clean-card-icon-wrap,
.clean-proc-card.active .clean-card-icon-wrap {
  background: linear-gradient(135deg, var(--kanha-green), #15803d);
  color: #FFFFFF;
  box-shadow: 0 6px 16px rgba(22, 101, 52, 0.3);
  transform: scale(1.08) rotate(3deg);
}

/* Card Content */
.clean-card-content {
  flex-grow: 1;
  margin-bottom: 20px;
}

.clean-card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 10px 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.clean-card-body {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #4B5563;
  margin: 0 0 16px 0;
}

.clean-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px dashed rgba(226, 217, 204, 0.8);
  padding-top: 14px;
}

.clean-card-features li {
  font-size: 0.82rem;
  color: #374151;
  padding-left: 14px;
  position: relative;
  margin-bottom: 6px;
  line-height: 1.45;
}

.clean-card-features li:last-child {
  margin-bottom: 0;
}

.clean-card-features li::before {
  content: 'â€¢';
  position: absolute;
  left: 0;
  color: var(--kanha-green);
  font-size: 1rem;
  line-height: 1.1;
}

/* Card Footer */
.clean-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #F3EDE3;
}

.clean-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4B5563;
  background: #FAF7F2;
  border: 1px solid #EBE3D7;
  padding: 4px 10px;
  border-radius: 999px;
  transition: all 0.3s ease;
}

.clean-card-indicator {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kanha-green);
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.clean-card-indicator::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kanha-green);
  display: inline-block;
}

.clean-proc-card.active .clean-card-tag {
  background: rgba(22, 101, 52, 0.1);
  border-color: rgba(22, 101, 52, 0.3);
  color: var(--kanha-green);
}

.clean-proc-card.active .clean-card-indicator {
  opacity: 1;
  transform: translateX(0);
}

/* Action Row (Premium Glass Callout) */
.clean-proc-action-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-8, 32px);
  padding: 30px 40px;
  background: #FFFFFF;
  border: 1px solid #E5DDD1;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(10, 37, 64, 0.05);
  position: relative;
}

.clean-action-content {
  display: flex;
  align-items: center;
  gap: 22px;
}

.clean-action-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(22, 101, 52, 0.1);
  color: var(--kanha-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clean-action-icon svg {
  width: 26px;
  height: 26px;
}

.clean-action-text h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  color: var(--navy);
  margin: 0 0 4px 0;
  font-weight: 700;
}

.clean-action-text p {
  color: #6B7280;
  font-size: 0.94rem;
  margin: 0;
}

.btn-cta-glow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(22, 101, 52, 0.25);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-cta-glow:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(22, 101, 52, 0.35);
}

@media (max-width: 1100px) {
  .clean-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .clean-process-line {
    display: none;
  }
  .clean-process-steps-nav {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-process-clean {
    padding: 70px 0;
  }
  .about-clean-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .clean-process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .clean-proc-action-row {
    flex-direction: column;
    text-align: center;
    padding: 24px;
    gap: 20px;
  }
  .clean-action-content {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
  .clean-action-btn-wrap {
    width: 100%;
  }
  .clean-action-btn-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .mission-vision { padding: 64px 0 72px; }
  .mission-map { padding-top: 78px; }
  .mission-cards { grid-template-columns: 1fr; gap: 18px; margin-top: 52px; }
  .mission-core { width: 126px; height: 126px; }
  .about-values { padding: 64px 0; }
}

/* Mission Vision Refresh */
.mission-vision {
  position: relative;
  padding: 96px 0 104px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(53, 173, 69, 0.1), transparent 26%),
    radial-gradient(circle at 88% 18%, rgba(214, 165, 45, 0.12), transparent 24%),
    linear-gradient(180deg, #fbfaf6 0%, #f5f0e7 48%, #fcfbf7 100%);
}

.mission-vision::before,
.mission-vision::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mission-vision::before {
  top: 72px;
  left: -120px;
  width: 300px;
  height: 300px;
  background: rgba(53, 173, 69, 0.08);
  filter: blur(22px);
}

.mission-vision::after {
  right: -150px;
  bottom: -90px;
  width: 340px;
  height: 340px;
  background: rgba(22, 118, 183, 0.08);
  filter: blur(26px);
}

.mission-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.mission-heading {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.mission-heading .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mission-heading .eyebrow::before,
.mission-heading .eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: rgba(53, 173, 69, 0.5);
}

.mission-heading h2 {
  margin-top: 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.mission-heading h2 em {
  color: var(--kanha-green);
  font-style: normal;
  font-weight: 400;
}

.mission-heading p {
  max-width: 620px;
  margin: 18px auto 0;
  color: #55616b;
  font-size: 1.02rem;
  line-height: 1.85;
}

.mission-core-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(220px, 260px) minmax(0, 1.18fr);
  align-items: center;
  gap: 26px;
  padding: 28px 30px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 24px 60px rgba(6, 19, 26, 0.08);
  backdrop-filter: blur(12px);
}

.mission-core-note,
.mission-core-text {
  display: grid;
  gap: 12px;
}

.mission-core-kicker {
  color: var(--kanha-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mission-core-note p,
.mission-core-text p {
  margin: 0;
  max-width: none;
  color: #536355;
  font-size: 0.97rem;
  line-height: 1.8;
}

.mission-core {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 220px;
  height: auto;
  margin: 0;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid rgba(214, 165, 45, 0.5);
  border-radius: 32px;
  background: linear-gradient(180deg, #fffdf8 0%, #f6f1e7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 18px 40px rgba(22, 80, 43, 0.08);
  color: #174b2d;
}

.mission-core::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(53, 173, 69, 0.18);
  border-radius: 24px;
}

.mission-core-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin: 0;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2faf1 0%, #ffffff 100%);
  box-shadow: 0 8px 18px rgba(22, 80, 43, 0.1);
}

.mission-core-icon::before,
.mission-core-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--kanha-green);
  transform: translate(-50%, -50%);
}

.mission-core-icon::before {
  width: 16px;
  height: 2px;
}

.mission-core-icon::after {
  width: 2px;
  height: 16px;
}

.mission-core strong {
  position: relative;
  z-index: 1;
  color: #174b2d;
  font: 600 1.35rem/1.2 var(--font-display);
}

.mission-core small {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #77846f;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.mission-core-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.mission-core-points span {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border: 1px solid rgba(53, 173, 69, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #1d5137;
  font-size: 0.78rem;
  font-weight: 600;
}

.mission-vision .mission-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 0;
}

.mission-vision .mission-card {
  position: relative;
  min-height: 0;
  padding: 30px 28px 28px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 42px rgba(6, 19, 26, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  backdrop-filter: blur(10px);
}

.mission-vision .mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  width: auto;
  height: 3px;
  transform: none;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 173, 69, 0.95), rgba(22, 118, 183, 0.7));
  box-shadow: none;
  animation: none;
}

.mission-vision .mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 173, 69, 0.22);
  box-shadow: 0 24px 54px rgba(6, 19, 26, 0.1);
}

.mission-vision .mission-card-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.mission-vision .mission-number {
  padding: 7px 12px;
  color: #1d5137;
  background: rgba(53, 173, 69, 0.08);
  border: 1px solid rgba(53, 173, 69, 0.16);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mission-vision .mission-card:hover .mission-number {
  transform: none;
  background: rgba(53, 173, 69, 0.12);
}

.mission-card-accent {
  color: #7d6d45;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-vision .mission-card h3 {
  margin: 0 0 12px;
  color: #0d2a1b;
  font: 600 1.6rem/1.2 var(--font-display);
  letter-spacing: -0.03em;
}

.mission-vision .mission-card p {
  max-width: none;
  margin: 0;
  color: #536355;
  font-size: 0.95rem;
  line-height: 1.78;
}

.mission-vision .mission-card ul {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.mission-vision .mission-card li {
  position: relative;
  padding-left: 18px;
  color: #536355;
  font-size: 0.84rem;
  line-height: 1.65;
}

.mission-vision .mission-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kanha-green);
}

.mission-vision .mission-card:hover li {
  transform: translateX(3px);
  color: #1a4c34;
}

@media (max-width: 1100px) {
  .mission-core-panel {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .mission-core-note,
  .mission-core-text {
    justify-items: center;
  }

  .mission-core-points {
    justify-content: center;
  }

  .mission-vision .mission-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .mission-vision {
    padding: 72px 0 78px;
  }

  .mission-shell {
    gap: 22px;
  }

  .mission-heading h2 {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .mission-heading p {
    font-size: 0.96rem;
  }

  .mission-core-panel {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .mission-core {
    min-height: 180px;
    padding: 24px 20px;
    border-radius: 24px;
  }

  .mission-core::before {
    inset: 10px;
    border-radius: 18px;
  }

  .mission-vision .mission-cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mission-vision .mission-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .mission-vision .mission-card::before {
    left: 20px;
    right: 20px;
  }

  .mission-card-accent {
    font-size: 0.7rem;
  }
}

/* Mission Vision Polish v2 */
.mission-vision {
  position: relative;
  padding: 104px 0 110px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(53, 173, 69, 0.12), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(214, 165, 45, 0.14), transparent 22%),
    linear-gradient(180deg, #fbfaf6 0%, #f5f0e7 48%, #fcfbf8 100%);
}

.mission-vision::before,
.mission-vision::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.mission-vision::before {
  top: 80px;
  left: -140px;
  width: 340px;
  height: 340px;
  background: rgba(53, 173, 69, 0.08);
  filter: blur(28px);
}

.mission-vision::after {
  right: -160px;
  bottom: -100px;
  width: 360px;
  height: 360px;
  background: rgba(22, 118, 183, 0.08);
  filter: blur(28px);
}

.mv-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.mv-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 28px;
  align-items: end;
}

.mv-copy {
  max-width: 640px;
}

.mv-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.mv-copy .eyebrow::after {
  content: '';
  width: 42px;
  height: 1px;
  background: rgba(53, 173, 69, 0.45);
}

.mv-copy h2 {
  margin: 20px 0 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.2vw, 4.25rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.mv-copy h2 em {
  color: var(--kanha-green);
  font-style: normal;
  font-weight: 400;
}

.mv-copy p {
  margin: 0;
  max-width: 560px;
  color: #59656e;
  font-size: 1.04rem;
  line-height: 1.82;
}

.mv-trust-card {
  position: relative;
  padding: 28px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
  box-shadow: 0 22px 60px rgba(6, 19, 26, 0.08);
  overflow: hidden;
}

.mv-trust-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(53, 173, 69, 0.08), transparent 36%, transparent 100%);
  pointer-events: none;
}

.mv-trust-head {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.mv-trust-mark {
  position: relative;
  width: 78px;
  height: 78px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f0f8ef 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 14px 28px rgba(22, 80, 43, 0.09);
}

.mv-trust-mark::before,
.mv-trust-mark::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--kanha-green);
  transform: translate(-50%, -50%);
}

.mv-trust-mark::before {
  width: 24px;
  height: 2px;
}

.mv-trust-mark::after {
  width: 2px;
  height: 24px;
}

.mv-trust-copy {
  display: grid;
  gap: 10px;
}

.mv-trust-label {
  color: var(--kanha-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mv-trust-copy strong {
  color: #103223;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.mv-trust-copy p {
  margin: 0;
  color: #5a6570;
  font-size: 0.95rem;
  line-height: 1.75;
}

.mv-trust-tags {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mv-trust-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(53, 173, 69, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: #1c4e36;
  font-size: 0.78rem;
  font-weight: 600;
}

.mv-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.mv-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 30px 28px 28px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 46px rgba(6, 19, 26, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s ease;
  overflow: hidden;
}

.mv-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 173, 69, 0.95), rgba(22, 118, 183, 0.72));
}

.mv-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53, 173, 69, 0.18);
  box-shadow: 0 24px 58px rgba(6, 19, 26, 0.1);
}

.mv-card-top {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.mv-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid rgba(53, 173, 69, 0.14);
  border-radius: 999px;
  background: rgba(53, 173, 69, 0.07);
  color: #1d5137;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mv-card-icon {
  position: relative;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex: 0 0 12px;
}

.mv-card-icon.is-vision {
  background: radial-gradient(circle at 35% 35%, #ffffff 0 24%, var(--kanha-green) 28% 100%);
}

.mv-card-icon.is-mission {
  background: radial-gradient(circle at 35% 35%, #ffffff 0 24%, var(--kanha-blue) 28% 100%);
}

.mv-card-icon.is-values {
  background: radial-gradient(circle at 35% 35%, #ffffff 0 24%, #d6a52d 28% 100%);
}

.mv-card h3 {
  margin: 0;
  color: #0f2f20;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

.mv-card p {
  margin: 0;
  color: #5b666f;
  font-size: 0.96rem;
  line-height: 1.8;
}

.mv-list {
  display: grid;
  gap: 10px;
  margin: 6px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(10, 26, 34, 0.08);
}

.mv-list li {
  position: relative;
  padding-left: 18px;
  color: #55616b;
  font-size: 0.85rem;
  line-height: 1.65;
}

.mv-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kanha-green);
}

@media (max-width: 1100px) {
  .mv-hero {
    grid-template-columns: 1fr;
  }

  .mv-copy {
    max-width: none;
  }

  .mv-trust-card {
    max-width: 760px;
  }

  .mv-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .mission-vision {
    padding: 74px 0 80px;
  }

  .mv-layout {
    gap: 22px;
  }

  .mv-copy h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .mv-copy p {
    font-size: 0.98rem;
  }

  .mv-trust-card {
    padding: 22px 18px;
    border-radius: 24px;
  }

  .mv-trust-head {
    grid-template-columns: 1fr;
  }

  .mv-trust-mark {
    width: 68px;
    height: 68px;
    border-radius: 20px;
  }

  .mv-trust-copy strong {
    font-size: 1.4rem;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .mv-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .mv-card::before {
    left: 20px;
    right: 20px;
  }
}

/* About Values Refresh v2 */
.about-values {
  position: relative;
  padding: 108px 0 112px;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(53, 173, 69, 0.13), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(22, 118, 183, 0.14), transparent 22%),
    linear-gradient(135deg, #06131a 0%, #082329 48%, #0a2c2d 100%);
}

.about-values::before,
.about-values::after {
  content: '';
  position: absolute;
  pointer-events: none;
}

.about-values::before {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  opacity: 0.18;
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0.95) 82%, transparent 100%);
}

.about-values::after {
  top: 50%;
  right: -140px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(53, 173, 69, 0.08);
  filter: blur(28px);
  transform: translateY(-50%);
}

.av-shell {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
}

.av-header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: end;
}

.av-header-copy {
  max-width: 420px;
}

.av-header-copy .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.av-header-copy .eyebrow::after {
  content: '';
  width: 44px;
  height: 1px;
  background: rgba(53, 173, 69, 0.55);
}

.av-header-copy p {
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1rem;
  line-height: 1.82;
}

.av-header-title {
  display: flex;
  justify-content: flex-end;
}

.av-header-title h2 {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.4rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.av-header-title h2 em {
  color: #f0f3ee;
  font-style: normal;
  font-weight: 400;
}

.av-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.av-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 100%;
  padding: 30px 28px 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(16px);
  overflow: hidden;
  transition: transform 0.35s var(--ease), border-color 0.35s ease, box-shadow 0.35s var(--ease);
}

.av-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(53, 173, 69, 0.95), rgba(22, 118, 183, 0.78));
}

.av-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 42%);
  opacity: 0.7;
  pointer-events: none;
}

.av-card:hover {
  transform: translateY(-8px);
  border-color: rgba(53, 173, 69, 0.22);
  box-shadow: 0 28px 64px rgba(0, 0, 0, 0.24);
}

.av-card-top,
.av-card h3,
.av-card p,
.av-list {
  position: relative;
  z-index: 1;
}

.av-card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.av-index {
  color: var(--kanha-green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.av-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.av-card h3 {
  margin: 6px 0 0;
  color: #fff;
  font: 500 1.8rem/1.18 var(--font-display);
  letter-spacing: -0.03em;
}

.av-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.96rem;
  line-height: 1.8;
}

.av-list {
  display: grid;
  gap: 12px;
  margin: 4px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.av-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.84rem;
  line-height: 1.68;
}

.av-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kanha-green);
  box-shadow: 0 0 0 4px rgba(53, 173, 69, 0.12);
}

.av-note {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.av-note-label {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(53, 173, 69, 0.1);
  color: var(--kanha-green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.av-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.75;
}

@media (max-width: 1100px) {
  .av-header {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .av-header-copy {
    max-width: 560px;
  }

  .av-header-title {
    justify-content: flex-start;
  }

  .av-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .about-values {
    padding: 74px 0 80px;
  }

  .av-shell {
    gap: 22px;
  }

  .av-header {
    gap: 20px;
  }

  .av-header-title h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .av-header-copy p {
    margin-top: 18px;
    font-size: 0.96rem;
  }

  .av-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .av-card {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .av-card::before {
    left: 20px;
    right: 20px;
  }

  .av-card-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .av-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 20px 18px;
  }
}

/* About Values Layout v3 */
.av-shell { gap: 40px; }
.av-header { grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr); gap: 72px; align-items: center; }
.av-header-copy { max-width: 360px; }
.av-header-title h2 { max-width: 640px; }
.av-grid { display: grid; grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr); gap: 24px; align-items: stretch; }
.av-stack { display: grid; gap: 24px; }
.av-card { gap: 18px; }
.av-card-top { flex-wrap: wrap; }
.av-card-feature { padding: 38px 36px 34px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.03)); }
.av-card-feature::after { background: radial-gradient(circle at top right, rgba(53, 173, 69, 0.16), transparent 34%), linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 52%); opacity: 1; }
.av-card-feature .av-card-top { align-items: flex-start; }
.av-card-feature .av-index { color: rgba(53, 173, 69, 0.34); font-family: var(--font-display); font-size: clamp(3rem, 4vw, 4.25rem); font-weight: 500; letter-spacing: -0.06em; line-height: 0.88; }
.av-card-feature .av-chip { margin-left: auto; margin-top: 10px; }
.av-card-feature h3 { max-width: 420px; font-size: clamp(2.1rem, 3vw, 2.8rem); }
.av-card-feature p { max-width: 520px; font-size: 1rem; }
.av-card-feature .av-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px 18px; margin-top: 8px; padding-top: 24px; }
.av-card-feature .av-list li { padding: 14px 0 0 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); }
.av-card-feature .av-list li::before { top: 18px; }
.av-card-compact { min-height: 0; padding: 28px 26px 24px; }
.av-card-compact h3 { font-size: 1.45rem; }
.av-card-compact p { font-size: 0.92rem; }
.av-card-compact .av-list { gap: 10px; }
.av-note { align-items: start; margin-top: 4px; padding: 24px 26px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)); }
@media (max-width: 1100px) {
  .av-header { gap: 32px; }
  .av-grid { grid-template-columns: 1fr; }
  .av-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .av-card-feature .av-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 768px) {
  .av-shell { gap: 24px; }
  .av-header { gap: 20px; }
  .av-grid,
  .av-stack { grid-template-columns: 1fr; gap: 18px; }
  .av-card-top { flex-direction: row; align-items: center; }
  .av-card-feature { padding: 28px 22px 22px; }
  .av-card-feature .av-index { font-size: 2.5rem; }
  .av-card-feature .av-chip { margin-left: 0; margin-top: 0; }
  .av-card-feature .av-list { grid-template-columns: 1fr; gap: 12px; padding-top: 18px; }
  .av-card-feature .av-list li { padding-top: 0; border-top: 0; }
  .av-card-feature .av-list li::before { top: 0.72em; }
}

/* About Process Refresh v2 */
.process-refined {
  padding: 108px 0 110px;
  background:
    radial-gradient(circle at 10% 16%, rgba(53, 173, 69, 0.12), transparent 24%),
    radial-gradient(circle at 90% 14%, rgba(22, 118, 183, 0.12), transparent 20%),
    linear-gradient(180deg, #fcfbf7 0%, #f7f1e8 48%, #fcfaf5 100%);
}
.process-refined::before {
  background: radial-gradient(circle at 52% 18%, rgba(22, 101, 52, 0.05) 0%, transparent 60%);
}
.process-refined .about-clean-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.78fr);
  gap: 56px;
  align-items: start;
  margin-bottom: 36px;
}
.process-refined .about-clean-title-wrap h2 {
  max-width: 680px;
  line-height: 0.98;
  letter-spacing: -0.04em;
}
.process-refined .about-clean-desc-wrap {
  max-width: 480px;
  padding-top: 18px;
}
.process-refined .about-clean-lead {
  font-size: 1rem;
  line-height: 1.8;
  color: #59656e;
}
.process-refined .process-quick-pills {
  gap: 10px;
  margin-top: 18px;
}
.process-refined .quick-pill {
  gap: 8px;
  padding: 9px 14px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(10, 26, 34, 0.08);
  box-shadow: 0 10px 20px rgba(10, 37, 64, 0.04);
}
.quick-pill-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kanha-green);
  box-shadow: 0 0 0 4px rgba(53, 173, 69, 0.12);
  flex: 0 0 8px;
}
.clean-process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 28px;
  align-items: start;
}
.clean-process-summary {
  position: relative;
  padding: 36px 32px;
  border-radius: 32px;
  background: linear-gradient(160deg, #0a2330 0%, #081921 100%);
  color: #fff;
  box-shadow: 0 28px 60px rgba(6, 19, 26, 0.18);
  overflow: hidden;
}
.clean-process-summary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(53, 173, 69, 0.18), transparent 36%);
  pointer-events: none;
}
.clean-summary-kicker {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.clean-process-summary h3 {
  position: relative;
  z-index: 1;
  margin: 22px 0 14px;
  color: #fff;
  font: 500 clamp(2rem, 3vw, 2.8rem)/1.04 var(--font-display);
  letter-spacing: -0.04em;
}
.clean-process-summary > p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
  line-height: 1.8;
}
.clean-summary-steps {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  margin-top: 26px;
}
.clean-summary-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.clean-summary-step strong {
  color: var(--kanha-green);
  font: 500 1.15rem/1 var(--font-display);
}
.clean-summary-step span {
  display: block;
  color: #fff;
  font-size: 0.96rem;
  font-weight: 600;
}
.clean-summary-step small {
  display: block;
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.clean-summary-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.clean-summary-foot span {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.74rem;
  font-weight: 600;
}
.process-refined .clean-process-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}
.process-refined .clean-proc-card {
  min-height: 0;
  padding: 30px 28px 26px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.84));
  box-shadow: 0 18px 44px rgba(10, 37, 64, 0.06);
  transform: none;
}
.process-refined .clean-proc-card:hover,
.process-refined .clean-proc-card.active {
  transform: translateY(-6px);
  border-color: rgba(22, 101, 52, 0.18);
  box-shadow: 0 24px 54px rgba(10, 37, 64, 0.1);
}
.process-refined .clean-card-glow-bg {
  height: 3px;
  background: linear-gradient(90deg, rgba(53, 173, 69, 0.9), rgba(22, 118, 183, 0.74));
}
.process-refined .clean-card-header {
  margin-bottom: 20px;
}
.process-refined .clean-card-icon-wrap {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #f4efe6;
}
.process-refined .clean-card-icon-wrap svg {
  width: 21px;
  height: 21px;
}
.process-refined .clean-card-title {
  font-size: 1.58rem;
  font-weight: 600;
  line-height: 1.16;
}
.process-refined .clean-card-body {
  font-size: 0.92rem;
  line-height: 1.75;
  color: #55616b;
}
.process-refined .clean-card-features {
  padding-top: 16px;
  border-top: 1px solid rgba(10, 26, 34, 0.08);
}
.process-refined .clean-card-features li {
  margin: 0 0 10px;
  padding-left: 16px;
  font-size: 0.82rem;
  line-height: 1.58;
  color: #475467;
}
.process-refined .clean-card-features li:last-child {
  margin-bottom: 0;
}
.process-refined .clean-card-features li::before {
  content: "";
  top: 0.62em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kanha-green);
}
.clean-card-meta {
  color: #6b7280;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.process-refined .clean-card-footer {
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(10, 26, 34, 0.08);
}
.process-refined .clean-card-tag {
  padding: 6px 12px;
  background: rgba(53, 173, 69, 0.08);
  border-color: rgba(53, 173, 69, 0.14);
  color: #1c4e36;
}
.process-refined .clean-proc-action-row {
  margin-top: 32px;
  padding: 28px 30px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: 0 18px 48px rgba(10, 37, 64, 0.06);
}
.process-refined .clean-action-content {
  gap: 18px;
}
.clean-action-kicker {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--kanha-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.process-refined .clean-action-text h3 {
  margin-bottom: 6px;
  font-size: 1.55rem;
}
.process-refined .clean-action-text p {
  max-width: 620px;
  color: #6b7280;
}
@media (max-width: 1100px) {
  .process-refined .about-clean-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .process-refined .about-clean-desc-wrap {
    padding-top: 0;
  }
  .clean-process-layout {
    grid-template-columns: 1fr;
  }
  .process-refined .clean-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  .process-refined {
    padding: 76px 0 80px;
  }
  .process-refined .about-clean-heading {
    gap: 18px;
    margin-bottom: 28px;
  }
  .clean-process-summary {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .clean-process-summary h3 {
    font-size: 2rem;
  }
  .process-refined .clean-process-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .process-refined .clean-proc-card {
    padding: 26px 22px 22px;
    border-radius: 22px;
  }
  .process-refined .clean-proc-action-row {
    padding: 24px 20px;
  }
  .process-refined .clean-action-content {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .process-refined .clean-action-btn-wrap {
    width: 100%;
  }
  .process-refined .clean-action-btn-wrap .btn {
    width: 100%;
    justify-content: center;
  }
}

/* About Process Polish v3 */
.process-refined-shell { display: grid; gap: 30px; }
.process-refined .about-clean-heading { margin-bottom: 0; }
.process-refined .about-clean-desc-wrap { max-width: 440px; }
.process-refined-note {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 24px 26px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(10, 37, 64, 0.05);
}
.process-note-copy { max-width: 700px; }
.process-note-label {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(53, 173, 69, 0.08);
  color: var(--kanha-green);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.process-note-copy p {
  margin: 14px 0 0;
  color: #59656e;
  font-size: 0.98rem;
  line-height: 1.8;
}
.process-note-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }
.process-note-tags span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 999px;
  background: #fff;
  color: #1d5137;
  font-size: 0.78rem;
  font-weight: 600;
}
.process-refined-grid { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; gap: 24px !important; }
.process-refined-grid .clean-proc-card {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 30px 28px 24px;
  border-radius: 24px;
}
.process-refined-grid .clean-card-glow-bg { display: none; }
.process-refined-grid .clean-card-header { margin-bottom: 0; }
.clean-card-step {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(53, 173, 69, 0.08);
  color: var(--kanha-green);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.process-refined-grid .clean-card-title { margin: 0; }
.process-refined-grid .clean-card-body { margin: 0; }
.process-refined-grid .clean-card-features { margin: 0; padding-top: 16px; }
.process-refined-grid .clean-card-footer { justify-content: flex-start; }
.process-refined .clean-proc-action-row {
  padding: 24px 28px;
  align-items: center;
}
.process-refined .clean-action-content { display: block; }
.process-refined .clean-action-text { max-width: 680px; }
@media (max-width: 1100px) {
  .process-refined-note { grid-template-columns: 1fr; }
  .process-note-tags { justify-content: flex-start; }
}
@media (max-width: 768px) {
  .process-refined-note { padding: 20px 18px; gap: 16px; border-radius: 20px; }
  .process-refined-grid { grid-template-columns: 1fr !important; gap: 18px !important; }
  .process-refined-grid .clean-proc-card { padding: 24px 20px 20px; border-radius: 20px; }
  .process-refined .clean-proc-action-row { padding: 22px 18px; }
}

/* About Process Orbit v4 */
.process-orbit {
  padding: 110px 0 104px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(53, 173, 69, 0.1), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(22, 118, 183, 0.1), transparent 20%),
    linear-gradient(180deg, #fcfbf7 0%, #f6f0e8 48%, #fcfaf6 100%);
}
.process-orbit::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 20%, rgba(22, 101, 52, 0.05), transparent 55%);
  pointer-events: none;
}
.process-orbit .container { position: relative; z-index: 1; }
.process-orbit-header {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: grid;
  gap: 18px;
}
.process-orbit-eyebrow { justify-content: center; color: var(--kanha-green); font-weight: 700; }
.process-orbit-header h2 {
  margin: 0;
  line-height: 0.98;
  letter-spacing: -0.05em;
  text-wrap: balance;
}
.process-orbit-header h2 em { color: var(--kanha-green); font-style: normal; font-weight: 400; }
.process-orbit-lead {
  max-width: 680px;
  margin: 0 auto;
  color: #59656e;
  font-size: 1rem;
  line-height: 1.82;
}
.process-orbit-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 34px;
  margin-top: 58px;
}
.process-orbit-grid::before {
  content: "";
  position: absolute;
  top: 78px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(22, 118, 183, 0), rgba(22, 118, 183, 0.18) 18%, rgba(22, 118, 183, 0.18) 82%, rgba(22, 118, 183, 0));
  transform: scaleX(0);
  transform-origin: left center;
}
.process-orbit-item { position: relative; text-align: center; }
.process-orbit-node { position: relative; width: 160px; margin: 0 auto 26px; }
.process-orbit-circle {
  position: relative;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #ffffff 0%, #eef4f8 100%);
  border: 1px solid rgba(10, 26, 34, 0.06);
  box-shadow: 0 18px 38px rgba(10, 37, 64, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.process-orbit-circle::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 2px dashed rgba(22, 118, 183, 0.18);
}
.process-orbit-circle::after {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(53, 173, 69, 0.14), rgba(255, 255, 255, 0) 62%);
}
.process-orbit-circle svg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  color: var(--kanha-blue);
}
.process-orbit-item:hover .process-orbit-circle {
  transform: translateY(-6px);
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.12);
}
.process-orbit-grid.reveal.visible::before {
  animation: process-orbit-line 1.1s var(--ease) 0.2s forwards;
}
.process-orbit-grid.reveal.visible .process-orbit-item {
  animation: process-orbit-step 0.75s var(--ease) both;
}
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(1) { animation-delay: 0.35s; }
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(2) { animation-delay: 0.5s; }
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(3) { animation-delay: 0.65s; }
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(4) { animation-delay: 0.8s; }
.process-orbit-grid.reveal.visible .process-orbit-circle::before {
  animation: process-orbit-ring 0.9s var(--ease) both;
}
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(1) .process-orbit-circle::before { animation-delay: 0.35s; }
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(2) .process-orbit-circle::before { animation-delay: 0.5s; }
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(3) .process-orbit-circle::before { animation-delay: 0.65s; }
.process-orbit-grid.reveal.visible .process-orbit-item:nth-child(4) .process-orbit-circle::before { animation-delay: 0.8s; }
@keyframes process-orbit-line {
  to { transform: scaleX(1); }
}
@keyframes process-orbit-step {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes process-orbit-ring {
  from { opacity: 0; transform: scale(0.82); }
  to { opacity: 1; transform: scale(1); }
}
.process-orbit-number {
  position: absolute;
  top: 0;
  right: 4px;
  z-index: 2;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.14);
}
.process-orbit-item h3 {
  margin: 0 0 10px;
  color: var(--navy);
  font: 600 1.5rem/1.18 var(--font-display);
  letter-spacing: -0.03em;
}
.process-orbit-item p {
  max-width: 260px;
  margin: 0 auto 16px;
  color: #5a6570;
  font-size: 0.92rem;
  line-height: 1.78;
}
.process-orbit-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(53, 173, 69, 0.14);
  background: rgba(53, 173, 69, 0.08);
  color: #1d5137;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.process-orbit-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-top: 62px;
  padding-top: 28px;
  border-top: 1px solid rgba(10, 26, 34, 0.08);
}
.process-orbit-footer-copy { max-width: 720px; }
.process-orbit-footer-label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--kanha-blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.process-orbit-footer h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font: 500 1.7rem/1.16 var(--font-display);
  letter-spacing: -0.03em;
}
.process-orbit-footer p {
  margin: 0;
  color: #6b7280;
  font-size: 0.96rem;
  line-height: 1.75;
}
@media (max-width: 1200px) {
  .process-orbit-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); row-gap: 42px; }
  .process-orbit-grid::before { display: none; }
}
@media (max-width: 768px) {
  .process-orbit { padding: 76px 0 82px; }
  .process-orbit-header { gap: 14px; }
  .process-orbit-header h2 { font-size: clamp(2.35rem, 12vw, 3.8rem); }
  .process-orbit-grid { grid-template-columns: 1fr; gap: 34px; margin-top: 44px; }
  .process-orbit-node { width: 144px; }
  .process-orbit-circle { width: 144px; height: 144px; }
  .process-orbit-item p { max-width: 320px; }
  .process-orbit-footer { flex-direction: column; align-items: flex-start; gap: 18px; }
  .process-orbit-footer-action { width: 100%; }
  .process-orbit-footer-action .btn { width: 100%; justify-content: center; }
}

/* About Process Theme v5 */
.process-orbit {
  background:
    radial-gradient(circle at 12% 16%, rgba(53, 173, 69, 0.14), transparent 24%),
    radial-gradient(circle at 88% 14%, rgba(214, 165, 45, 0.12), transparent 22%),
    linear-gradient(180deg, #fcfaf6 0%, #f5efe5 48%, #fbf8f1 100%);
}
.process-orbit::before {
  background:
    radial-gradient(circle at 50% 18%, rgba(6, 19, 26, 0.035), transparent 52%),
    linear-gradient(90deg, rgba(53, 173, 69, 0.025), transparent 28%, transparent 72%, rgba(214, 165, 45, 0.03));
}
.process-orbit-header h2 { color: var(--navy); }
.process-orbit-lead { color: #5b666f; }
.process-orbit-grid::before {
  background: linear-gradient(90deg, rgba(53, 173, 69, 0), rgba(53, 173, 69, 0.2) 18%, rgba(214, 165, 45, 0.18) 82%, rgba(214, 165, 45, 0));
}
.process-orbit-circle {
  background: linear-gradient(180deg, #fffdf8 0%, #f1ebe1 100%);
  border: 1px solid rgba(10, 26, 34, 0.07);
  box-shadow: 0 18px 38px rgba(10, 37, 64, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.82);
}
.process-orbit-circle::before {
  border: 2px dashed rgba(53, 173, 69, 0.22);
}
.process-orbit-circle::after {
  background: radial-gradient(circle at 30% 30%, rgba(53, 173, 69, 0.16), rgba(255, 255, 255, 0) 62%), radial-gradient(circle at 68% 68%, rgba(214, 165, 45, 0.08), rgba(255, 255, 255, 0) 48%);
}
.process-orbit-circle svg { color: var(--kanha-green); }
.process-orbit-item:hover .process-orbit-circle {
  box-shadow: 0 24px 48px rgba(10, 37, 64, 0.12), 0 0 0 8px rgba(53, 173, 69, 0.05);
}
.process-orbit-number {
  background: linear-gradient(135deg, #06131a 0%, #0b2734 100%);
  border: 2px solid rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 24px rgba(10, 37, 64, 0.16);
}
.process-orbit-item h3 { color: var(--navy); }
.process-orbit-item p { color: #5b666f; }
.process-orbit-tag {
  border-color: rgba(53, 173, 69, 0.18);
  background: linear-gradient(180deg, rgba(53, 173, 69, 0.1), rgba(53, 173, 69, 0.05));
  color: #1d5137;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.process-orbit-footer {
  border-top: 1px solid rgba(10, 26, 34, 0.09);
}
.process-orbit-footer-label { color: var(--kanha-green); }
.process-orbit-footer h3 { color: var(--navy); }
.process-orbit-footer p { color: #6b7280; }
.process-orbit-footer-action .btn-primary {
  background: var(--kanha-green);
  border-color: var(--kanha-green);
  box-shadow: 0 10px 24px rgba(53, 173, 69, 0.22);
}
.process-orbit-footer-action .btn-primary:hover {
  background: #2d963b;
  border-color: #2d963b;
  box-shadow: 0 14px 28px rgba(53, 173, 69, 0.28);
}

/* About Global Refresh v2 */
.about-global {
  position: relative;
  padding: 112px 0 118px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(53, 173, 69, 0.1), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(214, 165, 45, 0.12), transparent 20%),
    linear-gradient(180deg, #f9f4ea 0%, #f4ecdf 52%, #fbf8f1 100%);
}
.about-global::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.18) 50%, rgba(255, 255, 255, 0));
  opacity: 0.45;
  pointer-events: none;
}
.about-global-shell { position: relative; z-index: 1; }
.about-global-intro {
  max-width: 720px;
  margin: 0 auto 44px;
  text-align: center;
}
.about-global-intro h2 {
  margin: 18px 0 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.05em;
}
.about-global-intro h2 em { color: var(--kanha-green); font-style: normal; font-weight: 400; }
.about-global-intro p {
  margin: 0 auto;
  max-width: 620px;
  color: #5b666f;
  font-size: 1.02rem;
  line-height: 1.82;
}
.about-global-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 44px;
  align-items: center;
}
.about-global-visual {
  position: relative;
  padding: 0 72px 72px 0;
}
.about-global-frame {
  position: relative;
  padding: 26px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow: 0 24px 60px rgba(10, 37, 64, 0.08);
  backdrop-filter: blur(10px);
}
.about-global-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(53, 173, 69, 0.12);
  border-radius: 24px;
  pointer-events: none;
}
.about-global-frame img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 22px;
  opacity: 1;
  box-shadow: 0 16px 40px rgba(10, 37, 64, 0.1);
  transition: transform 0.7s var(--ease), box-shadow 0.7s var(--ease);
}
.about-global-visual:hover .about-global-frame img {
  transform: scale(1.03);
  box-shadow: 0 22px 52px rgba(10, 37, 64, 0.14);
}
.about-global-card {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(340px, 82%);
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  background: linear-gradient(160deg, #081b23 0%, #0b2734 100%);
  box-shadow: 0 22px 48px rgba(6, 19, 26, 0.22);
  color: #fff;
}
.about-global-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top right, rgba(53, 173, 69, 0.16), transparent 36%);
  pointer-events: none;
}
.about-global-card-label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.about-global-card strong {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 16px;
  color: #fff;
  font: 500 1.5rem/1.24 var(--font-display);
  letter-spacing: -0.03em;
}
.about-global-card p {
  position: relative;
  z-index: 1;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.72;
}
.about-global-copy { display: block; }
.about-global-copy-panel {
  padding: 34px 34px 32px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 20px 50px rgba(10, 37, 64, 0.06);
}
.about-global-copy-panel > p {
  margin: 0;
  max-width: none;
  color: #59656e;
  font-size: 1rem;
  line-height: 1.86;
}
.about-global-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.about-global-stat {
  padding: 20px 18px;
  border: 1px solid rgba(10, 26, 34, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
}
.about-global-stat strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}
.about-global-stat span {
  display: block;
  margin-top: 6px;
  color: #6b7280;
  font-size: 0.82rem;
  line-height: 1.6;
}
.about-global-note {
  display: grid;
  gap: 6px;
  align-items: start;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid rgba(10, 26, 34, 0.1);
}
.about-global-note strong {
  color: var(--kanha-blue);
  font-size: 0.98rem;
  font-weight: 700;
}
.about-global-note span {
  color: #6b7280;
  font-size: 0.88rem;
  line-height: 1.7;
}
@media (max-width: 1100px) {
  .about-global-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .about-global-visual {
    padding: 0 40px 64px 0;
  }
  .about-global-copy-panel {
    padding: 28px 26px 26px;
  }
}
@media (max-width: 768px) {
  .about-global {
    padding: 76px 0 82px;
  }
  .about-global-intro {
    margin-bottom: 30px;
  }
  .about-global-intro h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }
  .about-global-visual {
    padding: 0 0 48px;
  }
  .about-global-frame {
    padding: 18px;
    border-radius: 24px;
  }
  .about-global-frame::before {
    inset: 10px;
    border-radius: 18px;
  }
  .about-global-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
  }
  .about-global-copy-panel {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }
  .about-global-stats {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   ABOUT GLOBAL PRO - PREMIUM WORLD TRADE & LOGISTICS SHOWCASE
   ========================================================================== */
.about-global-pro {
  position: relative;
  padding: 120px 0 130px;
  background: #081720;
  color: #ffffff;
  overflow: hidden;
}

.global-pro-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 22%, rgba(30, 86, 49, 0.22) 0%, transparent 45%),
    radial-gradient(circle at 82% 70%, rgba(13, 110, 163, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, rgba(8, 23, 32, 0.6) 0%, rgba(5, 15, 22, 1) 100%);
  z-index: 0;
}

.about-global-pro .container {
  position: relative;
  z-index: 1;
}

/* Header */
.global-pro-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 64px;
}

.global-pro-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  color: #7ce7a7;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.global-pro-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ce7a7;
  box-shadow: 0 0 10px #7ce7a7;
  animation: beaconPulse 2s infinite ease-in-out;
}

@keyframes beaconPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.global-pro-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  font-weight: 500;
  line-height: 1.06;
  color: #ffffff;
  margin: 0 0 20px;
}

.global-pro-title em {
  color: #7ce7a7;
  font-style: normal;
  font-weight: 400;
}

.global-pro-subtitle {
  font-size: 1.08rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
  max-width: 700px;
  margin: 0 auto;
}

/* Main Grid */
.global-pro-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(28px, 3.5vw, 48px);
  align-items: stretch;
  margin-bottom: 56px;
}

/* Left Card: Capabilities */
.global-pro-card-main {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: clamp(28px, 3.2vw, 44px);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  transition: border-color 0.35s ease, transform 0.35s ease;
}

.global-pro-card-main:hover {
  border-color: rgba(124, 231, 167, 0.3);
  transform: translateY(-2px);
}

.global-card-tag {
  display: inline-block;
  color: #7ce7a7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.global-card-header h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  font-weight: 500;
  line-height: 1.2;
  color: #ffffff;
  margin: 0 0 14px;
}

.global-card-header p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0;
}

.global-pillars {
  display: grid;
  gap: 16px;
  margin: 28px 0;
}

.pillar-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.pillar-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 231, 167, 0.25);
  transform: translateX(4px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 12px;
  background: rgba(30, 86, 49, 0.35);
  border: 1px solid rgba(124, 231, 167, 0.3);
  color: #7ce7a7;
  display: grid;
  place-items: center;
}

.pillar-content strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.pillar-content p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.48;
  margin: 0;
}

.global-terms-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.terms-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.04em;
  margin-right: 4px;
}

.terms-chip {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e5f6ed;
  font-size: 0.75rem;
  font-weight: 600;
}

/* Right: Visual Map Display */
.global-map-display {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(11, 28, 38, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  padding: clamp(24px, 2.6vw, 36px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.global-map-display::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 110, 163, 0.25), transparent 70%);
  pointer-events: none;
}

.map-display-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.map-live-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ce7a7;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.pulse-beacon {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ce7a7;
  box-shadow: 0 0 0 0 rgba(124, 231, 167, 0.7);
  animation: pulseRings 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulseRings {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(124, 231, 167, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(124, 231, 167, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(124, 231, 167, 0);
  }
}

.map-origin-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.74rem;
  font-weight: 600;
}

/* Map Graphic Area */
.map-graphic-holder {
  position: relative;
  background: rgba(6, 17, 24, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  padding: clamp(20px, 3vw, 32px);
  margin-bottom: 24px;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.map-graphic-img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
  filter: contrast(1.08) brightness(1.05);
  opacity: 0.92;
  transition: transform 0.6s var(--ease);
}

.map-graphic-holder:hover .map-graphic-img {
  transform: scale(1.04);
}

/* Floating Pins and Badges */
.route-pin {
  position: absolute;
  top: 52%;
  left: 62%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 3;
}

.pin-ring {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #7ce7a7;
  position: absolute;
  left: 0;
  animation: pingPin 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.pin-core {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #7ce7a7;
  box-shadow: 0 0 10px #7ce7a7;
  position: relative;
  z-index: 2;
}

.pin-label {
  background: #081720;
  border: 1px solid #7ce7a7;
  color: #ffffff;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  margin-left: 10px;
}

@keyframes pingPin {
  75%, 100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.route-badge {
  position: absolute;
  padding: 4px 10px;
  background: rgba(8, 23, 32, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.badge-middle-east {
  top: 36%;
  left: 48%;
}

.badge-europe {
  top: 18%;
  left: 36%;
}

.badge-asia {
  top: 48%;
  right: 12%;
}

.badge-africa {
  bottom: 22%;
  left: 32%;
}

/* Map Footer Metrics */
.map-footer-metrics {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
  position: relative;
  z-index: 2;
}

.map-metric {
  text-align: center;
}

.map-metric strong {
  display: block;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.map-metric span {
  display: block;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.74rem;
  white-space: nowrap;
}

.map-metric-divider {
  width: 1px;
  height: 28px;
  background: rgba(255, 255, 255, 0.12);
}

/* 4-Column Bottom Grid */
.global-highlights-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gh-item {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 20px;
  padding: 24px 22px;
  transition: all 0.35s ease;
  position: relative;
}

.gh-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(124, 231, 167, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

.gh-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: #7ce7a7;
  margin-bottom: 12px;
}

.gh-item h4 {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 8px;
}

.gh-item p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.86rem;
  line-height: 1.55;
  margin: 0;
}

/* Responsive */
@media (max-width: 1100px) {
  .global-pro-grid {
    grid-template-columns: 1fr;
  }

  .global-highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-global-pro {
    padding: 76px 0 84px;
  }

  .global-pro-header {
    margin-bottom: 40px;
  }

  .global-pro-title {
    font-size: clamp(2.2rem, 10vw, 3.4rem);
  }

  .global-pro-card-main {
    padding: 24px 20px;
  }

  .global-map-display {
    padding: 20px 16px;
  }

  .route-badge {
    display: none;
  }

  .map-footer-metrics {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px;
  }

  .map-metric-divider {
    display: none;
  }

  .global-highlights-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ==========================================================================
   PREMIUM PRODUCT DETAIL PAGE
   ========================================================================== */

.product-hero-banner {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 52px) 0 64px;
  background:
    radial-gradient(circle at 88% 20%, rgba(22, 118, 183, 0.22), transparent 32%),
    radial-gradient(circle at 12% 85%, rgba(53, 173, 69, 0.18), transparent 36%),
    linear-gradient(135deg, #05131a 0%, #0a2431 52%, #0d2e25 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.product-hero-banner-inner {
  position: relative;
  z-index: 2;
  max-width: 860px;
}

.product-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(53, 173, 69, 0.15);
  border: 1px solid rgba(53, 173, 69, 0.4);
  border-radius: 999px;
  color: #5ed675;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.12;
  color: #ffffff;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

.product-hero-desc {
  font-size: 1.08rem;
  line-height: 1.68;
  color: rgba(255, 255, 255, 0.78);
  max-width: 680px;
  margin: 0;
}

.product-detail-section {
  padding: 56px 0 88px;
  background: #fbfbf9;
}

.product-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  margin-bottom: 32px;
  color: var(--text-light);
}

.product-breadcrumbs a {
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.2s;
}

.product-breadcrumbs a:hover {
  color: var(--navy);
}

.product-breadcrumbs .crumb-sep {
  color: #cbd5e1;
  font-size: 0.75rem;
}

.product-breadcrumbs .crumb-current {
  color: var(--kanha-green-dark, #2b8b37);
  font-weight: 600;
}

.product-main-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 48px;
  align-items: start;
}

/* Gallery / Media Card */
.product-gallery-card {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  background: #ffffff;
  border-radius: 20px;
  padding: 16px;
  border: 1px solid #e7ecf0;
  box-shadow: 0 16px 40px rgba(10, 36, 49, 0.06);
}

.product-main-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3.4;
  border-radius: 14px;
  overflow: hidden;
  background: #f4f6f8;
}

.product-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-gallery-card:hover .product-main-image-wrap img {
  transform: scale(1.03);
}

.product-image-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(10, 36, 49, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.product-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--kanha-green);
  border-radius: 50%;
}

.product-quick-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #f1f4f6;
}

.trust-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 10px 8px;
  background: #f8fafb;
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
  text-align: center;
}

.trust-pill svg {
  color: var(--kanha-green);
  flex-shrink: 0;
}

/* Product Info Card */
.product-info-card {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.product-info-header {
  border-bottom: 1px solid #e7ecf0;
  padding-bottom: 22px;
}

.product-meta-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.meta-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(22, 118, 183, 0.09);
  color: var(--kanha-blue);
}

.meta-origin {
  background: rgba(53, 173, 69, 0.1);
  color: var(--kanha-green-dark, #237830);
}

.product-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.2;
}

.product-tagline {
  font-size: 1.02rem;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

/* Description Block */
.product-info-block {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #e7ecf0;
  box-shadow: 0 4px 16px rgba(10, 36, 49, 0.03);
}

.product-info-block h3 {
  font-size: 1.12rem;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-description-text {
  font-size: 0.96rem;
  line-height: 1.7;
  color: #4b5563;
  margin: 0;
}

/* Specs Matrix */
.spec-matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.spec-cell {
  background: #f9fbfb;
  border: 1px solid #eef2f4;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.spec-cell-label {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-light);
  font-weight: 600;
}

.spec-cell-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.35;
}

/* Highlights List */
.highlights-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.highlights-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: #374151;
  line-height: 1.45;
}

.highlights-list li svg {
  color: var(--kanha-green);
  flex-shrink: 0;
  margin-top: 3px;
}

/* CTA Card */
.product-cta-card {
  background: linear-gradient(135deg, #0a2431 0%, #0d2e25 100%);
  border-radius: 18px;
  padding: 26px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(10, 36, 49, 0.18);
}

.product-cta-text h4 {
  font-size: 1.24rem;
  margin: 0 0 6px;
  color: #ffffff;
}

.product-cta-text p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.76);
  margin: 0;
}

.product-cta-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.product-cta-actions .btn {
  white-space: nowrap;
}

/* Assurance / Trust Section */
.product-assurance-section {
  padding: 72px 0 80px;
  background: #ffffff;
  border-top: 1px solid #eef2f5;
  border-bottom: 1px solid #eef2f5;
}

.section-head-center {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 44px;
}

.section-head-center .eyebrow {
  justify-content: center;
  margin-bottom: 8px;
}

.section-head-center h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  color: var(--navy);
  margin: 0 0 10px;
}

.section-head-center p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

.assurance-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.assurance-item-card {
  background: #fbfcfc;
  border: 1px solid #e8edf0;
  border-radius: 16px;
  padding: 26px 22px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.assurance-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 36, 49, 0.07);
  border-color: rgba(53, 173, 69, 0.35);
}

.assurance-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(53, 173, 69, 0.12);
  color: var(--kanha-green-dark, #237830);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.assurance-item-card h4 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0 0 8px;
  font-weight: 600;
}

.assurance-item-card p {
  font-size: 0.86rem;
  line-height: 1.55;
  color: #64748b;
  margin: 0;
}

/* Related Products Section */
.related-products-section {
  padding: 76px 0 92px;
  background: #f7fafc;
}

.related-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e9ec;
  box-shadow: 0 6px 20px rgba(10, 36, 49, 0.04);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(10, 36, 49, 0.1);
}

.related-card-img-wrap {
  position: relative;
  width: 100%;
  height: 190px;
  background: #eef2f5;
  overflow: hidden;
}

.related-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover .related-card-img-wrap img {
  transform: scale(1.06);
}

.related-card-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(10, 36, 49, 0.85);
  backdrop-filter: blur(6px);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.related-card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.related-card-origin {
  font-size: 0.78rem;
  color: var(--kanha-blue);
  font-weight: 600;
  margin-bottom: 6px;
}

.related-card-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 8px;
  line-height: 1.3;
}

.related-card-desc {
  font-size: 0.86rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid #f1f4f7;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--kanha-green-dark, #237830);
}

/* ============================================================
   PRODUCT DETAIL PAGE — PREMIUM REDESIGN
   ============================================================ */

.product-detail-body {
  background-color: #f8fafc;
  color: #1e293b;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* --- Hero Banner Above Product --- */
.detail-hero-banner {
  background: linear-gradient(135deg, #070e1e 0%, #0d1b2a 60%, #152238 100%);
  color: #ffffff;
  padding: 56px 0 48px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.detail-hero-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.detail-hero-banner::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.detail-banner-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.detail-banner-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #f1e2ad;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.detail-banner-badge .pulse-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
  display: inline-block;
}

.detail-banner-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  margin: 0 0 12px;
}

.detail-banner-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 20px;
  max-width: 650px;
}

.detail-breadcrumb-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.detail-breadcrumb-bar a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s ease;
}

.detail-breadcrumb-bar a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.detail-breadcrumb-bar .sep {
  color: rgba(255, 255, 255, 0.4);
}

.detail-breadcrumb-bar .current {
  color: #ffffff;
  font-weight: 600;
}

/* --- Main Product Detail Showcase Section --- */
.detail-main-section {
  padding: 44px 0 60px;
  background: #f8fafc;
}

.detail-layout-card {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.06);
  padding: 36px;
  display: grid;
  grid-template-columns: 460px 1fr;
  gap: 44px;
  align-items: start;
  margin-bottom: 48px;
}

/* Gallery Column (Left) */
.detail-gallery-column {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 90px;
}

.detail-main-image-wrap {
  width: 100%;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.detail-main-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.detail-main-image-wrap:hover img {
  transform: scale(1.04);
}

.detail-image-overlay-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(7, 14, 30, 0.88);
  backdrop-filter: blur(8px);
  color: #f1e2ad;
  border: 1px solid rgba(212, 175, 55, 0.4);
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.detail-image-overlay-badge svg {
  stroke: #d4af37;
}

.detail-image-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.detail-image-perks .perk-item {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #334155;
}

.detail-image-perks .perk-item svg {
  stroke: #15803d;
}

/* Info Column (Right) */
.detail-info-column {
  display: flex;
  flex-direction: column;
}

.detail-meta-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.detail-cat-badge {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: capitalize;
}

.detail-origin-badge {
  background: #eff6ff;
  color: #1e40af;
  border: 1px solid #bfdbfe;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.detail-supply-badge {
  background: #fefce8;
  color: #854d0e;
  border: 1px solid #fef08a;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.detail-product-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin: 0 0 14px;
}

.detail-product-description {
  color: #475569;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 24px;
}

/* Specs Table Box */
.detail-specs-table-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.specs-table-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.specs-table-title::before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 16px;
  background: #d4af37;
  border-radius: 2px;
}

.specs-grid-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.spec-cell {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 14px;
}

.spec-cell.spec-cell-span2 {
  grid-column: span 2;
}

.spec-cell-label {
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 4px;
  letter-spacing: 0.03em;
}

.spec-cell-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.4;
}

/* Action buttons */
.detail-action-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.detail-quote-btn {
  background: #2563eb;
  color: #ffffff !important;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 14px rgba(37, 99, 235, 0.25);
  border: none;
}

.detail-quote-btn:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.35);
}

.detail-wa-btn {
  background: #f0fdf4;
  color: #15803d !important;
  border: 1px solid #86efac;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 22px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.detail-wa-btn:hover {
  background: #22c55e;
  color: #ffffff !important;
  border-color: #22c55e;
}

.detail-wa-btn svg {
  stroke: currentColor;
}

.detail-quote-note {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* --- Section Headers --- */
.detail-section-header {
  margin-bottom: 28px;
}

.detail-section-header .section-tag {
  color: #b45309;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 4px;
}

.detail-section-header h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.detail-section-header p {
  color: #64748b;
  font-size: 0.98rem;
  margin: 0;
}

/* --- Trade Assurance Section --- */
.trade-assurance-section {
  margin-bottom: 54px;
}

.assurance-boxes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.assurance-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 20px;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.assurance-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

.assurance-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(212, 175, 55, 0.12);
  color: #b45309;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.assurance-icon-circle svg {
  stroke: #b45309;
}

.assurance-box h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}

.assurance-box p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* --- Export Workflow Section --- */
.export-workflow-section {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 8px 26px rgba(15, 23, 42, 0.04);
  margin-bottom: 54px;
}

.workflow-steps-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.workflow-step {
  position: relative;
}

.workflow-step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0f172a;
  color: #d4af37;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.workflow-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 6px;
}

.workflow-step p {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* --- Related Showcase Section --- */
.related-showcase-section {
  margin-bottom: 24px;
}

.related-section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}

.related-view-all-link {
  color: #2563eb;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.related-view-all-link:hover {
  color: #1d4ed8;
  text-decoration: underline;
}

.related-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.related-item-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.related-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.09);
  border-color: #cbd5e1;
}

.related-thumb-holder {
  width: 100%;
  height: 170px;
  overflow: hidden;
  background: #f1f5f9;
}

.related-thumb-holder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-item-card:hover .related-thumb-holder img {
  transform: scale(1.06);
}

.related-item-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.related-item-category {
  font-size: 0.75rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.related-item-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 10px;
  line-height: 1.35;
}

.related-item-footer {
  margin-top: auto;
  font-size: 0.85rem;
  font-weight: 600;
  color: #2563eb;
  display: flex;
  align-items: center;
  gap: 4px;
}

.related-item-footer svg {
  transition: transform 0.2s ease;
}

.related-item-card:hover .related-item-footer svg {
  transform: translateX(4px);
}

/* Responsive detail adjustments */
@media (max-width: 1024px) {
  .detail-layout-card {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .detail-gallery-column {
    position: static;
  }

  .detail-main-image-wrap {
    height: 360px;
  }

  .assurance-boxes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workflow-steps-timeline {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .related-items-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .detail-hero-banner {
    padding: 40px 0 32px;
  }

  .detail-layout-card {
    padding: 20px;
  }

  .detail-main-image-wrap {
    height: 280px;
  }

  .specs-grid-layout {
    grid-template-columns: 1fr;
  }

  .spec-cell.spec-cell-span2 {
    grid-column: span 1;
  }

  .assurance-boxes-grid {
    grid-template-columns: 1fr;
  }

  .workflow-steps-timeline {
    grid-template-columns: 1fr;
  }

  .related-items-grid {
    grid-template-columns: 1fr;
  }

  .detail-action-buttons {
    flex-direction: column;
  }

  .detail-quote-btn, .detail-wa-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   HOMEPAGE REFERENCE LAYOUT ALIGNMENT STYLES
   ========================================================================== */

/* Section: 360 Partner Feature Pillars */
.pillars-section {
  padding: 80px 0 70px;
  background: #f8fafc;
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 36px 30px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px -4px rgba(6, 19, 26, 0.04);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--kanha-blue), var(--kanha-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: #cbd5e1;
  box-shadow: 0 16px 36px -6px rgba(22, 118, 183, 0.12);
}

.pillar-card:hover::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(22, 118, 183, 0.08);
  color: var(--kanha-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
  background: var(--kanha-blue);
  color: #ffffff;
  transform: scale(1.05);
}

.pillar-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.pillar-desc {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--kanha-blue);
  text-decoration: none;
  transition: gap 0.25s ease, color 0.25s ease;
  margin-top: auto;
}

.pillar-link:hover {
  gap: 12px;
  color: #0d5a8f;
}

/* Section: Split About Story */
.story-section {
  padding: 90px 0;
  background: #ffffff;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.story-visual-wrap {
  position: relative;
}

.story-main-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 45px -10px rgba(6, 19, 26, 0.12);
  border: 1px solid #e2e8f0;
}

.story-badge-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px -4px rgba(6, 19, 26, 0.14);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.story-badge-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(53, 173, 69, 0.1);
  color: var(--kanha-green);
  display: flex;
  align-items: center;
  justify-content: center;
}

.story-badge-text strong {
  display: block;
  font-size: 1rem;
  color: #0f172a;
  font-weight: 700;
}

.story-badge-text span {
  font-size: 0.82rem;
  color: #64748b;
}

.story-content h2 {
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  color: #081d28;
  line-height: 1.25;
  margin: 12px 0 20px;
}

.story-lead {
  font-size: 1.05rem;
  color: #334155;
  line-height: 1.7;
  margin-bottom: 16px;
}

.story-body {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 28px;
}

.story-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin-bottom: 32px;
}

.story-point {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #1e293b;
}

.story-point-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--kanha-blue);
  flex-shrink: 0;
}

/* Section: Trust & Executive B2B Advantages Bento */
.trust-section {
  padding: 95px 0 105px;
  background: radial-gradient(circle at 50% 10%, #ffffff 0%, #f8fafc 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
}

.trust-section .section-header {
  margin-bottom: 50px;
}

.trust-badge-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  color: #0284c7;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.trust-badge-kicker-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #0284c7;
}

.trust-bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.trust-bento-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.02);
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.trust-bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.trust-bento-card:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 20px 40px -8px rgba(2, 132, 199, 0.12), 0 8px 16px -4px rgba(15, 23, 42, 0.04);
}

.trust-bento-card:hover::before {
  background: linear-gradient(90deg, #0284c7, #16a34a);
}

.trust-card-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}

.trust-icon-bubble {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.trust-bento-card:hover .trust-icon-bubble {
  transform: scale(1.08);
}

.bubble-blue { background: #e0f2fe; color: #0284c7; }
.bubble-green { background: #dcfce7; color: #16a34a; }
.bubble-amber { background: #fef3c7; color: #d97706; }
.bubble-purple { background: #ede9fe; color: #7c3aed; }

.trust-metric-pill {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 8px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.trust-bento-card h3 {
  font-size: 1.35rem;
  font-weight: 700;
  color: #091a24;
  letter-spacing: -0.015em;
  margin-bottom: 12px;
  line-height: 1.3;
}

.trust-bento-card p {
  font-size: 0.94rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 24px;
}

.trust-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.trust-pill {
  font-size: 0.74rem;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 5px 12px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.trust-pill::before {
  content: '✓';
  color: #16a34a;
  font-weight: 700;
  font-size: 0.7rem;
}

/* Live Export Credentials Footer Bar */
.trust-credentials-bar {
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
}

.trust-cred-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #091a24;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.trust-cred-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.cred-badge-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  color: #475569;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  padding: 6px 14px;
  border-radius: 8px;
}

.cred-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #16a34a;
}

@media (max-width: 900px) {
  .trust-bento-grid {
    grid-template-columns: 1fr;
  }
  .trust-credentials-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Section: Certifications Showcase Grid */
.certs-section {
  padding: 85px 0;
  background: #ffffff;
}

.certs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
}

.cert-doc-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 12px -2px rgba(6, 19, 26, 0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

.cert-doc-card:hover {
  transform: translateY(-5px);
  border-color: var(--kanha-blue);
  box-shadow: 0 14px 30px -4px rgba(22, 118, 183, 0.12);
}

.cert-preview-frame {
  width: 100%;
  height: 180px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.cert-preview-frame svg {
  color: var(--kanha-blue);
  opacity: 0.85;
}

.cert-preview-watermark {
  font-size: 1.1rem;
  font-weight: 800;
  color: #94a3b8;
  letter-spacing: 0.05em;
  user-select: none;
  margin-top: 8px;
}

.cert-doc-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 4px;
}

.cert-doc-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.cert-doc-org {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.4;
  margin-bottom: 12px;
}

.cert-doc-status {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--kanha-blue);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
}

.cert-doc-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
}

/* Section: Markets We Serve (Dark Navy) */
.markets-section {
  padding: 90px 0;
  background: var(--navy);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.markets-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.markets-content .eyebrow {
  color: #38bdf8;
}

.markets-content h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  font-weight: 800;
  line-height: 1.25;
  margin: 10px 0 18px;
}

.markets-desc {
  font-size: 1rem;
  color: #94a3b8;
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 580px;
}

.country-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}

.country-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f1f5f9;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.country-pill:hover {
  background: rgba(22, 118, 183, 0.35);
  border-color: #38bdf8;
  transform: translateY(-2px);
}

.markets-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.market-stat-item strong {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.market-stat-item span {
  font-size: 0.8rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.markets-visual-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  text-align: center;
  backdrop-filter: blur(8px);
}

.markets-map-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  opacity: 0.92;
  filter: contrast(1.05);
}

/* ==========================================================================
   Horizontal Linear Process Timeline (All 6 in 1 Single Line)
   ========================================================================== */
.process-timeline-section {
  padding: 95px 0 85px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f8fafc 100%);
  position: relative;
  overflow: hidden;
}

.timeline-process-container {
  margin-top: 56px;
  position: relative;
  width: 100%;
}

/* Continuous Horizontal Connecting Timeline Line */
.timeline-track-line {
  position: absolute;
  top: 24px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: linear-gradient(90deg, #38bdf8 0%, #1676b7 50%, #22c55e 100%);
  z-index: 1;
  border-radius: 2px;
}

.timeline-steps-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  position: relative;
  z-index: 2;
}

.timeline-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

/* Glowing Step Marker */
.timeline-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 3px solid #1676b7;
  color: #1676b7;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(22, 118, 183, 0.22);
  position: relative;
  z-index: 3;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step-item:hover .timeline-marker {
  background: #1676b7;
  color: #ffffff;
  transform: scale(1.15);
  box-shadow: 0 8px 24px rgba(22, 118, 183, 0.4);
}

.timeline-step-item.highlight .timeline-marker {
  border-color: #22c55e;
  color: #22c55e;
  box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}
.timeline-step-item.highlight:hover .timeline-marker {
  background: #22c55e;
  color: #ffffff;
}

/* Timeline Card Below */
.timeline-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 20px 12px 18px;
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 4px 16px rgba(6, 19, 26, 0.04);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.timeline-card::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 13px;
  height: 13px;
  background: #ffffff;
  border-left: 1px solid #e2e8f0;
  border-top: 1px solid #e2e8f0;
  transition: border-color 0.3s;
}

.timeline-step-item:hover .timeline-card {
  transform: translateY(-4px);
  border-color: #38bdf8;
  box-shadow: 0 12px 28px rgba(22, 118, 183, 0.12);
}

.timeline-step-item:hover .timeline-card::before {
  border-color: #38bdf8;
}

.timeline-phase-tag {
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kanha-blue);
  background: rgba(22, 118, 183, 0.08);
  padding: 3px 8px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.timeline-text {
  font-size: 0.77rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Process Footer Strip */
.process-footer-strip {
  margin-top: 48px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(6, 19, 26, 0.03);
}

.process-footer-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #475569;
}

.process-footer-item i {
  color: var(--kanha-blue);
  font-size: 1.1rem;
}

.process-footer-item strong {
  color: #0f172a;
}

/* Tablet & Mobile Responsive */
@media (max-width: 1024px) {
  .timeline-process-container {
    overflow-x: auto;
    padding-bottom: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .timeline-steps-track {
    min-width: 860px;
  }
  .timeline-track-line {
    min-width: 800px;
  }
}

@media (max-width: 768px) {
  .timeline-track-line {
    display: none;
  }
  .timeline-steps-track {
    min-width: 0;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .timeline-step-item {
    flex-direction: row;
    text-align: left;
    gap: 16px;
  }
  .timeline-marker {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  .timeline-card {
    align-items: flex-start;
  }
  .timeline-card::before {
    display: none;
  }
}

/* Pre-Footer CTA High Impact Box */
.cta-box-section {
  padding: 60px 0 80px;
  background: #f8fafc;
}

.cta-box-card {
  background: linear-gradient(135deg, #081d28 0%, #0d3852 60%, #1676b7 100%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  box-shadow: 0 24px 50px -10px rgba(8, 29, 40, 0.35);
  position: relative;
  overflow: hidden;
}

.cta-box-card h2 {
  color: #ffffff;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 14px;
}

.cta-box-desc {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto 32px;
}

.cta-box-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 640px) {
  .cta-box-card {
    padding: 36px 20px;
    border-radius: 20px;
  }
  .cta-box-card h2 {
    font-size: 1.85rem;
  }
  .cta-box-desc {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  .cta-box-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-box-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .process-footer-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .pillars-grid {
    grid-template-columns: 1fr;
  }

  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .story-main-img {
    height: 380px;
  }

  .story-badge-card {
    right: 10px;
    bottom: -15px;
  }

  .certs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .markets-grid {
    grid-template-columns: 1fr;
  }

  .process-grid-clean {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid-clean::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .certs-grid {
    grid-template-columns: 1fr;
  }

  .markets-stats-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .process-grid-clean {
    grid-template-columns: 1fr;
  }

  .cta-box-card {
    padding: 36px 20px;
  }

  .story-points {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CLIENT FINAL CONTENT — ENHANCED UNIFORM STYLES
   ========================================================================== */

/* Core Products Grid */
.core-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.core-product-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(6, 19, 26, 0.04);
}

.core-product-card:hover {
  transform: translateY(-6px);
  border-color: #38bdf8;
  box-shadow: 0 16px 36px -6px rgba(22, 118, 183, 0.14);
}

.core-prod-img-wrap {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #0f172a;
}

.core-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.core-product-card:hover .core-prod-img-wrap img {
  transform: scale(1.06);
}

.core-prod-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(6, 19, 26, 0.75);
  backdrop-filter: blur(8px);
  color: #7dd3fc;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.core-prod-body {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.core-prod-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.core-prod-items {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.55;
  margin-bottom: 18px;
  flex-grow: 1;
}

.core-prod-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--kanha-blue);
  text-decoration: none;
  transition: gap 0.2s ease;
  margin-top: auto;
}

.core-prod-link:hover {
  gap: 10px;
  color: #0c4a6e;
}

/* Built for International Buyers - 6 Grid (All boxes in 1 line on desktop) */
.buyers-5-grid,
.buyers-6-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.buyer-pillar-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 24px 16px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
}

.buyer-pillar-card:hover {
  transform: translateY(-5px);
  border-color: var(--kanha-blue);
  box-shadow: 0 12px 28px -4px rgba(22, 118, 183, 0.12);
}

.buyer-pillar-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22, 118, 183, 0.08);
  color: var(--kanha-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.buyer-pillar-card:hover .buyer-pillar-icon {
  background: var(--kanha-blue);
  color: #ffffff;
  transform: scale(1.05);
}

.buyer-pillar-card h3 {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
  line-height: 1.3;
}

.buyer-pillar-card p {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Quality & Compliance Home Split Section */
/* ==========================================================================
   Quality & Compliance: Dark Premium Section
   ========================================================================== */
.qc-dark-section {
  padding: 100px 0 105px;
  background: linear-gradient(135deg, #071924 0%, #0b2536 50%, #0d3852 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.qc-dark-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 118, 183, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.qc-dark-section .trust-badge-kicker {
  background: rgba(56, 189, 248, 0.12);
  border: 1px solid rgba(56, 189, 248, 0.3);
  color: #7dd3fc;
}

.qc-dark-section .trust-badge-kicker-dot {
  background: #38bdf8;
  box-shadow: 0 0 10px #38bdf8;
}

.qc-split-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.qc-features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0 32px;
}

.qc-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: #f1f5f9;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.qc-feature-item:hover {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.4);
  transform: translateY(-2px);
  color: #ffffff;
}

.qc-feature-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px #22c55e;
  flex-shrink: 0;
}

.fda-callout-card {
  background: linear-gradient(135deg, rgba(22, 118, 183, 0.25) 0%, rgba(14, 56, 82, 0.7) 100%);
  border: 1px solid rgba(56, 189, 248, 0.35);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.fda-icon-shield {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: #1676b7;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(22, 118, 183, 0.4);
}

.fda-callout-text strong {
  display: block;
  font-size: 1.08rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4px;
}

.fda-callout-text p {
  font-size: 0.86rem;
  color: #bae6fd;
  line-height: 1.5;
  margin: 0;
}

.qc-image-wrap {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 24px 50px -10px rgba(0, 0, 0, 0.5);
}

.qc-image-wrap img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.qc-image-wrap:hover img {
  transform: scale(1.05);
}

.qc-cta-btn {
  background: #ffffff;
  color: #081d28;
  border-color: #ffffff;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.qc-cta-btn:hover {
  background: #38bdf8;
  color: #081d28;
  border-color: #38bdf8;
  box-shadow: 0 12px 30px rgba(56, 189, 248, 0.4);
}

/* Private Label & Custom Packing Section */
.pl-showcase-section {
  padding: 85px 0;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.pl-showcase-card {
  background: linear-gradient(135deg, #091f2d 0%, #0e374f 60%, #1676B7 100%);
  border-radius: 24px;
  padding: 56px 48px;
  color: #ffffff;
  box-shadow: 0 20px 45px -10px rgba(6, 19, 26, 0.25);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pl-options-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pl-option-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: #f1f5f9;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pl-option-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #38bdf8;
}

/* ==========================================================================
   Who We Serve: Interactive Commercial Sector Studio (Zero-Box Architecture)
   ========================================================================== */
.who-we-serve-hub-section {
  padding: 95px 0 90px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 60%, #f8fafc 100%);
  position: relative;
}

.sector-hub-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 32px;
  margin-top: 48px;
  align-items: stretch;
}

/* Left: Continuous Seamless Stream List */
.sector-stream-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  height: 100%;
}

.sector-stream-item {
  width: 100%;
  flex: 1;
  min-height: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 18px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  font-family: inherit;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.02);
}

.sector-stream-item:hover {
  background: #f8fafc;
  border-color: #93c5fd;
  transform: translateX(4px);
}

.sector-stream-item.active {
  background: linear-gradient(135deg, #081d28 0%, #0f344c 60%, #1676b7 100%);
  border-color: transparent;
  color: #ffffff;
  box-shadow: 0 12px 28px -6px rgba(22, 118, 183, 0.32);
  transform: translateX(6px);
}

.stream-item-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #f1f5f9;
  flex-shrink: 0;
  transition: all 0.3s;
}

.stream-num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 800;
  color: #64748b;
  transition: color 0.3s;
}

.sector-stream-item:hover .stream-item-indicator {
  background: #e0f2fe;
}
.sector-stream-item:hover .stream-num {
  color: #0284c7;
}

.sector-stream-item.active .stream-item-indicator {
  background: rgba(56, 189, 248, 0.2);
}
.sector-stream-item.active .stream-num {
  color: #38bdf8;
}

.stream-item-text {
  flex: 1;
}

.stream-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 2px;
  line-height: 1.25;
  transition: color 0.3s;
}

.sector-stream-item.active .stream-title {
  color: #ffffff;
}

.stream-sub {
  font-size: 0.77rem;
  color: #64748b;
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s;
}

.sector-stream-item.active .stream-sub {
  color: rgba(255, 255, 255, 0.78);
}

.stream-item-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid #e2e8f0;
}

.sector-stream-item:hover .stream-item-arrow {
  background: #e0f2fe;
  color: #0284c7;
  border-color: #bae6fd;
  transform: translateX(2px);
}

.sector-stream-item.active .stream-item-arrow {
  background: #38bdf8;
  color: #081d28;
  border-color: #38bdf8;
  transform: translateX(3px);
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.35);
}

/* Right: Cinematic Showcase Stage */
.sector-stage-showcase {
  height: 100%;
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 40px -8px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
}

.stage-media-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  overflow: hidden;
  background: #0b2536;
  flex-shrink: 0;
}

.stage-media-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.stage-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 19, 26, 0.1) 0%, rgba(6, 19, 26, 0.85) 100%);
}

.stage-floating-header {
  position: absolute;
  bottom: 16px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 2;
}

.stage-badge-pill {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  background: rgba(22, 118, 183, 0.9);
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stage-origin-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #a7f3d0;
  background: rgba(6, 19, 26, 0.75);
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid rgba(167, 243, 208, 0.3);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.stage-body {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: space-between;
}

.stage-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 8px;
  line-height: 1.25;
}

.stage-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.6;
  margin: 0 0 16px;
}

.stage-features-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 20px;
}

.stage-feat-label {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--kanha-blue);
  margin-bottom: 8px;
}

.stage-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.stage-features-list li {
  font-size: 0.83rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.stage-features-list li i {
  color: #16a34a;
  font-size: 0.88rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.stage-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 991px) {
  .sector-hub-wrapper {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .sector-stream-item {
    min-height: 72px;
    padding: 14px 18px;
  }
}

/* ==========================================================================
   Target Markets: USA & European Regulatory & Sourcing Hubs
   ========================================================================== */
.target-markets-section {
  padding: 95px 0 90px;
  background: #f8fafc;
  position: relative;
}

.market-reg-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.market-reg-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 10px 30px -5px rgba(6, 19, 26, 0.05);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.market-reg-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px -8px rgba(22, 118, 183, 0.16);
}

.market-reg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
}

.market-card-us::before {
  background: linear-gradient(90deg, #1676b7 0%, #38bdf8 100%);
}

.market-card-us:hover {
  border-color: #38bdf8;
}

.market-card-eu::before {
  background: linear-gradient(90deg, #15803d 0%, #22c55e 100%);
}

.market-card-eu:hover {
  border-color: #22c55e;
}

.market-reg-flag-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.market-flag-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.market-card-us .market-flag-tag {
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
}

.market-card-eu .market-flag-tag {
  background: #f0fdf4;
  color: #15803d;
  border: 1px solid #bbf7d0;
}

.market-reg-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 100px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #475569;
}

.market-card-us .market-reg-badge i {
  color: var(--kanha-blue);
}

.market-card-eu .market-reg-badge i {
  color: #16a34a;
}

.market-card-title {
  font-size: 1.32rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
  line-height: 1.3;
}

.market-card-desc {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.65;
  margin-bottom: 22px;
}

.market-features-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 24px;
  flex: 1;
}

.market-features-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #334155;
  margin-bottom: 10px;
}

.market-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.market-features-list li {
  font-size: 0.83rem;
  font-weight: 600;
  color: #334155;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.market-card-us .market-features-list li i {
  color: var(--kanha-blue);
  font-size: 0.88rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.market-card-eu .market-features-list li i {
  color: #16a34a;
  font-size: 0.88rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.market-cta-btn {
  width: 100%;
  justify-content: center;
  padding: 13px 20px;
  font-size: 0.9rem;
  border-radius: 12px;
  margin-top: auto;
}

.market-cta-btn.eu-btn {
  background: linear-gradient(135deg, #15803d 0%, #16a34a 100%);
  border-color: #15803d;
}

.market-cta-btn.eu-btn:hover {
  background: linear-gradient(135deg, #166534 0%, #15803d 100%);
  box-shadow: 0 8px 24px rgba(22, 163, 74, 0.35);
}

@media (max-width: 900px) {
  .market-reg-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Commitments 4 Grid */
.commitments-4-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.commitment-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  border-top: 3px solid var(--kanha-blue);
  transition: all 0.3s ease;
}

.commitment-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px -4px rgba(6, 19, 26, 0.08);
}

.commitment-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}

.commitment-card p {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
}

/* Responsive Overrides */
@media (max-width: 1200px) {
  .core-products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .buyers-5-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .commitments-4-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .core-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .buyers-5-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .qc-split-grid {
    grid-template-columns: 1fr;
  }
  .pl-showcase-card {
    grid-template-columns: 1fr;
    padding: 36px 24px;
  }
}

@media (max-width: 768px) {
  /* Global Container Padding */
  :root { --pad: 16px; --header-h: 70px; }
  .section { padding: 44px 0; }

  /* 1. Hero Section - Spacious Mobile Layout */
  .hero {
    min-height: 0 !important;
    padding-top: 28px !important;
    padding-bottom: 36px !important;
    overflow: hidden !important;
  }
  .hero-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 28px !important;
    padding-inline: 18px !important;
    width: 100% !important;
    max-width: 600px !important;
    margin-inline: auto !important;
  }
  .hero-content {
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
  }
  .hero-since {
    font-size: 0.72rem !important;
    letter-spacing: 0.1em !important;
    margin-bottom: 10px !important;
    color: #38bdf8 !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    display: block !important;
  }
  .hero-title,
  .hero h1.display-xl,
  .hero h1 {
    font-size: clamp(1.65rem, 5.2vw, 2.15rem) !important;
    line-height: 1.22 !important;
    margin-bottom: 14px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    letter-spacing: -0.01em !important;
  }
  .hero-title-line1,
  .hero-title-line2 {
    display: inline !important;
  }
  .hero-desc {
    margin-bottom: 8px !important;
  }
  .hero-desc-lead {
    font-size: 0.94rem !important;
    line-height: 1.55 !important;
    color: #e2e8f0 !important;
    margin-bottom: 20px !important;
    display: block !important;
  }
  .hero-desc-sub {
    display: none !important;
  }
  .hero-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-bottom: 24px !important;
    width: 100% !important;
  }
  .hero-actions .btn {
    width: auto !important;
    flex: 0 1 auto !important;
    padding: 11px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
    text-decoration: none !important;
  }
  .hero-actions .btn-primary,
  .hero-actions .btn-hero-quote {
    background: #eab02f !important;
    border: 1px solid #eab02f !important;
    color: #06131a !important;
    box-shadow: 0 4px 16px rgba(234, 176, 47, 0.35) !important;
  }
  .hero-actions .btn-outline,
  .hero-actions .btn-hero-explore {
    background: rgba(255, 255, 255, 0.08) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.65) !important;
    color: #ffffff !important;
    backdrop-filter: blur(8px) !important;
    display: inline-flex !important;
  }
  .hero-stats {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.18) !important;
    padding-top: 16px !important;
    margin-top: 0 !important;
    background: transparent !important;
    border-bottom: none !important;
    border-left: none !important;
    border-right: none !important;
    border-radius: 0 !important;
    backdrop-filter: none !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .hero-stats div {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    min-width: 0 !important;
    text-align: left !important;
  }
  .hero-stats strong {
    font-size: clamp(1.05rem, 3.6vw, 1.25rem) !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .hero-stats span {
    font-size: 0.72rem !important;
    color: #94a3b8 !important;
    line-height: 1.25 !important;
    white-space: nowrap !important;
  }
  .hero-visual {
    width: 100% !important;
    max-width: 540px !important;
    margin: 0 auto !important;
    display: block !important;
  }
  .trade-panel {
    padding: 16px 14px !important;
    border-radius: 18px !important;
    background: rgba(14, 38, 54, 0.78) !important;
    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .trade-label {
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.12em !important;
    color: #7dd3fc !important;
    text-transform: uppercase !important;
    margin-bottom: 10px !important;
    display: block !important;
  }
  .trade-products {
    overflow: hidden !important;
    position: relative !important;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent) !important;
    width: 100% !important;
    display: flex !important;
  }
  .trade-products-track {
    display: flex !important;
    width: max-content !important;
    gap: 10px !important;
    animation: trade-products-marquee 20s linear infinite !important;
  }
  .trade-products-track.reverse {
    animation: trade-products-marquee-rev 22s linear infinite !important;
  }
  .trade-products-track [aria-hidden="true"] {
    display: flex !important;
  }
  .trade-product {
    flex: 0 0 68px !important;
    width: 68px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 5px !important;
    text-decoration: none !important;
    min-width: 0 !important;
  }
  .trade-product img {
    width: 62px !important;
    height: 62px !important;
    max-width: 62px !important;
    aspect-ratio: 1 !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.22) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    object-fit: cover !important;
    display: block !important;
    margin: 0 auto !important;
  }
  .trade-product span {
    font-size: 0.65rem !important;
    line-height: 1.2 !important;
    color: #cbd5e1 !important;
    text-align: center !important;
    margin-top: 2px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    white-space: normal !important;
    text-shadow: none !important;
    font-weight: 500 !important;
  }
  .trade-divider {
    height: 1px !important;
    margin: 14px 0 !important;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent) !important;
  }

  /* 2. Certification Strip - Positioned Cleanly Below Hero, No Negative Margin */
  .cert-strip-container {
    padding: 0 16px !important;
    margin-top: 32px !important;
    margin-bottom: 0 !important;
    position: relative !important;
    z-index: 10 !important;
  }
  .cert-strip {
    margin-top: 0 !important;
    padding: 18px 14px !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    box-shadow: 0 10px 30px rgba(6, 19, 26, 0.08) !important;
  }
  .cert-strip-inner {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    gap: 12px !important;
  }
  .cert-strip-label {
    font-size: 0.88rem !important;
    font-weight: 800 !important;
    color: #081d28 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
  }
  .cert-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px 10px !important;
    width: 100% !important;
  }
  .cert-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    font-size: 0.84rem !important;
    font-weight: 700 !important;
    color: #1e293b !important;
    padding: 10px 10px !important;
    background: #f8fafc !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }
  .cert-badge-dot {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #16a34a !important;
    box-shadow: 0 0 6px rgba(22, 163, 74, 0.4) !important;
    flex-shrink: 0 !important;
  }

  /* 3. Core Products 2-Column Grid (1 by 2) */
  .core-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .core-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(6, 19, 26, 0.04);
  }
  .core-prod-img-wrap {
    height: 125px;
    width: 100%;
    position: relative;
    flex-shrink: 0;
    background: #0f172a;
  }
  .core-prod-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .core-prod-tag {
    position: absolute;
    top: 6px;
    left: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 50px;
    background: rgba(8, 29, 40, 0.85);
    backdrop-filter: blur(6px);
    color: #7dd3fc;
    border: 1px solid rgba(255, 255, 255, 0.15);
    letter-spacing: 0.04em;
  }
  .core-prod-body {
    padding: 12px 10px 14px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .core-prod-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
    margin-bottom: 6px;
    min-height: 2.5em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .core-prod-items {
    font-size: 0.73rem;
    line-height: 1.4;
    color: #64748b;
    margin-bottom: 10px;
    min-height: 2.8em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .core-prod-link {
    margin-top: auto;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--kanha-blue);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding-top: 4px;
  }

  /* 4. Built for International Buyers (2-Column Grid / 1 by 2) */
  .buyers-5-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
  }
  .buyer-pillar-card {
    padding: 18px 12px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
  }
  .buyer-pillar-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(22, 118, 183, 0.08);
    color: var(--kanha-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  .buyer-pillar-icon svg {
    width: 18px;
    height: 18px;
  }
  .buyer-pillar-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 6px;
    line-height: 1.25;
    min-height: 2.5em;
  }
  .buyer-pillar-card p {
    font-size: 0.76rem;
    line-height: 1.45;
    color: #64748b;
    margin: 0;
  }

  /* 5. Quality & Compliance Dark Section */
  .qc-dark-section {
    padding: 48px 0;
  }
  .qc-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .qc-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin: 16px 0 22px;
  }
  .qc-feature-item {
    padding: 10px 8px;
    font-size: 0.78rem;
    font-weight: 600;
    gap: 8px;
    border-radius: 10px;
    line-height: 1.3;
  }
  .fda-callout-card {
    padding: 16px 14px;
    border-radius: 14px;
    gap: 12px;
    margin-bottom: 18px;
  }
  .fda-callout-text strong {
    font-size: 0.92rem;
  }
  .fda-callout-text p {
    font-size: 0.78rem;
  }
  .qc-image-wrap img {
    height: 200px;
    border-radius: 14px;
  }
  .qc-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
    font-size: 0.88rem;
  }

  /* 6. Our Export Process (2-Column Grid / 1 by 2) */
  .timeline-process-container {
    margin-top: 28px;
    overflow-x: visible;
    padding-bottom: 0;
  }
  .timeline-track-line {
    display: none;
  }
  .timeline-steps-track {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    min-width: 0;
  }
  .timeline-step-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    gap: 0;
    height: 100%;
    position: relative;
    padding-top: 14px;
  }
  .timeline-marker {
    position: absolute;
    top: 0;
    left: 10px;
    width: 28px;
    height: 28px;
    z-index: 3;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 0;
    background: #ffffff;
    border: 2px solid var(--kanha-blue);
    color: var(--kanha-blue);
    box-shadow: 0 4px 10px rgba(22, 118, 183, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .timeline-step-item.highlight .timeline-marker {
    border-color: #22c55e;
    color: #22c55e;
  }
  .timeline-card {
    padding: 20px 10px 14px;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    align-items: flex-start;
  }
  .timeline-card::before {
    display: none;
  }
  .timeline-phase-tag {
    font-size: 0.64rem;
    font-weight: 700;
    color: #0284c7;
    background: #e0f2fe;
    padding: 2px 8px;
    border-radius: 4px;
    align-self: flex-end;
    margin-bottom: 6px;
  }
  .timeline-title {
    font-size: 0.86rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    line-height: 1.25;
    min-height: 2.5em;
  }
  .timeline-text {
    font-size: 0.73rem;
    line-height: 1.4;
    color: #64748b;
    margin: 0;
  }
  .process-footer-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding: 16px 14px;
    border-radius: 14px;
  }

  /* 7. Client Sectors (Who We Serve - 2-Column Buttons / 1 by 2) */
  .who-we-serve-hub-section {
    padding: 48px 0;
  }
  .sector-hub-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
  }
  .sector-stream-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    height: auto;
  }
  .sector-stream-item {
    min-height: 0;
    padding: 10px 8px;
    border-radius: 12px;
    gap: 8px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    display: flex;
    align-items: center;
    text-align: left;
  }
  .sector-stream-item.active {
    border-color: var(--kanha-blue);
    background: #f0f9ff;
    box-shadow: 0 4px 12px rgba(22, 118, 183, 0.12);
  }
  .stream-item-indicator {
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 6px;
    background: rgba(22, 118, 183, 0.1);
    color: var(--kanha-blue);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sector-stream-item.active .stream-item-indicator {
    background: var(--kanha-blue);
    color: #ffffff;
  }
  .stream-num {
    font-size: 0.72rem;
    font-weight: 800;
  }
  .stream-title {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.25;
    color: #0f172a;
    margin: 0;
  }
  .stream-sub {
    display: none;
  }
  .stream-item-arrow {
    display: none;
  }
  .sector-stage-showcase {
    border-radius: 16px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 8px 24px rgba(6, 19, 26, 0.06);
  }
  .stage-media-wrap img {
    height: 180px;
    width: 100%;
    object-fit: cover;
  }
  .stage-body {
    padding: 18px 14px;
  }
  .stage-title {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
  }
  .stage-desc {
    font-size: 0.85rem;
    line-height: 1.55;
    color: #475569;
    margin-bottom: 14px;
  }
  .stage-features-box {
    padding: 14px 12px;
    border-radius: 12px;
    margin-bottom: 16px;
  }
  .stage-features-list li {
    font-size: 0.8rem;
    gap: 8px;
  }
  .stage-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .stage-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.88rem;
  }

  /* 8. Target Markets */
  .target-markets-section {
    padding: 48px 0;
  }
  .market-reg-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 24px;
  }
  .market-reg-card {
    padding: 22px 16px;
    border-radius: 16px;
  }
  .market-card-title {
    font-size: 1.12rem;
    font-weight: 700;
    margin-bottom: 8px;
  }
  .market-card-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .market-features-box {
    padding: 14px 12px;
    border-radius: 10px;
    margin-bottom: 18px;
  }
  .market-features-list li {
    font-size: 0.8rem;
    gap: 8px;
  }
  .market-cta-btn {
    width: 100%;
    justify-content: center;
    padding: 13px 18px;
  }

  /* 9. About & Commitments 4 Grid (1 by 2) */
  .story-section {
    padding: 48px 0;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .story-main-img {
    height: 220px;
    border-radius: 14px;
    width: 100%;
    object-fit: cover;
  }
  .story-lead {
    font-size: 0.98rem;
    line-height: 1.55;
  }
  .story-body {
    font-size: 0.88rem;
    line-height: 1.6;
  }
  .commitments-4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 22px;
  }
  .commitment-card {
    padding: 16px 12px;
    border-radius: 12px;
  }
  .commitment-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }
  .commitment-card p {
    font-size: 0.78rem;
    line-height: 1.4;
  }

  /* 10. Pre-Footer CTA Box */
  .cta-box-section {
    padding: 36px 0 54px;
  }
  .cta-box-card {
    padding: 34px 16px;
    border-radius: 18px;
  }
  .cta-box-card h2 {
    font-size: 1.45rem;
    line-height: 1.25;
    margin-bottom: 12px;
  }
  .cta-box-desc {
    font-size: 0.96rem;
    margin-bottom: 10px;
  }
  .cta-box-actions {
    flex-direction: column;
    width: 100%;
    gap: 10px;
  }
  .cta-box-actions .btn {
    width: 100%;
    justify-content: center;
  }

  /* 11. Site Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 14px;
  }
  .footer-brand {
    grid-column: span 2;
  }
  .footer-col-support {
    grid-column: span 2;
  }
  .footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }
  .footer-badge {
    font-size: 0.72rem;
    padding: 4px 8px;
  }
  .footer-socials {
    gap: 10px;
  }
  .social-icon {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 360px) {
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .cert-badges {
    grid-template-columns: 1fr;
  }
  .core-products-grid {
    grid-template-columns: 1fr;
  }
  .buyers-5-grid {
    grid-template-columns: 1fr;
  }
  .timeline-steps-track {
    grid-template-columns: 1fr;
  }
  .sector-stream-nav {
    grid-template-columns: 1fr;
  }
  .commitments-4-grid {
    grid-template-columns: 1fr;
  }
  .qc-features-list {
    grid-template-columns: 1fr;
  }
  .nav-main.mobile-open .mega-categories-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================================
   Global Floating Action Buttons (Bottom-Left Call & Bottom-Right WhatsApp)
   ========================================================================== */
.kge-floating-actions {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.kge-floating-btn {
  position: fixed;
  pointer-events: auto;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.25s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  outline: none;
}

/* Bottom Left: Call Button */
.kge-floating-call {
  bottom: 24px;
  left: 24px;
  background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(2, 132, 199, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.kge-floating-call:hover,
.kge-floating-call:focus-visible {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 28px rgba(2, 132, 199, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff !important;
}

/* Bottom Right: WhatsApp Button */
.kge-floating-whatsapp {
  bottom: 24px;
  right: 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 2px 6px rgba(0, 0, 0, 0.15);
}

.kge-floating-whatsapp:hover,
.kge-floating-whatsapp:focus-visible {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.55), 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #ffffff !important;
}

/* Subtle Animated Radar Pulse Rings */
.kge-float-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
}

.kge-floating-call .kge-float-pulse {
  border: 2px solid #0284c7;
  animation: kgeFloatPulse 2.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.kge-floating-whatsapp .kge-float-pulse {
  border: 2px solid #25D366;
  animation: kgeFloatPulse 2.8s cubic-bezier(0.215, 0.61, 0.355, 1) infinite 0.8s;
}

@keyframes kgeFloatPulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  60% {
    transform: scale(1.36);
    opacity: 0;
  }
  100% {
    transform: scale(1.36);
    opacity: 0;
  }
}

.kge-float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: transform 0.2s ease;
}

.kge-floating-btn:hover .kge-float-icon {
  transform: scale(1.06);
}

/* Hover Tooltip Labels */
.kge-float-tooltip {
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: #0f172a;
  color: #ffffff;
  padding: 7px 14px;
  border-radius: 9999px;
  font-size: 0.78rem;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0.01em;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-body, system-ui, -apple-system, sans-serif);
}

/* Call Tooltip: expands to the right */
.kge-floating-call .kge-float-tooltip {
  left: 100%;
  margin-left: 12px;
  transform-origin: left center;
}

.kge-floating-call:hover .kge-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* WhatsApp Tooltip: expands to the left */
.kge-floating-whatsapp .kge-float-tooltip {
  right: 100%;
  margin-right: 12px;
  transform-origin: right center;
}

.kge-floating-whatsapp:hover .kge-float-tooltip {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* Mobile Touch Screen Adaptations */
@media (max-width: 640px) {
  .kge-floating-btn {
    width: 50px;
    height: 50px;
  }
  .kge-floating-call {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    left: 16px;
  }
  .kge-floating-whatsapp {
    bottom: max(16px, env(safe-area-inset-bottom, 16px));
    right: 16px;
  }
  .kge-float-tooltip {
    display: none !important;
  }
}

/* Form submission loading spinner */
.btn-loading-spinner {
  display: inline-block;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: kge-spin 0.6s linear infinite;
  margin-right: 8px;
  vertical-align: middle;
}
@keyframes kge-spin {
  to { transform: rotate(360deg); }
}


