:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --bg-elevated: #121212;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --muted-strong: rgba(255, 255, 255, 0.82);
  --accent: #ff6600;
  --accent-deep: #c84f00;
  --accent-soft: rgba(255, 102, 0, 0.14);
  --success: #7be3a9;
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --max-width: 1600px;
  --header-height: 88px;
  --transition: 220ms ease;
}

* {
  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 top right, rgba(255, 102, 0, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.04), transparent 22%),
    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: #111;
  z-index: 200;
  transition: top var(--transition);
}

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

.site-shell {
  min-height: 100vh;
}

.preloader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 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, 102, 0, 0.22);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1.05s linear infinite;
}

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

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

.site-header.scrolled {
  background: rgba(5, 5, 5, 0.92);
  border-color: rgba(255, 255, 255, 0.08);
}

.site-header__inner,
.section,
.footer__inner {
  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 {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.2), rgba(255, 102, 0, 0.72));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-weight: 800;
}

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

.brand__name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand__tag {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

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

.site-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: transform var(--transition), color var(--transition), background var(--transition);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

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

.lang-switcher {
  position: relative;
}

.lang-switcher__button,
.button,
.button--ghost,
.button--text,
.filter-chip,
.sku-button,
.chain-step,
.locale-chip {
  border: 0;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    box-shadow var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.lang-switcher__button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.lang-switcher__button:hover,
.lang-switcher__button[aria-expanded="true"] {
  background: rgba(255, 255, 255, 0.1);
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  display: grid;
  gap: 6px;
  padding: 10px;
  border-radius: 18px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity var(--transition), visibility var(--transition), transform var(--transition);
}

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

.lang-switcher__menu a {
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
}

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

.button,
.button--ghost,
.button--text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.button {
  background: linear-gradient(135deg, var(--accent), #ff8b33);
  color: #111;
  box-shadow: 0 18px 40px rgba(255, 102, 0, 0.24);
}

.button--ghost,
.button--text,
.filter-chip,
.sku-button,
.locale-chip {
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), 0 10px 24px rgba(0, 0, 0, 0.12);
}

.button:hover,
.button--ghost:hover,
.button--text:hover,
.filter-chip:hover,
.sku-button:hover,
.locale-chip:hover,
.chain-step:hover {
  transform: translateY(-2px);
}

.button--text {
  padding-inline: 0;
  background: transparent;
  box-shadow: none;
  color: var(--accent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 8px rgba(255, 102, 0, 0.16);
}

.hero,
.page-hero {
  padding: 42px 0 28px;
}

.hero__grid,
.page-hero__grid {
  width: min(var(--max-width), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  gap: 28px;
  align-items: center;
}

.hero__grid {
  min-height: calc(100vh - var(--header-height));
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
}

.page-hero__grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
}

.hero__content h1,
.page-hero h1 {
  margin: 20px 0 18px;
  font-size: clamp(3.1rem, 5vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.05em;
}

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

.hero__actions,
.page-hero__actions,
.flow-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero__stack,
.hero__visual {
  position: relative;
}

.panel,
.glass-card,
.power-card,
.chain-step,
.brand-card,
.preview-card,
.catalog-card,
.factory-card,
.region-card,
.contact-card,
.cert-card,
.format-card,
.value-card,
.season-card,
.presence-map-card,
.cluster-card,
.info-card,
.table-card,
.cta-card,
.detail-card,
.stat-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.glass-card,
.panel,
.presence-map-card,
.cta-card {
  padding: 30px;
}

.visual-badge,
.cert-card__tag,
.meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--text);
  font-weight: 700;
}

.hero__stats,
.page-hero__stats,
.power-grid,
.brand-grid,
.preview-grid,
.product-grid,
.cert-grid,
.regions-grid,
.contact-grid,
.factory-grid,
.capacity-grid,
.format-grid,
.value-grid,
.season-grid,
.cluster-grid,
.info-grid,
.table-grid {
  display: grid;
  gap: 18px;
}

.hero__stats,
.page-hero__stats,
.power-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-card,
.power-card {
  padding: 18px;
}

.stat-card strong,
.power-card strong {
  display: block;
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.stat-card span,
.power-card span {
  color: var(--muted);
}

.hero__media-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.hero__media-grid > div,
.detail-card,
.info-card {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.section {
  padding: 56px 0;
}

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

.section__heading h2 {
  margin: 0;
  font-size: clamp(2.15rem, 3vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.section__heading p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  line-height: 1.75;
}

.section__intro {
  max-width: 760px;
  color: var(--muted);
  line-height: 1.8;
}

.power-strip {
  padding-top: 0;
}

.power-grid {
  position: relative;
}

.power-card {
  position: relative;
  overflow: hidden;
}

.power-card::after {
  content: "";
  position: absolute;
  inset: auto -22px -26px auto;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 102, 0, 0.28), transparent 68%);
}

.supply-chain {
  overflow: hidden;
}

.chain-track {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  position: relative;
}

.chain-track::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 102, 0, 0.2), rgba(255, 102, 0, 0.82), rgba(255, 102, 0, 0.2));
}

.chain-step {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  align-content: start;
  padding: 20px;
  text-align: left;
  background: rgba(12, 12, 12, 0.9);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08), var(--shadow);
}

.chain-step strong {
  font-size: 1.08rem;
}

.chain-step span {
  color: var(--muted);
  font-size: 0.95rem;
}

.brand-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.brand-card,
.preview-card,
.catalog-card,
.factory-card,
.cert-card,
.format-card,
.value-card,
.season-card,
.cluster-card {
  padding: 24px;
}

.brand-card h3,
.preview-card h3,
.catalog-card h3,
.factory-card h3,
.region-card h3,
.contact-card h3,
.cert-card h3,
.format-card h3,
.value-card h3,
.season-card h3,
.cluster-card h3,
.cta-card h2,
.table-card h3 {
  margin: 0 0 10px;
}

.brand-card p,
.preview-card p,
.catalog-card p,
.factory-card p,
.region-card p,
.contact-card p,
.cert-card p,
.format-card p,
.value-card p,
.season-card p,
.cluster-card p,
.cta-card p,
.info-card p,
.table-card p,
.form-status {
  margin: 0;
  color: var(--muted);
}

