/* ═══════════════════════════════════════════════════════════════
   UKA FOODS GLOBAL STYLESHEET - PREMIUM LIGHT THEME
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #fffaf5;
  --bg-soft: #f8f3ed;
  --bg-elevated: #ffffff;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: rgba(0, 0, 0, 0.06);
  --surface-border: rgba(0, 0, 0, 0.08);
  --text: #111111;
  --muted: rgba(0, 0, 0, 0.62);
  --muted-strong: rgba(0, 0, 0, 0.85);
  --accent: #ff7a00;
  --accent-deep: #e65c00;
  --accent-soft: rgba(255, 122, 0, 0.08);
  --success: #2d8a56;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
  --max-width: 1400px;
  --header-height: 88px;
  --transition: 220ms ease;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 122, 0, 0.04), transparent 35%),
    radial-gradient(circle at 90% 10%, rgba(255, 177, 92, 0.06), transparent 30%),
    radial-gradient(circle at 50% 50%, rgba(255, 122, 0, 0.02), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 122, 0, 0.05), transparent 35%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.loading,
body.modal-open {
  overflow: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  z-index: 200;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   SITE SHELL & PRELOADER
   ═══════════════════════════════════════════════════════════════ */

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.98);
  z-index: 500;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader__mark {
  display: grid;
  gap: 14px;
  justify-items: center;
}

.preloader__orb {
  width: 78px;
  height: 78px;
  border: 2px solid rgba(255, 122, 0, 0.15);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.05s linear infinite;
}

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

.preloader__text {
  font-size: 0.9rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted-strong);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   HEADER & NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(24px);
  transition: background var(--transition), border-color var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.02);
}

.site-header__inner,
.section,
.footer__inner,
.container {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand__logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.brand__text {
  display: grid;
  gap: 2px;
}

.brand__name {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #111;
  line-height: 1;
}

.brand__tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  font-weight: 600;
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
}

.site-nav a,
.nav-dropdown__toggle {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.94rem;
  font-weight: 600;
  transition: all var(--transition);
  background: none;
  border: none;
  cursor: pointer;
}

.site-nav a:hover,
.nav-dropdown__toggle:hover,
.nav-dropdown.open .nav-dropdown__toggle {
  color: var(--accent);
  background: rgba(0, 0, 0, 0.04);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 12px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.2s ease;
}

.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(8px);
}

.nav-dropdown__menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--muted-strong);
}

.nav-dropdown__menu a:hover {
  background: var(--bg-soft);
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 150;
}

.nav-hamburger span {
  width: 28px;
  height: 2px;
  background: #111;
  transition: all 0.3s ease;
}

.mobile-nav-overlay {
  display: none;
}

/* ═══════════════════════════════════════════════════════════════
   LANGUAGE SWITCHER
   ═══════════════════════════════════════════════════════════════ */

.lang-switcher {
  position: relative;
}

.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  color: #111;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  cursor: pointer;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 180px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
}

.lang-switcher.open .lang-switcher__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-switcher__menu a {
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
}

.lang-switcher__menu a:hover,
.lang-switcher__menu a.active {
  background: var(--bg-soft);
  color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */

.hero,
.page-hero {
  padding: 80px 0 60px;
}

.hero__grid,
.page-hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero__content h1,
.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: #111;
  margin: 16px 0 24px;
}

.hero__content p,
.page-hero p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 122, 0, 0.06);
  color: var(--accent-deep);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__actions,
.page-hero__actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}

.button {
  padding: 16px 32px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 32px rgba(255, 122, 0, 0.25);
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 122, 0, 0.35);
}