.brand-card__meta,
.catalog-card__meta,
.factory-card__meta,
.cert-card__meta,
.format-card__meta,
.presence-list,
.detail-list,
.info-points,
.spec-list,
.metric-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.chip,
.catalog-card__meta span,
.factory-card__meta span,
.cert-card__meta span,
.format-card__meta span,
.presence-list span,
.detail-list span,
.info-points span,
.spec-list span,
.metric-list span {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  font-size: 0.92rem;
}

.preview-grid,
.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.preview-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

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

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

.filter-chip {
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.filter-chip.active {
  background: var(--accent);
  color: #111;
  box-shadow: 0 16px 30px rgba(255, 102, 0, 0.24);
}

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

.catalog-card__header,
.factory-card__header,
.format-card__header,
.cluster-card__header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.catalog-card__eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
}

.catalog-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

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

.sku-button {
  padding: 10px 14px;
  border-radius: 999px;
}

.sku-button strong {
  font-weight: 700;
}

.table-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.table-card {
  padding: 20px;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.data-table th,
.data-table td {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.data-table th {
  width: 42%;
  text-align: left;
  color: var(--muted-strong);
  font-weight: 600;
}

.data-shell {
  display: grid;
  gap: 20px;
}

.factory-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.capacity-grid,
.format-grid,
.value-grid,
.season-grid,
.cluster-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.presence-map-card {
  overflow: hidden;
}

#presence-map {
  width: 100%;
  height: 520px;
  margin-top: 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.35);
}

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

.presence-columns ul,
.detail-card ul,
.region-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.presence-columns li + li,
.detail-card li + li,
.region-card li + li {
  margin-top: 8px;
}

.contact-grid {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
}

.contact-card {
  padding: 24px;
}

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

.contact-list a,
.contact-list span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.94rem;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  transition: border-color var(--transition), background var(--transition);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(255, 102, 0, 0.75);
  background: rgba(255, 255, 255, 0.06);
}

.form-status {
  min-height: 1.5rem;
}

.form-status.success {
  color: var(--success);
}

.cta-band {
  padding: 6px 0 34px;
}

.cta-card {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) auto;
  align-items: center;
  gap: 18px;
}

.metric-strip {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-box {
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-box strong {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.metric-box span {
  color: var(--muted);
}

/* Narrative / story sections */
.narrative {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

.narrative strong {
  color: var(--text);
}

.narrative em {
  color: var(--accent);
  font-style: normal;
}

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

.story-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.story-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.story-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.story-card p + p {
  margin-top: 12px;
}

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

.service-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.service-card h3 {
  margin: 0 0 10px;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

.timeline-grid {
  display: grid;
  gap: 0;
}

.timeline-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.timeline-step:last-child {
  border-bottom: none;
}

.timeline-num {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(255, 102, 0, 0.25);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
}

.timeline-body h3 {
  margin: 0 0 8px;
}

.timeline-body p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

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

.cert-explain-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--shadow);
}

.cert-explain-card h3 {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 1rem;
}

.cert-explain-card h4 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.cert-explain-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.64;
}

.quote-block {
  position: relative;
  padding: 28px 32px;
  margin: 28px 0;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  font-size: 1.14rem;
  color: var(--text);
  font-style: italic;
  line-height: 1.7;
}

.section__intro {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.72;
  margin-bottom: 28px;
}

.section__intro + .section__intro {
  margin-top: -12px;
}

/* Company profile timeline */
.cp-timeline {
  position: relative;
  padding-left: 40px;
}

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

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

.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 18px rgba(255, 102, 0, 0.5);
}

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

.cp-milestone__title {
  font-weight: 700;
  font-size: 1.08rem;
  margin-bottom: 6px;
}

.cp-milestone__desc {
  color: var(--muted);
  line-height: 1.68;
  max-width: 640px;
}

/* Image placeholder */
.img-placeholder {
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 102, 0, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
  padding: 24px;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 24px,
    rgba(255, 255, 255, 0.015) 24px,
    rgba(255, 255, 255, 0.015) 25px
  );
}

.img-placeholder__icon {
  opacity: 0.35;
  font-size: 2.4rem;
  margin-bottom: 8px;
}

.img-placeholder span {
  position: relative;
  z-index: 1;
}

/* Gallery grid for media section */
.gallery-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* Exhibition cards */
.expo-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.expo-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition), transform var(--transition);
}

.expo-card:hover {
  border-color: rgba(255, 102, 0, 0.3);
  transform: translateY(-2px);
}

.expo-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
}

.expo-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.expo-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.68;
}

/* Dual CTA buttons */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

/* Stat counter large */
.stat-counter-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  text-align: center;
}

.stat-counter {
  padding: 28px 12px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 102, 0, 0.12), rgba(255, 102, 0, 0.04));
  border: 1px solid rgba(255, 102, 0, 0.2);
}

.stat-counter__num {
  display: block;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.04em;
  line-height: 1.15;
}

.stat-counter__label {
  display: block;
  color: var(--muted);
  font-size: 0.88rem;
  margin-top: 6px;
}

.site-footer {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__inner {
  padding: 24px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  visibility: hidden;
  z-index: 400;
  transition: opacity var(--transition), visibility var(--transition);
}

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

.modal__panel {
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(12, 12, 12, 0.98), rgba(6, 6, 6, 0.98));
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.modal__header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 18px;
  padding: 24px 24px 18px;
  background: rgba(10, 10, 10, 0.95);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.modal__header h3 {
  margin: 6px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.04em;
}

.modal__close {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.modal__body {
  padding: 24px;
}

.jvm-container {
  background: transparent !important;
}

.jvm-tooltip {
  background: rgba(12, 12, 12, 0.96);
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.3);
  padding: 10px 12px;
}

[dir="rtl"] body,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select {
  font-family: "Cairo", "Tahoma", "Segoe UI", sans-serif;
}

[dir="rtl"] .site-header__inner,
[dir="rtl"] .section__heading,
[dir="rtl"] .footer__inner,
[dir="rtl"] .cta-card,
[dir="rtl"] .page-hero__grid,
[dir="rtl"] .hero__grid,
[dir="rtl"] .contact-grid,
[dir="rtl"] .field-grid {
  direction: rtl;
}

[dir="rtl"] .lang-switcher__menu {
  left: 0;
  right: auto;
}

[dir="rtl"] .presence-columns ul,
[dir="rtl"] .detail-card ul,
[dir="rtl"] .region-card ul {
  padding-left: 0;
  padding-right: 18px;
}

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

@media (max-width: 1120px) {
  .hero__grid,
  .page-hero__grid,
  .contact-grid,
  .cta-card,
  .factory-grid,
  .presence-columns,
  .table-grid {
    grid-template-columns: 1fr;
  }

  .brand-grid,
  .preview-grid,
  .capacity-grid,
  .format-grid,
  .value-grid,
  .season-grid,
  .cluster-grid,
  .story-grid,
  .cert-explain-grid,
  .expo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stat-counter-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .power-grid,
  .hero__stats,
  .page-hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chain-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .chain-track::before {
    display: none;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header__inner,
  .section,
  .footer__inner,
  .hero__grid,
  .page-hero__grid {
    width: min(var(--max-width), calc(100% - 22px));
  }

  .hero__content h1,
  .page-hero h1 {
    font-size: 2.7rem;
  }

  .hero__stats,
  .page-hero__stats,
  .power-grid,
  .brand-grid,
  .preview-grid,
  .capacity-grid,
  .format-grid,
  .value-grid,
  .season-grid,
  .cluster-grid,
  .metric-strip,
  .field-grid,
  .story-grid,
  .service-grid,
  .cert-explain-grid,
  .expo-grid,
  .gallery-grid,
  .stat-counter-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .chain-track {
    grid-template-columns: 1fr;
  }

  .glass-card,
  .panel,
  .presence-map-card,
  .cta-card,
  .brand-card,
  .preview-card,
  .catalog-card,
  .factory-card,
  .cert-card,
  .format-card,
  .value-card,
  .season-card,
  .cluster-card,
  .contact-card,
  .region-card,
  .table-card,
  .expo-card {
    padding: 22px;
  }

  .modal {
    padding: 10px;
  }

  .modal__header,
  .modal__body {
    padding: 18px;
  }

  #presence-map {
    height: 420px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT FAMILY PAGES
   ═══════════════════════════════════════════════════════════════ */

.pf-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 0 0;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}
.pf-breadcrumb a { color: var(--accent); text-decoration: none; }
.pf-breadcrumb a:hover { text-decoration: underline; }
.pf-breadcrumb .sep { user-select: none; }

/* Product cards grid */
.pf-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pf-product-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035)),
    radial-gradient(circle at top right, rgba(255,102,0,.08), transparent 38%);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 22px;
  padding: 34px 30px;
  box-shadow: 0 18px 48px rgba(0,0,0,.18);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.pf-product-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,102,0,.65), rgba(255,102,0,.12), transparent);
}
.pf-product-card:hover {
  transform: translateY(-5px) scale(1.01);
  border-color: var(--accent);
  box-shadow: 0 28px 60px rgba(0,0,0,.24), 0 0 0 1px rgba(255,102,0,.12) inset;
}
.pf-product-card h3 {
  font-size: 1.36rem;
  line-height: 1.18;
  margin: 0 0 12px;
}
.pf-product-card .pf-brand-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(255,102,0,.12);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.pf-product-card .pf-brand-tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 6px rgba(255,102,0,.12);
}
.pf-product-card p {
  font-size: .97rem;
  color: rgba(255,255,255,.72);
  line-height: 1.78;
  margin: 0 0 18px;
}
.pf-product-card .pf-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 22px;
}
.pf-product-card .pf-spec-tag {
  font-size: .76rem;
  color: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(255,255,255,.045);
}
.pf-product-card .button { font-size: .85rem; width: 100%; text-align: center; }

/* Packaging visual strip */
.pf-packaging-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
}
.pf-pack-card {
  background: linear-gradient(180deg, rgba(255,255,255,.075), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
  transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}
.pf-pack-card:hover {
  border-color: rgba(255,102,0,.55);
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(0,0,0,.2);
}
.pf-pack-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  background: rgba(255,102,0,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
}
.pf-pack-card h4 {
  font-size: 1.02rem;
  margin: 0 0 8px;
}
.pf-pack-card p {
  font-size: .86rem;
  color: rgba(255,255,255,.62);
  line-height: 1.68;
}

/* Size options */
.pf-size-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.pf-size-card {
  background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 24px 28px;
  text-align: center;
  min-width: 132px;
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
  transition: border-color .28s ease, transform .28s ease, box-shadow .28s ease;
}
.pf-size-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 22px 40px rgba(0,0,0,.18);
}
.pf-size-card .pf-size-value {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.pf-size-card .pf-size-label {
  font-size: .76rem;
  color: rgba(255,255,255,.62);
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* Technical strength */
.pf-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.pf-tech-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 32px;
}
.pf-tech-card h4 {
  font-size: 1.05rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.pf-tech-card p {
  font-size: .9rem;
  color: rgba(255,255,255,.65);
  line-height: 1.65;
}

/* Export flexibility cards */
.pf-flex-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pf-flex-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  transition: border-color .3s ease;
}
.pf-flex-card:hover { border-color: var(--accent); }
.pf-flex-card .pf-flex-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block;
}
.pf-flex-card h4 { font-size: .95rem; margin-bottom: 8px; }
.pf-flex-card p { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 1.5; }

/* PDF download section */
.pf-download {
  background: linear-gradient(135deg, rgba(255,102,0,.12), rgba(255,102,0,.04));
  border: 1px solid rgba(255,102,0,.25);
  border-radius: 18px;
  padding: 48px;
  text-align: center;
}
.pf-download h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.pf-download p {
  font-size: .95rem;
  color: rgba(255,255,255,.65);
  max-width: 580px;
  margin: 0 auto 24px;
  line-height: 1.6;
}
.pf-download .button {
  font-size: 1rem;
  padding: 14px 38px;
}