.button--ghost {
  padding: 15px 31px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #111;
  border-radius: 999px;
  font-weight: 700;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button--ghost:hover {
  background: rgba(0, 0, 0, 0.04);
  transform: translateY(-2px);
}

.button--text {
  color: var(--accent);
  font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   POWER STRIP & GRIDS
   ═══════════════════════════════════════════════════════════════ */

.section {
  padding: 80px 0;
}

.section__heading {
  margin-bottom: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
}

.section__heading h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #111;
  margin: 12px 0 0;
}

.section__heading p {
  max-width: 600px;
  color: var(--muted);
  line-height: 1.7;
}

.power-grid,
.preview-grid,
.regions-grid,
.factory-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

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

@media (max-width: 1100px) {
  .brand-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .brand-grid {
    grid-template-columns: 1fr;
  }
}

.card,
.brand-card,
.preview-card,
.region-card,
.factory-card,
.glass-card,
.power-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover,
.brand-card:hover,
.preview-card:hover,
.region-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.12);
}

.power-card {
  padding: 24px;
  text-align: center;
}

.power-card strong {
  display: block;
  font-size: 2.2rem;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.power-card span {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* ═══════════════════════════════════════════════════════════════
   SUPPLY CHAIN TRACK
   ═══════════════════════════════════════════════════════════════ */

.supply-chain {
  background: #f8f8f8;
}

.chain-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  position: relative;
}

.chain-step {
  background: #ffffff;
  padding: 24px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: grid;
  gap: 8px;
  transition: all 0.2s ease;
}

.chain-step:hover {
  border-color: var(--accent);
  background: #fffdf9;
}

.chain-step strong {
  font-size: 1.1rem;
  color: #111;
}

.chain-step span {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════════════════════════
   SLIDESHOW STYLES
   ═══════════════════════════════════════════════════════════════ */

.factory-slideshow-container {
  width: 100%;
  height: 75vh;
  overflow: hidden;
  position: relative;
  background: #f4f4f4;
}

#slideshow {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-slideshow-container button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #111;
  border: none;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  font-size: 1.2rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.factory-slideshow-container button:hover {
  background: var(--accent);
  color: #fff;
}

.factory-slideshow-container button:first-of-type { left: 30px; }
.factory-slideshow-container button:last-of-type { right: 30px; }

/* ═══════════════════════════════════════════════════════════════
   SPECIFIC GRIDS
   ═══════════════════════════════════════════════════════════════ */

.info-grid, .story-grid, .season-grid, .docs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.info-card, .story-card, .season-card, .doc-card {
  padding: 32px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.visual-badge {
  padding: 6px 14px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero__media-grid {
  display: grid;
  gap: 24px;
  margin-top: 32px;
}

.hero__media-grid strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 8px;
  color: #111;
}

/* ═══════════════════════════════════════════════════════════════
   FLOWS & BLOCKS
   ═══════════════════════════════════════════════════════════════ */

.starter-block, .docs-section {
  padding: 80px 0;
  background: #ffffff;
}

.starter-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.starter-step h3 {
  color: var(--accent);
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.section-label {
  font-size: 2.2rem;
  text-align: center;
  margin-bottom: 40px;
}

.doc-card__icon {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}

.section-image {
  margin: 40px 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.1);
}

.section-image img {
  width: 100%;
  height: 100%;
  display: block;
}

.exhibition-strip {
  background: linear-gradient(135deg, #111, #222);
  color: #fff;
  border-radius: var(--radius-xl);
  margin: 40px auto;
  padding: 60px;
}

.exhibition-strip h2 { color: #fff; }
.exhibition-strip p { color: rgba(255,255,255,0.7); }

.exhibition-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.exhibition-badge {
  padding: 10px 18px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.export-flow .section-label { color: var(--accent); }
/* ═══════════════════════════════════════════════════════════════
   PRODUCT CATALOG & CATALOG CARDS
   ═══════════════════════════════════════════════════════════════ */

.catalog-layout {
  display: grid;
  gap: 40px;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.filter-chip {
  padding: 12px 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 10px 24px rgba(255, 122, 0, 0.2);
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
  gap: 28px;
}

.catalog-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.catalog-card__eyebrow {
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.meta-badge {
  padding: 4px 12px;
  background: var(--bg-soft);
  color: var(--muted-strong);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
}

.sku-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
}

.sku-button {
  padding: 10px 18px;
  background: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
}

.sku-button:hover {
  background: var(--bg-elevated);
  border-color: var(--accent);
  color: var(--accent);
}

.metric-list, .spec-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.metric-list span, .spec-list span {
  padding: 6px 14px;
  background: #f8f8f8;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-strong);
}

/* ═══════════════════════════════════════════════════════════════
   HERB PRODUCT STYLES
   ═══════════════════════════════════════════════════════════════ */

.herb-card {
  display: flex;
  gap: 24px;
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}

.herb-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #f4f4f4, #ffffff);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  font-size: 1.25rem;
}

.herb-card__title {
  color: #111;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.herb-card__positioning {
  color: var(--accent);
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.55;
}

.herb-card__benefit {
  color: var(--muted);
  font-size: .83rem;
  line-height: 1.62;
}

.herb-packaging-accordion {
  display: grid;
  gap: 18px;
}

.herb-packaging-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
}

.herb-packaging-card .accordion__trigger {
  color: #111;
  padding: 22px 24px;
}

.herb-packaging-card__body {
  padding: 0 24px 24px;
}

.herb-size-tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

/* ═══════════════════════════════════════════════════════════════
   COMPANY TIMELINE STYLES
   ═══════════════════════════════════════════════════════════════ */

.cp-timeline {
  position: relative;
  padding-left: 40px;
  margin-top: 40px;
}

.cp-timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), rgba(255, 122, 0, 0.1));
}

.cp-milestone {
  position: relative;
  padding: 0 0 48px;
}

.cp-milestone:last-child {
  padding-bottom: 0;
}

.cp-milestone::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--bg), 0 0 12px rgba(255, 122, 0, 0.3);
}