/* Why UKA strip */
.pf-why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pf-why-card {
  background: rgba(255,255,255,.04);
  border-left: 3px solid var(--accent);
  border-radius: 0 14px 14px 0;
  padding: 26px 24px;
}
.pf-why-card h4 { font-size: .95rem; margin-bottom: 8px; }
.pf-why-card p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.55; }

/* Responsive - product family */
@media (max-width: 1120px) {
  .pf-product-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-packaging-grid { grid-template-columns: repeat(3, 1fr); }
  .pf-tech-grid { grid-template-columns: 1fr; }
  .pf-flex-grid { grid-template-columns: repeat(2, 1fr); }
  .pf-why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .pf-product-grid { grid-template-columns: 1fr; }
  .pf-packaging-grid { grid-template-columns: 1fr; }
  .pf-flex-grid { grid-template-columns: 1fr; }
  .pf-why-grid { grid-template-columns: 1fr; }
  .pf-size-grid { justify-content: center; }
  .pf-download { padding: 32px 20px; }
}

/* ═══════════════════════════════════════════════════════════════
   DROPDOWN NAVIGATION
   ═══════════════════════════════════════════════════════════════ */

.nav-dropdown {
  position: relative;
}

.nav-dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  background: none;
  border: none;
  font-size: inherit;
  font-family: inherit;
}

.nav-dropdown__toggle::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition);
}

.nav-dropdown.open .nav-dropdown__toggle::after {
  transform: rotate(180deg);
}

.nav-dropdown__toggle:hover,
.nav-dropdown.open .nav-dropdown__toggle {
  color: var(--text);
  background: rgba(255,255,255,.05);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 210px;
  background: var(--bg-elevated);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-sm);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
  z-index: 1000;
  box-shadow: 0 16px 48px rgba(0,0,0,.5);
}

.nav-dropdown.open .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 20px;
  color: var(--muted);
  font-size: .88rem;
  transition: color .15s ease, background .15s ease, padding-left .15s ease;
}

.nav-dropdown__menu a:hover {
  color: var(--accent);
  background: rgba(255,102,0,.06);
  padding-left: 24px;
}

/* Mobile hamburger */
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
  z-index: 110;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px auto;
  transition: transform .3s ease, opacity .3s ease;
  border-radius: 2px;
}

body.mobile-nav-open .nav-hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
body.mobile-nav-open .nav-hamburger span:nth-child(2) {
  opacity: 0;
}
body.mobile-nav-open .nav-hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--header-height);
  background: var(--bg);
  z-index: 100;
  padding: 24px;
  overflow-y: auto;
}

body.mobile-nav-open .mobile-nav-overlay {
  display: block;
}

.mobile-nav-overlay a,
.mobile-nav-overlay summary {
  display: block;
  padding: 14px 0;
  font-size: 1.1rem;
  color: var(--muted);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-nav-overlay a:hover { color: var(--accent); }

.mobile-nav-overlay details {
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.mobile-nav-overlay details summary {
  cursor: pointer;
  list-style: none;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-nav-overlay details summary::after {
  content: '+';
  font-size: 1.2rem;
  color: var(--accent);
  transition: transform .2s ease;
}

.mobile-nav-overlay details[open] summary::after {
  content: '−';
}

.mobile-nav-overlay details a {
  padding: 10px 0 10px 18px;
  font-size: .95rem;
  border-bottom: none;
}

/* ═══════════════════════════════════════════════════════════════
   ACCORDION COMPONENT
   ═══════════════════════════════════════════════════════════════ */

.accordion {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  padding: 10px;
  background: linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.015));
  overflow: hidden;
}

.accordion__item {
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  transition: border-color .28s ease, box-shadow .28s ease, background .28s ease;
}

.accordion__item + .accordion__item {
  margin-top: 10px;
}

.accordion__item:last-child { border-bottom: 1px solid rgba(255,255,255,.06); }

.accordion__item.open {
  border-color: rgba(255,102,0,.18);
  background: rgba(255,255,255,.04);
  box-shadow: 0 18px 34px rgba(0,0,0,.14);
}

.accordion__trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, color .25s ease;
}

.accordion__trigger:hover {
  background: rgba(255,255,255,.03);
}

.accordion__trigger::after {
  content: '+';
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,102,0,.1);
  border: 1px solid rgba(255,102,0,.15);
  font-size: 1.25rem;
  color: var(--accent);
  font-weight: 400;
  transition: transform .35s ease, background .35s ease, border-color .35s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

.accordion__item.open .accordion__trigger::after {
  content: '−';
  background: rgba(255,102,0,.16);
  border-color: rgba(255,102,0,.28);
  transform: rotate(180deg);
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.8,.2,1);
}

.accordion__inner {
  padding: 0 28px 26px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity .28s ease, transform .28s ease;
}

.accordion__item.open .accordion__inner {
  opacity: 1;
  transform: translateY(0);
}

.accordion__inner p {
  color: rgba(255,255,255,.74);
  line-height: 1.82;
  margin-bottom: 14px;
}

.accordion__inner p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════════════
   TAB COMPONENT
   ═══════════════════════════════════════════════════════════════ */

.tabs {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tabs__nav {
  display: flex;
  background: rgba(255,255,255,.02);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.tabs__nav button {
  flex: 1;
  min-width: fit-content;
  padding: 16px 24px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  position: relative;
  transition: color .2s ease, background .2s ease;
  white-space: nowrap;
}

.tabs__nav button:hover {
  color: var(--text);
  background: rgba(255,255,255,.03);
}

.tabs__nav button.active {
  color: var(--accent);
}

.tabs__nav button.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: var(--accent);
  border-radius: 2px 2px 0 0;
}

.tabs__panel {
  display: none;
  padding: 28px;
}

.tabs__panel.active {
  display: block;
}

.tabs__panel p {
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   LEADERSHIP CARDS
   ═══════════════════════════════════════════════════════════════ */

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.leader-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  transition: border-color .3s ease, transform .3s ease;
}

.leader-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.leader-card__avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
}

.leader-card h4 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.leader-card__role {
  display: block;
  font-size: .82rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
}

.leader-card p {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   COMMERCIAL INFO CARDS
   ═══════════════════════════════════════════════════════════════ */

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

.commercial-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  padding: 26px 22px;
  transition: border-color .3s ease;
}

.commercial-card:hover { border-color: var(--accent); }

.commercial-card__icon {
  font-size: 1.5rem;
  margin-bottom: 10px;
  display: block;
}

.commercial-card h4 {
  font-size: .95rem;
  margin-bottom: 8px;
}

.commercial-card p {
  font-size: .82rem;
  color: rgba(255,255,255,.55);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════════════════════════
   EXHIBITION SECTION
   ═══════════════════════════════════════════════════════════════ */

.exhibition-strip {
  background: linear-gradient(135deg, rgba(255,102,0,.08), rgba(255,102,0,.02));
  border: 1px solid rgba(255,102,0,.15);
  border-radius: var(--radius-md);
  padding: 48px 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.exhibition-strip h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.exhibition-strip p {
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  margin-bottom: 12px;
}

.exhibition-strip p:last-child { margin-bottom: 0; }

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

.exhibition-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.exhibition-badge strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
  margin-bottom: 4px;
}

.exhibition-badge span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE — NEW COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1120px) {
  .leadership-grid { grid-template-columns: repeat(2, 1fr); }
  .commercial-grid { grid-template-columns: repeat(2, 1fr); }
  .exhibition-strip { grid-template-columns: 1fr; }
  .nav-hamburger { display: block; }
  .site-nav { display: none !important; }
}

@media (max-width: 760px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .commercial-grid { grid-template-columns: 1fr; }
  .tabs__nav { flex-wrap: nowrap; }
  .tabs__nav button { padding: 12px 16px; font-size: .82rem; }
  .accordion__trigger { padding: 18px 20px; font-size: .95rem; }
  .accordion__inner { padding: 0 20px 20px; }
  .tabs__panel { padding: 20px; }
  .exhibition-strip { padding: 32px 22px; }
}

/* ═══════════════════════════════════════════════════════════════
   PHASE 7 – UX OPTIMIZATION COMPONENTS
   ═══════════════════════════════════════════════════════════════ */

/* ── WhatsApp Floating Button ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none;
  font-size: 0;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 28px; height: 28px; fill: currentColor; }

/* ── Export Process Flow ── */
.export-flow { padding: 80px 0; }
.export-flow .section-label { text-align: center; }
.flow-track {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 48px;
  flex-wrap: wrap;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 140px;
  position: relative;
}
.flow-step__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,102,0,.12);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 14px;
  transition: background .3s;
}
.flow-step:hover .flow-step__icon {
  background: var(--accent);
  color: #fff;
}
.flow-step__label {
  font-weight: 700;
  font-size: .92rem;
  color: #fff;
  margin-bottom: 4px;
}
.flow-step__sub {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
  max-width: 120px;
}
.flow-arrow {
  display: flex;
  align-items: center;
  padding-top: 18px;
  color: var(--accent);
  font-size: 1.3rem;
  flex: 0 0 32px;
  justify-content: center;
}

/* ── Business Starter Block ── */
.starter-block { padding: 80px 0; }
.starter-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
  counter-reset: starter;
}
.starter-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  counter-increment: starter;
  transition: border-color .3s, transform .3s;
}
.starter-step:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.starter-step::before {
  content: counter(starter);
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}
.starter-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.starter-step p {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

/* ── FAQ Section ── */
.faq-section { padding: 80px 0; }
.faq-grid {
  max-width: 860px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  padding: 22px 48px 22px 0;
  cursor: pointer;
  position: relative;
  font-family: inherit;
}
.faq-item__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform .3s;
}
.faq-item.open .faq-item__q::after {
  content: '−';
}
.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
}
.faq-item.open .faq-item__a {
  max-height: 400px;
}
.faq-item__a p {
  padding: 0 0 22px;
  font-size: .94rem;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
}