.cp-milestone__year {
  display: inline-block;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.cp-milestone__title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #111;
}

.cp-milestone__desc {
  color: var(--muted);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION STYLES
   ═══════════════════════════════════════════════════════════════ */

.accordion {
  display: grid;
  gap: 16px;
}

.accordion__item {
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: #ffffff;
  overflow: hidden;
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  color: #111;
  transition: background 0.2s ease;
}

.accordion__trigger:hover {
  background: rgba(0, 0, 0, 0.02);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.accordion__inner {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.7;
}

.accordion__item.open .accordion__body {
  max-height: 1000px; /* Fallback */
}

/* ═══════════════════════════════════════════════════════════════
   MODAL STYLES
   ═══════════════════════════════════════════════════════════════ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.open {
  opacity: 1;
  visibility: visible;
}

.modal__panel {
  width: 100%;
  max-width: 900px;
  max-height: 90vh;
  background: #ffffff;
  border-radius: var(--radius-xl);
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: start;
  padding: 32px 40px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.modal__close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--muted);
}

.modal__body {
  padding: 40px;
}

/* ═══════════════════════════════════════════════════════════════
   TABLE STYLES
   ═══════════════════════════════════════════════════════════════ */

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th,
.data-table td {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  text-align: left;
}

.data-table th {
  color: var(--muted);
  font-weight: 700;
  width: 40%;
}

.data-table td {
  color: #111;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER STYLES
   ═══════════════════════════════════════════════════════════════ */

.site-footer {
  padding: 60px 0;
  background: #f4f4f4;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: auto;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-size: 0.9rem;
}

.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
  z-index: 100;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE & RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 991px) {
  .nav-hamburger {
    display: flex;
  }
  .site-nav {
    display: none;
  }
  .mobile-nav-overlay {
    display: flex;
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 140;
    padding: 120px 40px;
    flex-direction: column;
    gap: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    overflow-y: auto;
  }
  body.mobile-nav-open .mobile-nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  .mobile-nav-overlay a, 
  .mobile-nav-overlay summary {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111;
    cursor: pointer;
  }
}

/* ═══════════════════════════════════════════════════════════════
   RTL OVERRIDES
   ═══════════════════════════════════════════════════════════════ */

[dir="rtl"] {
  text-align: right;
}

[dir="rtl"] .site-header__inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .cp-timeline {
  padding-left: 0;
  padding-right: 40px;
}

[dir="rtl"] .cp-timeline::before {
  left: auto;
  right: 14px;
}

[dir="rtl"] .cp-milestone::before {
  left: auto;
  right: -33px;
}

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

[dir="rtl"] .whatsapp-float {
  right: auto;
  left: 30px;
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT FAMILY (PF) STYLES
   ═══════════════════════════════════════════════════════════════ */

.pf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.pf-breadcrumb a:hover { color: var(--accent); }
.pf-breadcrumb .sep { opacity: 0.4; }

.pf-product-grid, .pf-packaging-grid, .pf-tech-grid, .pf-flex-grid, .pf-why-grid, .pf-size-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pf-product-card, .pf-pack-card, .pf-tech-card, .pf-flex-card, .pf-why-card {
  background: #ffffff;
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.pf-brand-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.pf-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.pf-spec-tag {
  padding: 6px 14px;
  background: #f4f4f4;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--muted-strong);
}

.pf-pack-icon, .pf-flex-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.pf-size-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.pf-size-card {
  padding: 24px;
  text-align: center;
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.pf-size-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.pf-size-label {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
}

.pf-download {
  background: #ffffff;
  padding: 60px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.06);
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
}

.pf-download h3 { font-size: 2rem; margin-bottom: 16px; }
.pf-download p { color: var(--muted); max-width: 800px; margin: 0 auto 32px; }

/* ═══════════════════════════════════════════════════════════════
   COMMERCIAL & USE CASES
   ═══════════════════════════════════════════════════════════════ */

.commercial-grid, .use-cases__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.commercial-card, .use-case-card {
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0,0,0,0.06);
}

.commercial-card h3, .use-case-card h3 {
  font-size: 1.15rem;
  color: #111;
  margin-bottom: 12px;
}

.use-case-card__icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 16px;
}

/* ═══════════════════════════════════════════════════════════════
   EMPIRE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

.empire-shell {
  background: var(--bg);
}

.empire-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.empire-card {
  padding: 32px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.empire-card h3 { margin: 16px 0 12px; font-size: 1.25rem; }
.empire-card p { color: var(--muted); margin-bottom: 20px; }

.empire-card--compact {
  padding: 24px;
  cursor: pointer;
}

.product-platform-media {
  margin: -32px -32px 24px;
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #f4f4f4;
  position: relative;
}

.product-platform-media__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.empire-card:hover .product-platform-media__image {
  transform: scale(1.05);
}

.product-platform-media__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 4px 12px;
  background: rgba(255,255,255,0.9);
  color: #111;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  backdrop-filter: blur(4px);
}

/* ═══════════════════════════════════════════════════════════════
   LEGACY CARD GRID & WHY STRIP (RESTORED FOR PRODUCT PAGES)
   ═══════════════════════════════════════════════════════════════ */

.card-grid {
  display: grid;
  gap: 20px;
}

.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }
.card-grid--5 { grid-template-columns: repeat(5, 1fr); }

@media (max-width: 991px) {
  .card-grid--3, .card-grid--4, .card-grid--5 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .card-grid { grid-template-columns: 1fr !important; }
}

.why-strip {
  background: var(--bg-soft);
  padding: 60px 0;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.why-strip__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.why-strip__item strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: #111;
}

.why-strip__item p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.pf-placeholder {
  display: none; /* Hide manual placeholders since JS injects better ones */
}

/* ═══════════════════════════════════════════════════════════════
   COMMERCIAL CARDS (RESTORED)
   ═══════════════════════════════════════════════════════════════ */

.commercial-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 18px;
}

.commercial-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #111;
}

/* ═══════════════════════════════════════════════════════════════
   BRAND HUB CIRCULAR LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.brand-hub-wrapper {
  padding: 100px 0;
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.brand-hub-container {
  position: relative;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-hub-center {
  width: 280px;
  height: 280px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  box-shadow: 0 0 0 15px rgba(255, 122, 0, 0.05), 0 20px 60px rgba(0,0,0,0.1);
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
}

.brand-hub-center img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.brand-hub-item {
  position: absolute;
  width: 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 5;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.brand-hub-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.brand-hub-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--accent);
}

.brand-hub-item p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* Positions for 6 items in a circle */
.item-1 { top: 0; left: 50%; transform: translateX(-50%); }
.item-2 { top: 15%; right: 0; }
.item-3 { bottom: 15%; right: 0; }
.item-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.item-5 { bottom: 15%; left: 0; }
.item-6 { top: 15%; left: 0; }

.brand-hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.brand-hub-lines line {
  stroke: rgba(255, 122, 0, 0.15);
  stroke-width: 2;
  stroke-dasharray: 5 5;
}

@media (max-width: 1100px) {
  .brand-hub-container {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .brand-hub-center, .brand-hub-lines {
    display: none;
  }
  .brand-hub-item {
    position: static;
    width: 100%;
    transform: none !important;
  }
}

@media (max-width: 640px) {
  .brand-hub-container {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] .brand-hub-item {
  text-align: right;
}


/* ═══════════════════════════════════════════════════════════════
   SHIPPING METHODS ROUND FIGURES
   ═══════════════════════════════════════════════════════════════ */

.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.logistics-card {
  text-align: center;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}

.logistics-card__figure {
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
  position: relative;
}

.logistics-card__circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  background: #f4f4f4;
}

.logistics-card__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logistics-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: #111;
}