/* ── Documents Available Grid ── */
.docs-section { padding: 80px 0; }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.doc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.doc-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.doc-card__icon {
  font-size: 2rem;
  margin-bottom: 14px;
  display: block;
}
.doc-card h3 {
  font-size: .98rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.doc-card p {
  font-size: .84rem;
  color: rgba(255,255,255,.55);
  line-height: 1.5;
}

/* ── Why UKA Compact Strip ── */
.why-strip { padding: 60px 0; }
.why-strip__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.why-strip__card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  transition: border-color .3s;
}
.why-strip__card:hover { border-color: var(--accent); }
.why-strip__card span {
  display: block;
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.why-strip__card strong {
  display: block;
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.why-strip__card p {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  line-height: 1.4;
}

/* ── Use Cases Dropdown (Product Pages) ── */
.use-cases { padding: 60px 0; }
.use-cases__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.use-case-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 32px 24px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.use-case-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.use-case-card__icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.use-case-card h3 { font-size: .98rem; font-weight: 700; margin-bottom: 8px; }
.use-case-card p { font-size: .84rem; color: rgba(255,255,255,.55); line-height: 1.5; }

/* ── Phase 7 Responsive ── */
@media (max-width: 1120px) {
  .starter-steps { grid-template-columns: repeat(2, 1fr); }
  .docs-grid { grid-template-columns: repeat(2, 1fr); }
  .why-strip__grid { grid-template-columns: repeat(3, 1fr); }
  .use-cases__grid { grid-template-columns: repeat(2, 1fr); }
  .flow-track { gap: 8px; }
  .flow-step { flex: 0 0 110px; }
}
@media (max-width: 760px) {
  .starter-steps { grid-template-columns: 1fr; }
  .docs-grid { grid-template-columns: 1fr; }
  .why-strip__grid { grid-template-columns: 1fr; }
  .use-cases__grid { grid-template-columns: 1fr; }
  .flow-track { flex-direction: column; align-items: center; }
  .flow-arrow { transform: rotate(90deg); padding: 0; }
  .flow-step { flex: 0 0 auto; }
  .whatsapp-float { bottom: 18px; right: 18px; width: 50px; height: 50px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .logistics-grid { grid-template-columns: 1fr; }
  .container-table { font-size: .82rem; }
  .logistics-strength__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════
   LOGISTICS & SHIPPING SYSTEM
   ═══════════════════════════════════════════════════════════════ */

.logistics-section { padding: 80px 0; }
.logistics-section .section-label { margin-bottom: 12px; }
.logistics-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  color: rgba(255,255,255,.6);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Shipping methods grid */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.logistics-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 36px 28px;
  text-align: center;
  transition: border-color .3s, transform .3s;
}
.logistics-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.logistics-card__icon { font-size: 2.4rem; margin-bottom: 16px; display: block; }
.logistics-card h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 10px; }
.logistics-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.6; }

/* Container types table */
.container-table {
  width: 100%;
  border-collapse: collapse;
  margin: 36px 0 56px;
  font-size: .92rem;
}
.container-table th,
.container-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.container-table th {
  color: var(--accent);
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.container-table td { color: rgba(255,255,255,.7); }
.container-table tr:hover td { color: #fff; }

/* Logistics strength cards */
.logistics-strength__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 36px;
}
.logistics-strength__card {
  background: rgba(255,102,0,.06);
  border: 1px solid rgba(255,102,0,.18);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s;
}
.logistics-strength__card:hover { transform: translateY(-3px); }
.logistics-strength__card span { display: block; font-size: 1.6rem; margin-bottom: 10px; }
.logistics-strength__card strong { display: block; font-size: .92rem; font-weight: 700; margin-bottom: 6px; }
.logistics-strength__card p { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.5; }

@media (max-width: 1120px) {
  .logistics-grid { grid-template-columns: 1fr; }
  .logistics-strength__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  .logistics-strength__grid { grid-template-columns: 1fr; }
  .container-table th, .container-table td { padding: 12px 14px; }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT EMPIRE PLATFORM
   ═══════════════════════════════════════════════════════════════ */

body.empire-page-active {
  background:
    radial-gradient(circle at top right, rgba(255, 102, 0, 0.18), transparent 28%),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.05), transparent 24%),
    var(--bg);
}

.empire-section {
  content-visibility: auto;
  contain-intrinsic-size: 720px;
}

.empire-section--tight {
  padding-top: 16px;
}

.empire-shell .site-header__inner,
.empire-shell .section,
.empire-shell .footer__inner,
.empire-shell .page-hero__grid {
  width: min(var(--max-width), calc(100% - 40px));
}

.empire-power-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.empire-hero .page-hero__grid {
  gap: 42px;
}

.empire-hero-card {
  min-height: 100%;
}

.empire-filter-block {
  gap: 20px;
}

.empire-grid {
  gap: 26px;
}

.empire-card {
  min-height: 100%;
}

.empire-card--compact {
  padding-block: 30px;
}

.empire-grid--flavors .pf-product-card {
  padding: 28px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.085), rgba(255,255,255,.035)),
    radial-gradient(circle at top left, rgba(255,102,0,.1), transparent 44%);
}

.empire-grid--flavors .pf-product-card::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff8b33, #ffd28a);
  box-shadow: 0 0 0 8px rgba(255,102,0,.08);
}

.empire-grid--flavors .pf-product-card h3 {
  padding-right: 32px;
}

.empire-grid--flavors .pf-brand-tag {
  margin-bottom: 14px;
}

.empire-grid--flavors .pf-product-card p {
  margin-bottom: 0;
}

.empire-packaging-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.empire-pack-card {
  text-align: left;
  padding: 30px 26px;
  display: grid;
  gap: 14px;
  justify-items: start;
}

.empire-pack-card__badge {
  margin-bottom: 4px;
}

.empire-pack-card .pf-specs {
  margin: 0;
}

.empire-size-grid {
  justify-content: flex-start;
}

.empire-size-note {
  margin: 12px 0 0;
  font-size: .84rem;
  color: rgba(255,255,255,.58);
  line-height: 1.55;
}

.empire-related-grid {
  gap: 22px;
}

.empire-section .section__heading {
  margin-bottom: 34px;
}

.empire-section + .empire-section {
  border-top: 1px solid rgba(255,255,255,.06);
}

.empire-injection-root {
  margin-top: 12px;
}

.empire-injection-root .section {
  padding-top: 12px;
}

.empire-injection-root .pf-product-card .button {
  width: auto;
}

html[dir="rtl"] .empire-pack-card,
html[dir="rtl"] .accordion__trigger,
html[dir="rtl"] .pf-breadcrumb,
html[dir="rtl"] .pf-product-card,
html[dir="rtl"] .preview-card,
html[dir="rtl"] .glass-card {
  text-align: right;
}

html[dir="rtl"] .empire-size-grid {
  justify-content: flex-end;
}

html[dir="rtl"] .empire-grid--flavors .pf-product-card::after {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .empire-grid--flavors .pf-product-card h3 {
  padding-right: 0;
  padding-left: 32px;
}

html[dir="rtl"] .accordion__trigger::after {
  margin-left: 0;
  margin-right: 16px;
}

@media (max-width: 1120px) {
  .empire-power-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .empire-packaging-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .empire-power-grid {
    grid-template-columns: 1fr;
  }

  .empire-size-grid {
    justify-content: center;
  }

  html[dir="rtl"] .empire-size-grid {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════════════════════════════
   HERBS SHOWCASE
   ═══════════════════════════════════════════════════════════════ */

.herbs-showcase-page .section-title {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.herbs-showcase-page .section-intro,
.herbs-showcase-page .herb-section-intro,
.herbs-showcase-page .accordion__content > p,
.herbs-showcase-page .accordion__inner > p {
  max-width: 760px;
  line-height: 1.82;
}

.herbs-showcase-page .herb-varieties-section .card-grid {
  margin-top: 28px;
}

.herb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.herb-card {
  background: #ffffff;
  border: 1px solid rgba(24, 50, 22, 0.08);
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.herb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(255, 102, 0, 0.24);
}

.herb-card__body {
  display: grid;
  gap: 10px;
  padding: 18px 18px 20px;
}

.herb-card__heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  min-height: 48px;
}

.herb-card__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(235, 247, 237, 1), rgba(250, 244, 226, 1));
  box-shadow: inset 0 0 0 1px rgba(41, 93, 48, 0.08);
  font-size: 1.25rem;
}

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

.herb-card__positioning,
.herb-card__benefit {
  margin: 0;
}

.herb-card__positioning {
  color: #3f6349;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.55;
}

.herb-card__benefit {
  color: #66756c;
  font-size: .83rem;
  line-height: 1.62;
}

.herb-packaging-section .section-title {
  margin-bottom: 18px;
}

.herb-packaging-accordion {
  padding: 0;
  border: 0;
  background: transparent;
  display: grid;
  gap: 18px;
  overflow: visible;
}

.herb-packaging-accordion .herb-packaging-card {
  background: #ffffff;
  border: 1px solid rgba(24, 50, 22, 0.08);
  border-radius: 20px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.herb-packaging-accordion .accordion__item + .accordion__item {
  margin-top: 0;
}

.herb-packaging-card .accordion__trigger {
  color: #17311c;
  background: transparent;
  padding: 22px 24px;
}

.herb-packaging-card .accordion__trigger:hover {
  background: rgba(24, 50, 22, 0.03);
}

.herb-packaging-card .accordion__trigger::after {
  background: rgba(61, 129, 58, 0.08);
  border-color: rgba(61, 129, 58, 0.14);
}

.herb-packaging-card__body,
.herb-packaging-card .accordion__content,
.herb-packaging-card .accordion__inner {
  padding: 0 24px 24px;
}

.herb-packaging-card__intro,
.herb-packaging-card__support {
  color: #55655c;
  font-size: .94rem;
  line-height: 1.75;
  margin: 0 0 12px;
}

.herb-packaging-card__support:last-of-type {
  margin-bottom: 0;
}

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

.herb-size-tag-grid--single {
  margin-top: 16px;
}

.herb-size-chip,
.herb-size-tag-card h4 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(33, 83, 35, 0.14);
  background: #f8faf8;
  color: #1d3821;
  font-size: .84rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.herb-size-chip:hover,
.herb-size-tag-card:hover h4 {
  transform: translateY(-2px);
  border-color: rgba(255, 102, 0, 0.3);
  background: #fff5ee;
}

.herb-size-tag-card {
  background: transparent;
  border: 0;
  box-shadow: none;
  flex: 0 0 auto;
  min-width: 0;
}

.herb-size-tag-card__body,
.herb-size-tag-card .card__body {
  padding: 0;
  display: grid;
  gap: 6px;
  justify-items: center;
}

.herb-size-tag-card h4 {
  margin: 0;
}

.herb-size-tag-card p {
  margin: 0;
  max-width: 110px;
  color: #6a756d;
  font-size: .72rem;
  line-height: 1.35;
  text-align: center;
}

.herbs-showcase-page .card-grid.card-grid--3,
.herbs-showcase-page .card-grid.card-grid--4 {
  gap: 22px;
}

@media (max-width: 760px) {
  .herb-grid {
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
  }

  .herb-packaging-card .accordion__trigger,
  .herb-packaging-card__body,
  .herb-packaging-card .accordion__content,
  .herb-packaging-card .accordion__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ═══════════════════════════════════════════════════════════════
   PRODUCT PLATFORM VISUAL SYSTEM
   ═══════════════════════════════════════════════════════════════ */

.product-platform-page .section,
.product-platform-page .page-hero__grid {
  width: min(1440px, calc(100% - 36px));
}

.product-platform-page .hero h1,
.product-platform-page .hero--dark h1,
.product-platform-page .section-title,
.product-platform-page .section__heading h2 {
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.product-platform-page .hero__subtitle,
.product-platform-page .section-intro,
.product-platform-page .product-platform-intro,
.product-platform-page .section__heading p,
.product-platform-page .accordion__content > p,
.product-platform-page .accordion__inner > p {
  max-width: 760px;
  color: #5f6e64;
  line-height: 1.84;
}

.product-platform-page .section,
.product-platform-page .why-strip,
.product-platform-page .cta-band {
  margin-block: clamp(48px, 7vw, 88px);
}

.product-platform-page .card-grid,
.product-platform-page .pf-product-grid,
.product-platform-page .pf-packaging-grid,
.product-platform-page .empire-grid {
  gap: 22px;
}

.product-platform-page .product-platform-card,
.product-platform-page .product-platform-accordion-card,
.product-platform-page .pf-size-card,
.product-platform-page .catalog-card,
.product-platform-page .preview-card {
  border-radius: 20px;
  border: 1px solid rgba(18, 41, 25, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 245, 0.98));
  box-shadow: 0 14px 38px rgba(22, 34, 21, 0.08);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.product-platform-page .product-platform-card:hover,
.product-platform-page .product-platform-accordion-card:hover,
.product-platform-page .catalog-card:hover,
.product-platform-page .preview-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(22, 34, 21, 0.12);
  border-color: rgba(255, 102, 0, 0.18);
}

.product-platform-page .product-platform-card__body,
.product-platform-page .card > .card__body,
.product-platform-page .catalog-card,
.product-platform-page .preview-card,
.product-platform-page .pf-product-card,
.product-platform-page .pf-pack-card {
  padding: 0;
}

.product-platform-page .product-platform-card > .card__body,
.product-platform-page .card.product-platform-card > .card__body,
.product-platform-page .pf-product-card.product-platform-card,
.product-platform-page .pf-pack-card.product-platform-card,
.product-platform-page .catalog-card.product-platform-card,
.product-platform-page .preview-card.product-platform-card {
  display: grid;
  align-content: start;
}

.product-platform-page .product-platform-card h3,
.product-platform-page .product-platform-card h4,
.product-platform-page .catalog-card h3,
.product-platform-page .preview-card h3 {
  margin: 0 0 10px;
  color: #16331d;
}

.product-platform-page .product-platform-card p,
.product-platform-page .catalog-card p,
.product-platform-page .preview-card p,
.product-platform-page .pf-pack-card p,
.product-platform-page .pf-product-card p {
  color: #617166;
  line-height: 1.76;
}

.product-platform-page .product-platform-card > :not(.product-platform-media),
.product-platform-page .catalog-card.product-platform-card > :not(.product-platform-media),
.product-platform-page .preview-card.product-platform-card > :not(.product-platform-media) {
  padding-inline: 22px;
}

.product-platform-page .product-platform-card > *:last-child,
.product-platform-page .catalog-card.product-platform-card > *:last-child,
.product-platform-page .preview-card.product-platform-card > *:last-child {
  padding-bottom: 24px;
}

.product-platform-page .product-platform-card > .card__body,
.product-platform-page .card.product-platform-card > .card__body {
  padding: 20px 22px 24px;
}

.product-platform-media {
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border-radius: 20px 20px 0 0;
  background:
    radial-gradient(circle at top left, rgba(255, 184, 126, 0.28), transparent 52%),
    linear-gradient(135deg, #eef6ef 0%, #f8f0df 52%, #f3f6f0 100%);
  isolation: isolate;
}

.product-platform-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 64%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(18, 34, 17, 0.18));
  pointer-events: none;
}

.product-platform-media__image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
  transform: scale(1.01);
}

.product-platform-card--flavor .product-platform-media {
  min-height: 148px;
}

.product-platform-card--packaging .product-platform-media {
  min-height: 154px;
}

.product-platform-media__badge {
  position: absolute;
  inset: 16px auto auto 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(17, 36, 22, 0.58);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.product-platform-page .pf-brand-tag,
.product-platform-page .meta-badge {
  margin: 18px 22px 0;
}

.product-platform-page .pf-specs {
  gap: 10px;
  padding-inline: 22px;
  padding-bottom: 18px;
}

.product-platform-page .pf-spec-tag {
  border-radius: 999px;
  border: 1px solid rgba(29, 68, 39, 0.1);
  background: #f9fbf8;
  box-shadow: 0 5px 14px rgba(21, 39, 21, 0.05);
}

.product-platform-page .product-platform-accordion {
  display: grid;
  gap: 18px;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.product-platform-page .product-platform-accordion-card {
  overflow: hidden;
}

.product-platform-page .product-platform-accordion .accordion__item + .accordion__item {
  margin-top: 0;
}

.product-platform-page .product-platform-accordion .accordion__trigger {
  min-height: 76px;
  padding: 22px 24px;
  background: transparent;
  color: #17311c;
}

.product-platform-page .product-platform-accordion .accordion__trigger:hover {
  background: rgba(24, 50, 22, 0.03);
}

.product-platform-page .product-platform-accordion .accordion__trigger::after {
  background: rgba(55, 116, 61, 0.08);
  border-color: rgba(55, 116, 61, 0.14);
}

.product-platform-page .product-platform-accordion .accordion__body {
  transition: max-height .34s ease;
}

.product-platform-page .product-platform-accordion .accordion__content,
.product-platform-page .product-platform-accordion .accordion__inner {
  padding: 0 24px 24px;
}

.product-platform-page .product-platform-size-token,
.product-platform-page .product-platform-size-chip {
  border-radius: 18px;
  border: 1px solid rgba(22, 59, 29, 0.1);
  background: #fff;
  box-shadow: 0 10px 26px rgba(18, 34, 17, 0.07);
}

.product-platform-page .pf-size-grid {
  gap: 14px;
}

.product-platform-page .pf-size-card,
.product-platform-page .product-platform-size-chip {
  min-height: auto;
}

.product-platform-page .pf-size-card {
  padding: 16px 18px;
}

.product-platform-page .product-platform-size-chip {
  display: inline-grid;
  align-content: center;
}

.product-platform-page .product-platform-size-chip__body,
.product-platform-page .product-platform-size-chip > .card__body {
  padding: 12px 16px;
  justify-items: center;
  gap: 6px;
}

.product-platform-page .product-platform-size-chip h4,
.product-platform-page .pf-size-value {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(27, 69, 36, 0.12);
  background: #f9faf8;
  color: #193621;
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(18, 34, 17, 0.05);
}

.product-platform-page .product-platform-size-chip p,
.product-platform-page .pf-size-label,
.product-platform-page .empire-size-note {
  margin: 0;
  color: #66756b;
  font-size: .78rem;
  line-height: 1.45;
}

.product-platform-page .pf-pack-icon {
  margin: 0 22px 0;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(236, 247, 238, 1), rgba(250, 243, 223, 1));
  box-shadow: inset 0 0 0 1px rgba(35, 77, 42, 0.08);
}

html[dir="rtl"] .product-platform-page .product-platform-media__badge {
  inset: 16px 16px auto auto;
}

html[dir="rtl"] .product-platform-page .product-platform-card,
html[dir="rtl"] .product-platform-page .product-platform-accordion-card,
html[dir="rtl"] .product-platform-page .pf-size-card {
  text-align: right;
}

@media (max-width: 920px) {
  .product-platform-page .section,
  .product-platform-page .page-hero__grid {
    width: min(1440px, calc(100% - 24px));
  }

  .product-platform-page .card-grid,
  .product-platform-page .pf-product-grid,
  .product-platform-page .pf-packaging-grid,
  .product-platform-page .empire-grid {
    gap: 18px;
  }
}

@media (max-width: 760px) {
  .product-platform-page .section,
  .product-platform-page .page-hero__grid {
    width: min(1440px, calc(100% - 20px));
  }

  .product-platform-media,
  .product-platform-media__image {
    min-height: 138px;
  }

  .product-platform-page .product-platform-card > .card__body,
  .product-platform-page .card.product-platform-card > .card__body,
  .product-platform-page .product-platform-accordion .accordion__trigger,
  .product-platform-page .product-platform-accordion .accordion__content,
  .product-platform-page .product-platform-accordion .accordion__inner {
    padding-left: 18px;
    padding-right: 18px;
  }
}