.logistics-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 320px;
  margin: 0 auto;
}

@media (max-width: 991px) {
  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   FACTORY PAGE REFINEMENTS (LIGHT THEME)
   ═══════════════════════════════════════════════════════════════ */

.factory-detail-card {
  margin-bottom: 40px;
  padding: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.factory-img-primary {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.factory-role-text {
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: #111;
  font-weight: 500;
  line-height: 1.7;
}

.factory-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

@media (max-width: 991px) {
  .factory-card-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .factory-detail-card {
    padding: 24px;
  }
}

@media (max-width: 640px) {
  .factory-stats-grid {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] .factory-stats-grid {
  direction: rtl;
}

[dir="rtl"] .factory-img-primary {
  margin-right: 0;
  margin-left: 0;
}

/* Force factory grid to single column for detailed view */
[data-factory-grid] {
  grid-template-columns: 1fr !important;
  max-width: 1200px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   BRAND CARD LOGO STYLES
   ═══════════════════════════════════════════════════════════════ */

.brand-card__logo-wrap {
  height: 80px;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--bg-soft);
  border-radius: 16px;
  border: 1px solid var(--surface-border);
  width: 100%;
}

.brand-card h3 {
  margin-top: 16px;
  font-size: 1.4rem;
  color: var(--text);
  text-align: center;
}

.brand-card p {
  text-align: center;
}

.brand-card .meta-badge {
  margin-inline: auto;
}

.brand-card__meta {
  justify-content: center;
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL PRESENCE MAP ENLARGEMENT
   ═══════════════════════════════════════════════════════════════ */

#presence-map {
  width: 100%;
  height: 800px;
  background: #f4f4f4;
  border-radius: 32px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

@media (max-width: 991px) {
  #presence-map {
    height: 600px;
  }
}

@media (max-width: 640px) {
  #presence-map {
    height: 400px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   CLUSTER HUB CIRCULAR LAYOUT
   ═══════════════════════════════════════════════════════════════ */

.cluster-hub-wrapper {
  padding: 100px 0;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
}

.cluster-hub-container {
  position: relative;
  height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cluster-hub-center {
  width: 300px;
  height: 300px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  box-shadow: 0 0 0 20px rgba(255, 122, 0, 0.04), 0 30px 80px rgba(0,0,0,0.1);
  z-index: 10;
  border: 1px solid rgba(0,0,0,0.05);
}

.cluster-hub-center img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cluster-hub-item {
  position: absolute;
  width: 340px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  z-index: 5;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.cluster-hub-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
}

.cluster-hub-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--accent);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 8px;
}

.cluster-hub-item ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.cluster-hub-item li {
  font-size: 0.8rem;
  color: var(--muted);
  background: var(--bg-soft);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
}

/* Positions for 6 clusters */
.cluster-1 { top: 0; left: 50%; transform: translateX(-50%); }
.cluster-2 { top: 18%; right: 0; }
.cluster-3 { bottom: 18%; right: 0; }
.cluster-4 { bottom: 0; left: 50%; transform: translateX(-50%); }
.cluster-5 { bottom: 18%; left: 0; }
.cluster-6 { top: 18%; left: 0; }

.cluster-hub-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cluster-hub-lines path {
  fill: none;
  stroke: rgba(255, 122, 0, 0.2);
  stroke-width: 2;
  stroke-dasharray: 6 6;
}

@media (max-width: 1200px) {
  .cluster-hub-container {
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .cluster-hub-center, .cluster-hub-lines {
    display: none;
  }
  .cluster-hub-item {
    position: static;
    width: 100%;
    transform: none !important;
  }
}

@media (max-width: 768px) {
  .cluster-hub-container {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PREMIUM IMPACT QUOTE
   ═══════════════════════════════════════════════════════════════ */

.impact-quote {
  position: relative;
  max-width: 1100px;
  margin: 80px auto 40px;
  padding: 60px 40px;
  text-align: center;
  background: var(--bg-soft);
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-border);
}

.impact-quote::before,
.impact-quote::after {
  content: '"';
  position: absolute;
  font-family: serif;
  font-size: 8rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.15;
  height: 60px;
}

.impact-quote::before {
  top: 10px;
  left: 30px;
}

.impact-quote::after {
  bottom: 0;
  right: 30px;
  transform: rotate(180deg);
}

.impact-quote p {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1.45;
  color: var(--text);
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .impact-quote {
    padding: 40px 24px;
    margin: 60px 20px 30px;
  }
  .impact-quote p {
    font-size: 1.25rem;
  }
  .impact-quote::before,
  .impact-quote::after {
    font-size: 5rem;
  }
}

[dir="rtl"] .impact-quote::before { left: auto; right: 30px; }
[dir="rtl"] .impact-quote::after { right: auto; left: 30px; }
/* ═══════════════════════════════════════════════════════════════
   PREMIUM FAQ / COMMON QUESTIONS STYLES
   ═══════════════════════════════════════════════════════════════ */

.faq-section { padding: 100px 0; background: var(--bg-soft); border-top: 1px solid var(--surface-border); }

.faq-grid {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 50px auto 0;
}

.faq-item {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.faq-item:hover {
  border-color: var(--accent-soft);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.faq-item.open {
  border-color: var(--accent);
  box-shadow: 0 20px 40px rgba(255, 122, 0, 0.08);
}

.faq-item__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 32px;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.15rem;
  font-weight: 800;
  color: #111;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* Custom Icon */
.faq-item__q::after {
  content: '+';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--bg-soft);
  color: var(--accent);
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 400;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-item.open .faq-item__q::after {
  content: '−';
  background: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg-soft) 100%);
}

.faq-item__a p {
  padding: 0 32px 32px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
  font-size: 1rem;
}

[dir="rtl"] .faq-item__q {
  text-align: right;
}

[dir="rtl"] .faq-item__q::after {
  margin-left: 0;
  margin-right: 20px;
}

/* ═══════════════════════════════════════════════════════════════
   EXPORT PROCESS FLOW (MODERN STEPPER)
   ═══════════════════════════════════════════════════════════════ */

.export-flow {
  background: var(--bg-soft);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--surface-border);
  border-bottom: 1px solid var(--surface-border);
}

.export-flow .section-label { 
  color: var(--accent); 
}

.flow-track {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  margin: 60px auto 0;
  position: relative;
  max-width: 1200px;
}

.flow-track::before {
  content: "";
  position: absolute;
  top: 45px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, 
    rgba(255, 122, 0, 0.05) 0%, 
    rgba(255, 122, 0, 0.4) 50%, 
    rgba(255, 122, 0, 0.05) 100%);
  z-index: 1;
}

.flow-step {
  flex: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flow-step__icon {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.flow-step::after {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: calc(50% - 45px);
  width: 28px;
  height: 28px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(255, 122, 0, 0.2);
}

.flow-step:hover .flow-step__icon {
  transform: translateY(-8px);
  border-color: var(--accent);
}

.flow-step__label {
  font-weight: 800;
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 8px;
}

.flow-step__sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 160px;
  margin: 0 auto;
}

@media (max-width: 1100px) {
  .flow-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .flow-track::before {
    display: none;
  }
}

@media (max-width: 768px) {
  .flow-track {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .flow-track {
    grid-template-columns: 1fr;
  }
}

[dir="rtl"] .flow-step::after {
  right: auto;
  left: calc(50% - 45px);
}

/* ═══════════════════════════════════════════════════════════════
   LEADERSHIP GRID & CARDS
   ═══════════════════════════════════════════════════════════════ */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.leader-card {
  background: #ffffff;
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-10px);
}

.leader-card__avatar {
  width: 80px;
  height: 80px;
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto 24px;
}

.leader-card h3 {
  font-size: 1.25rem;
  color: #111;
  margin-bottom: 6px;
}

.leader-card__role {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.leader-card__quote {
  font-style: italic;
  color: #111;
  font-weight: 600;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.leader-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--muted);
}

/* ═══════════════════════════════════════════════════════════════
   COMPANY PROFILE PREMIUM COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* Stats Grid */
.stat-power-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-power-card {
  background: #ffffff;
  padding: 32px 20px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.stat-power-card:hover { transform: translateY(-8px); }
.stat-power-card strong { display: block; font-size: 2.2rem; color: var(--accent); margin-bottom: 8px; letter-spacing: -0.02em; }
.stat-power-card span { font-size: 0.88rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Platforms/Packaging */
.platform-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 32px;
}

.platform-card {
  background: #ffffff;
  padding: 30px 24px;
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.platform-card h3 { color: var(--accent); font-size: 1.3rem; margin-bottom: 12px; }
.platform-card p { font-size: 0.9rem; line-height: 1.6; color: var(--muted); }

/* Certifications */
.cert-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cert-box-card {
  background: #ffffff;
  padding: 34px;
  border-radius: 26px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.cert-box-card h3 { font-size: 1.4rem; color: #111; margin-bottom: 4px; }
.cert-box-card h4 { font-size: 0.9rem; color: var(--accent); text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.cert-box-card p { font-size: 0.94rem; color: var(--muted); line-height: 1.7; }

/* Visual Journey / Operations */
.op-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.op-journey-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.op-journey-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; width: 4px; height: 100%;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.op-journey-card:hover { transform: scale(1.02); }
.op-journey-card:hover::before { opacity: 1; }

.op-journey-card .icon { font-size: 2.5rem; margin-bottom: 24px; display: block; }
.op-journey-card h3 { font-size: 1.2rem; margin-bottom: 12px; color: #111; }
.op-journey-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* Logistics Strength */
.logistics-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 50px;
}

.logistics-feature-card {
  display: flex;
  gap: 24px;
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.logistics-feature-card .icon {
  width: 64px;
  height: 64px;
  background: var(--bg-soft);
  border-radius: 18px;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.logistics-feature-card h4 { font-size: 1.15rem; margin-bottom: 8px; color: #111; }
.logistics-feature-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.6; }

/* Container Table */
.container-table {
  width: 100%;
  margin: 40px 0;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
}

.container-table th { background: var(--bg-soft); padding: 20px; text-align: left; font-weight: 800; font-size: 0.9rem; text-transform: uppercase; color: #111; }
.container-table td { padding: 20px; background: #ffffff; border-top: 1px solid rgba(0, 0, 0, 0.05); color: var(--muted); }

@media (max-width: 1100px) {
  .stat-power-grid, .platform-grid { grid-template-columns: repeat(3, 1fr); }
  .cert-box-grid, .op-journey-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .stat-power-grid, .platform-grid, .cert-box-grid, .op-journey-grid, .logistics-feature-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   FACTORY MINI-SLIDESHOW
   ═══════════════════════════════════════════════════════════════ */

.factory-mini-slideshow {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 12px;
  margin-top: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) transparent;
}

.factory-mini-slideshow::-webkit-scrollbar {
  height: 4px;
}

.factory-mini-slideshow::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

.factory-mini-slide {
  flex: 0 0 140px;
  height: 100px;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid var(--surface-border);
  transition: transform 0.2s ease;
}

.factory-mini-slide:hover {
  transform: scale(1.05);
}

.factory-mini-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════════════════════════
   CERTIFICATION EXPLAIN CARDS
   ═══════════════════════════════════════════════════════════════ */

.cert-explain-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.cert-explain-card {
  background: #ffffff;
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
}

.cert-explain-card:hover {
  transform: translateY(-8px);
}

.cert-explain-card h3 {
  font-size: 1.5rem;
  color: #111;
  margin-bottom: 4px;
}

.cert-explain-card h4 {
  font-size: 0.9rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.cert-explain-card p {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
  flex: 1;
}

.cert-explain-card .button {
  width: 100%;
  margin-top: auto;
}

/* ═══════════════════════════════════════════════════════════════
   INDUSTRIES PAGE PREMIUM COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

.industry-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

/* CSS Graph representation */
.market-graph {
  background: var(--bg-soft);
  padding: 40px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--surface-border);
  display: grid;
  gap: 24px;
}

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

.graph-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text);
  text-transform: uppercase;
}

.graph-bar-track {
  height: 8px;
  background: rgba(0,0,0,0.05);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}

.graph-bar-fill {
  position: absolute;
  top: 0; left: 0; height: 100%;
  background: var(--accent);
  border-radius: 4px;
  transition: width 1s ease-out;
}

/* Industry Detail Cards */
.industry-sector-card {
  background: #ffffff;
  padding: 50px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow);
  margin-bottom: 40px;
}

.industry-sector-header {
  margin-bottom: 40px;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding-bottom: 30px;
}

.industry-sector-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.capability-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: grid;
  gap: 12px;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-weight: 500;
}

.capability-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 800;
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.profile-tag {
  padding: 8px 16px;
  background: var(--bg-soft);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}

@media (max-width: 991px) {
  .industry-hero-grid, .industry-sector-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   EXHIBITION GRID & CARDS
   ═══════════════════════════════════════════════════════════════ */

.expo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.expo-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.expo-card:hover {
  transform: translateY(-8px);
}

.expo-card__media {
  height: 240px;
  width: 100%;
  overflow: hidden;
  background: #f4f4f4;
}

.expo-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.expo-card__body {
  padding: 32px;
  flex: 1;
}

.expo-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 12px;
}

.expo-card p {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .expo-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PORTFOLIO GRID & CARDS
   ═══════════════════════════════════════════════════════════════ */

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

.portfolio-card {
  background: #ffffff;
  padding: 34px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.portfolio-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-soft);
}

.portfolio-card h3 {
  font-size: 1.3rem;
  color: #111;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--accent-soft);
  padding-bottom: 10px;
  display: inline-block;
}

.portfolio-card p {
  font-size: 0.94rem;
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 1100px) {
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════════════════════════
   STORY CARD MEDIA STYLES
   ═══════════════════════════════════════════════════════════════ */

.story-card__media {
  margin: -32px -32px 24px;
  height: 200px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: var(--bg-soft);
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.story-card:hover .story-card__media img {
  transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   FORMAT CARD SPECIFIC STYLES (SMALLER PHOTOS)
   ═══════════════════════════════════════════════════════════════ */

.format-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.format-card .product-platform-media {
  height: 180px; /* Reduced from 240px */
  margin: -32px -32px 20px;
  background: #ffffff;
  border-bottom: 1px solid var(--surface-border);
}

.format-card .product-platform-media__image {
  object-fit: contain; /* Ensure full product is visible in smaller space */
  padding: 15px;
  transition: transform 0.3s ease;
}

.format-card:hover .product-platform-media__image {
  transform: scale(1.08);
}
