/* Trademore International FZC — Landing Page (colors in theme.css) */
:root {
  --green-700: #3d7a5f;
  --green-500: #4a9168;
  --green-300: #6aab82;
  --charcoal: var(--heading);
  --charcoal-soft: var(--header-link);
  --cream: #f4f1e8;
  --cream-dark: rgba(244, 241, 232, 0.7);
  --white: #ffffff;
  --shadow: var(--card-shadow);
  --shadow-lg: var(--card-shadow);
  --radius: 16px;
  --radius-lg: 24px;
  --font-sans: "Montserrat", system-ui, sans-serif;
  --font-serif: "Playfair Display", Georgia, serif;
  --header-h: 150px;
  --logo-height: 80px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* SVG icons */
.ico {
  width: 22px;
  height: 22px;
  color: var(--icon-color);
  flex-shrink: 0;
}

.ico--lg { width: 28px; height: 28px; }
.ico--xl { width: 40px; height: 40px; }

.feat-icon .ico,
.mvv-card .icon .ico,
.ind-icon .ico { display: block; margin: 0 auto; }

.ac-icon .ico { width: 32px; height: 32px; margin-bottom: 0.25rem; }

/* Theme toggle */
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.1);
  color: var(--heading);
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s, transform 0.25s;
  flex-shrink: 0;
}

.theme-toggle:hover { transform: scale(1.05); background: rgba(255, 255, 255, 0.18); }

.theme-toggle .theme-icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}

.theme-toggle .theme-icon--moon { display: none; }

[data-theme="dark"] .theme-toggle .theme-icon--sun { display: none; }
[data-theme="dark"] .theme-toggle .theme-icon--moon { display: block; }

/* Hero: light icon on video */
.site-header:not(.scrolled) .theme-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
}

.site-header.scrolled .theme-toggle {
  border-color: var(--border);
  background: var(--surface-muted);
  color: var(--heading);
}

[data-theme="dark"] .site-header:not(.scrolled) .theme-toggle {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .site-header.scrolled .theme-toggle {
  background: var(--surface-elevated);
  border-color: var(--border);
  color: var(--heading);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: background 0.35s var(--ease), color 0.35s var(--ease);
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

/* ─── Header ─── */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s;
}

.site-header.scrolled {
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border), 0 8px 32px rgba(0, 0, 0, 0.06);
}

.site-header.scrolled .brand-text strong { color: var(--header-text); }
.site-header.scrolled .brand-text span { color: var(--text-muted); }
.site-header.scrolled .nav-desktop a { color: var(--header-link); }
.site-header.scrolled .nav-desktop a:hover { color: var(--accent); }
.site-header.scrolled .nav-toggle { color: var(--header-text); }

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.brand-logo,
.footer-logo {
  display: block;
  height: var(--logo-height);
  width: auto;
  max-width: min(280px, 55vw);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-logo {
  margin: 0 auto 0.75rem;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-desktop a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(244, 241, 232, 0.85);
  transition: color 0.25s;
}

.nav-desktop a:hover { color: var(--green-300); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--btn-primary-bg);
  color: var(--btn-primary-text);
  box-shadow: 0 6px 20px var(--accent-glow);
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: 0 10px 28px var(--accent-glow);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1fb855;
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.45);
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(244, 241, 232, 0.5);
}

.btn-outline:hover {
  background: var(--cream);
  color: var(--green-800);
  border-color: var(--cream);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  transition: background 0.35s var(--ease);
}

.hero-map {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.06;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 400'%3E%3Cpath fill='%23f4f1e8' d='M120 180c40-60 100-90 160-80 50 8 90 40 120 80 30-20 70-30 110-25 60 8 110 50 140 100-30 40-80 70-130 75-50 5-100-15-140-45-40 30-90 50-140 45-60-6-110-45-140-90 20-25 50-45 80-60z'/%3E%3C/svg%3E") center / cover no-repeat;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: calc(var(--header-h) + 2rem) 1.5rem 4rem;
  max-width: 900px;
}

.logo-lockup {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.logo-lockup--hero {
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.logo-lockup--footer {
  margin-bottom: 1.25rem;
}

.logo-lockup__title {
  margin: 0.85rem 0 0.35rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #ffffff;
  line-height: 1.3;
}

.logo-lockup__tagline {
  margin: 0;
  font-size: 0.78rem;
  font-style: italic;
  font-family: var(--font-serif);
  color: rgba(255, 255, 255, 0.85);
}

.hero-logo-wrap {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  overflow: hidden;
  background: #ffffff;
  border: 5px solid #c0e675;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  animation: fadeUp 0.8s var(--ease) both;
}

.hero-logo {
  width: 88%;
  height: 88%;
  margin: 0;
  display: block;
  object-fit: contain;
  object-position: center;
  transform: none;
  transition: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #ffffff;
  line-height: 1.2;
  margin: 0.85rem 0 0.35rem;
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 0.5rem;
}

.hero-sub {
  font-size: clamp(0.85rem, 1.8vw, 1rem);
  color: rgba(244, 241, 232, 0.75);
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (prefers-reduced-motion: no-preference) {
  .js .hero-badge { animation: fadeUp 0.8s 0.1s var(--ease) both; }
  .js .hero h1 { animation: fadeUp 0.8s 0.2s var(--ease) both; }
  .js .hero-tagline { animation: fadeUp 0.8s 0.3s var(--ease) both; }
  .js .hero-sub { animation: fadeUp 0.8s 0.4s var(--ease) both; }
  .js .hero-cta { animation: fadeUp 0.8s 0.5s var(--ease) both; }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(244, 241, 232, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s infinite;
}

.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(244,241,232,0.5), transparent);
}

/* ─── Strip banner ─── */
.strip-banner {
  background: var(--strip-bg);
  padding: 1rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  transition: background 0.35s var(--ease);
}

.strip-banner p {
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.strip-banner--light {
  background: var(--surface-muted);
  border-bottom: none;
  border-top: 1px solid var(--border);
}

.strip-banner--light p { color: var(--text-muted); }

/* ─── Section common ─── */
section { padding: 5rem 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-lead {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
}

/* ─── About ─── */
.about { background: var(--surface); }

.about-inner {
  max-width: none;
}

.about-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about-header .section-lead {
  margin-inline: auto;
  max-width: 720px;
}

.about-body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  padding: 2rem 2.5rem;
  background: var(--surface-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
}

.about-body p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.75;
  margin: 0;
}

.about-body p:first-child {
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}

.about-actions {
  text-align: center;
  margin: 0;
}

.about-actions .btn-profile .ico {
  width: 1.15rem;
  height: 1.15rem;
}

.btn-profile {
  background: var(--surface-elevated);
  color: var(--heading);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.btn-profile:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  box-shadow: 0 10px 28px var(--accent-glow);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.about-stats .stat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.about-stats .stat-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}

.about-stats .stat-card strong {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--heading);
  margin-bottom: 0.35rem;
}

.stat-card span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ─── Mission cards ─── */
.mvv {
  background: var(--surface-muted);
  color: var(--text);
  transition: background 0.35s var(--ease);
}

.mvv .section-title { color: var(--heading); }
.mvv .section-label { color: var(--gold); }
.mvv .section-lead { color: var(--text-muted) !important; }

.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.mvv-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s var(--ease), box-shadow 0.3s, background 0.35s;
}

.mvv-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.mvv-card .icon {
  width: 48px;
  height: 48px;
  background: var(--accent-soft);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.mvv-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--heading);
}

.mvv-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Products ─── */
.products { background: var(--surface); }

.products-hint {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: -0.5rem 0 1.75rem;
}

.products-cta {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.products-cta a {
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.products-promo {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.products-promo .bento-cell {
  flex: 1 1 0;
  min-height: 240px;
  grid-column: auto;
}

.products-promo .bento-b {
  min-height: 280px;
}

.products-promo .bento-e {
  justify-content: stretch;
  padding: 0;
  min-height: 280px;
  background: linear-gradient(145deg, var(--accent-soft) 0%, var(--surface-elevated) 55%, var(--surface) 100%);
  border: 1px solid rgba(61, 122, 95, 0.22);
  box-shadow: var(--shadow);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}

.products-promo .bento-e:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 122, 95, 0.4);
  box-shadow: 0 14px 36px var(--accent-glow);
}

.bento-cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.85rem;
  height: 100%;
  padding: 2rem 1.75rem;
}

.bento-cta-eyebrow {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(61, 122, 95, 0.12);
  border: 1px solid rgba(61, 122, 95, 0.2);
  border-radius: 999px;
}

.bento-cta h3 {
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--heading);
  line-height: 1.2;
  margin: 0;
}

.bento-cta-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--text-muted);
  margin: 0;
  max-width: 34ch;
}

.bento-cta-features {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.bento-cta-features li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

.bento-cta-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2rem;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1px solid rgba(61, 122, 95, 0.25);
  box-shadow: inset 0 0 0 2px var(--surface-elevated);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2.5 6.2l2.2 2.2 5-5' stroke='%233d7a5f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.55rem;
}

.bento-cta-btn {
  width: 100%;
  margin-top: auto;
  padding: 1rem 1.5rem;
  font-size: 0.8rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.bento-cta-btn svg {
  width: 20px;
  height: 20px;
}

@media (max-width: 768px) {
  .products-promo {
    flex-direction: column;
  }

  .bento-cta {
    padding: 1.75rem 1.5rem;
  }

  .bento-cta-text {
    max-width: none;
  }
}

.products-tabs {
  display: flex;
  gap: 0.5rem;
  margin: 2rem 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--charcoal-soft);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.tab-btn.active,
.tab-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

[data-theme="dark"] .tab-btn.active,
[data-theme="dark"] .tab-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.tab-panel { display: none; }
.tab-panel.active { display: block; }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
}

.product-card {
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.product-card:hover,
.product-card:has(.product-card-more[aria-expanded="true"]) {
  border-color: var(--accent);
}

.product-card:focus {
  outline: none;
}

.product-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-card .product-detail {
  display: none;
}

.product-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.product-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: none;
  transition: none;
}

.product-card .body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-main {
  flex: 1 1 auto;
}

body.product-detail-open {
  overflow: hidden;
}

.product-detail-backdrop {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(26, 31, 30, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}

.product-detail-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-detail-backdrop[hidden] {
  display: none !important;
}

/* Hover / tap detail portal — spec sheet modal */
.product-hover-portal {
  position: fixed;
  z-index: 200;
  left: 50%;
  top: 50%;
  width: min(920px, calc(100vw - 2rem));
  max-height: min(92vh, 900px);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.98);
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
}

.product-hover-portal.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}

.product-hover-portal .portal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 10;
  width: 2rem;
  height: 2rem;
  margin: 0;
  border: none;
  border-radius: 50%;
  background: rgba(0, 77, 0, 0.12);
  color: #004d00;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.product-hover-portal .portal-close:hover {
  background: #004d00;
  color: #fff;
}

/* ─── Spec sheet document layout ─── */
.spec-sheet {
  position: relative;
  background: #fffdf0;
  color: #004d00;
  color-scheme: light;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 1.75rem 2rem 1.5rem;
  border-radius: 2px;
  box-shadow: 0 28px 72px rgba(26, 31, 30, 0.28);
  overflow: hidden;
}

.spec-sheet-header {
  position: relative;
  text-align: center;
  margin-bottom: 1.25rem;
  padding: 0.75rem 4rem 0;
  min-height: 72px;
}

.spec-deco {
  position: absolute;
  top: 0;
  width: 120px;
  height: 100px;
  pointer-events: none;
}

.spec-deco-l {
  left: -0.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 100'%3E%3Cellipse cx='28' cy='42' rx='26' ry='34' fill='%238bc34a'/%3E%3Cellipse cx='52' cy='28' rx='22' ry='28' fill='%23c5e1a5'/%3E%3Cellipse cx='18' cy='68' rx='18' ry='22' fill='%23dce775'/%3E%3Cellipse cx='44' cy='58' rx='16' ry='20' fill='%234caf50'/%3E%3C/svg%3E") no-repeat center / contain;
}

.spec-deco-r {
  right: -0.5rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 100'%3E%3Cellipse cx='92' cy='42' rx='26' ry='34' fill='%238bc34a'/%3E%3Cellipse cx='68' cy='28' rx='22' ry='28' fill='%23c5e1a5'/%3E%3Cellipse cx='102' cy='68' rx='18' ry='22' fill='%23dce775'/%3E%3Cellipse cx='76' cy='58' rx='16' ry='20' fill='%234caf50'/%3E%3C/svg%3E") no-repeat center / contain;
}

.spec-sheet-title {
  font-size: clamp(1.2rem, 2.6vw, 1.75rem);
  font-weight: 800;
  color: #004d00;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.2;
  margin: 0;
}

.spec-sheet-hero {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 1.25rem;
}

.spec-sheet-image {
  width: 190px;
  height: 190px;
  border-radius: 50%;
  border: 8px solid #c0e675;
  overflow: hidden;
  flex-shrink: 0;
  margin: 0;
  background: #fff;
}

.spec-sheet-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none !important;
  transition: none !important;
  pointer-events: none;
}

.spec-sheet-intro {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  text-align: left;
  padding-top: 0.25rem;
}

.spec-sheet-desc {
  font-size: 0.8rem;
  line-height: 1.55;
  color: #004d00;
  margin: 0 0 0.75rem;
}

.spec-sheet-name {
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: #c0e675;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.05;
}

.spec-sheet-label {
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 800;
  color: #004d00;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.05;
}

.spec-sheet-overview,
.spec-sheet-params {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.72rem;
  line-height: 1.45;
  margin: 0;
}

.spec-sheet-overview thead th,
.spec-sheet-params thead th {
  background: #ececec;
  color: #333;
  font-weight: 700;
  text-align: center;
  padding: 0.4rem 0.35rem;
  border: 1px solid #bdbdbd;
  vertical-align: middle;
  font-size: 0.68rem;
}

.spec-sheet-overview tbody td,
.spec-sheet-params tbody td {
  padding: 0.4rem 0.45rem;
  border: 1px solid #bdbdbd;
  vertical-align: top;
  color: #222;
  font-size: 0.66rem;
}

.spec-sheet-overview tbody td {
  text-align: left;
}

.spec-sheet-params tbody td {
  text-align: left;
}

.spec-sheet-params tbody tr:nth-child(even) {
  background: #f3f3f3;
}

.spec-sheet-params tbody tr:nth-child(odd) {
  background: #fff;
}

.spec-sheet-params tbody td:first-child {
  font-weight: 700;
  width: 34%;
}

.spec-sheet-params tbody td:last-child {
  width: 66%;
}

.product-hover-portal .spec-sheet,
.product-hover-portal .spec-sheet *:not(.portal-close) {
  user-select: text;
}

.product-hover-portal .spec-sheet-image,
.product-hover-portal .spec-sheet-image img {
  will-change: auto;
}

@media (max-width: 768px) {
  .product-hover-portal {
    width: calc(100vw - 1.25rem);
    max-height: 90vh;
  }

  .spec-sheet {
    padding: 1.25rem 1rem 1rem;
  }

  .spec-sheet-header {
    padding: 0.5rem 2.5rem 0;
    min-height: 56px;
  }

  .spec-sheet-title {
    font-size: 1rem;
  }

  .spec-deco {
    width: 80px;
    height: 68px;
  }

  .spec-sheet-hero {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .spec-sheet-image {
    width: 150px;
    height: 150px;
    border-width: 6px;
    margin: 0 auto;
  }

  .spec-sheet-intro {
    text-align: center;
  }

  .spec-sheet-overview {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .spec-sheet-overview thead th,
  .spec-sheet-overview tbody td {
    min-width: 100px;
    font-size: 0.6rem;
  }

  .spec-sheet-params {
    font-size: 0.62rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .product-hover-portal.is-mobile {
    left: 50%;
    top: 50%;
    width: min(920px, calc(100vw - 2rem));
    max-height: min(92vh, 900px);
    transform: translate(-50%, -50%) scale(0.96);
  }

  .product-hover-portal.is-mobile.is-visible {
    transform: translate(-50%, -50%) scale(1);
  }
}

.product-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.35rem;
}

.product-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.product-card-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  width: 100%;
  margin-top: 15px;
  flex-shrink: 0;
  padding: 0.7rem 1rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(61, 122, 95, 0.28);
  border-radius: 10px;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    color 0.2s var(--ease),
    transform 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.product-card-more:hover,
.product-card-more[aria-expanded="true"] {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px var(--accent-glow);
}

.product-card-more:focus {
  outline: none;
}

.product-card-more:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.product-card-more-icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  transition: transform 0.2s var(--ease);
}

.product-card-more:hover .product-card-more-icon,
.product-card-more[aria-expanded="true"] .product-card-more-icon {
  transform: translateX(3px);
}

/* ─── Trade flow ─── */
.trade {
  background: var(--surface);
  overflow: hidden;
}

.trade-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.trade-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 400px;
}

.trade-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.trade-visual .africa-map {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 31, 30, 0.45);
}

.africa-svg {
  width: 70%;
  max-width: 320px;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.3));
}

.trade-points {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: 2rem;
}

.trade-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trade-point .num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.trade-point h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.25rem;
}

.trade-point p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ─── Gallery strip ─── */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 0.3s, transform 0.5s;
}

.gallery-strip img:hover {
  opacity: 0.85;
  transform: scale(1.02);
  z-index: 1;
  position: relative;
}

/* ─── Mobile nav ─── */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: var(--footer-bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--heading);
}

.mobile-nav .theme-toggle {
  border-color: var(--border);
  background: var(--surface-elevated);
  color: var(--heading);
}

.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ─── Animations ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    transform: translateY(24px);
    transition: transform 0.7s var(--ease);
  }

  .js .reveal.visible {
    transform: translateY(0);
  }
}

/* ─── Why Us ─── */
.why { background: var(--surface-muted); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.feature-card {
  padding: 1.75rem;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow);
}

.feature-card .feat-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.5rem;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ─── Process ─── */
.process { background: var(--surface-muted); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
  counter-reset: step;
}

.process-step {
  position: relative;
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(13, 40, 24, 0.06);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 1rem;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}

.process-step p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── Origin ─── */
.origin { background: var(--surface); color: var(--text); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.origin .section-title { color: var(--heading); }
.origin .section-label { color: var(--gold); }

.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.origin-grid p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.origin-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.origin-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.origin-list li::before {
  content: "✓";
  color: var(--green-700);
  font-weight: 800;
}

.origin-visual {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.25);
}

.origin-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

/* ─── Markets strip ─── */
.markets {
  background: var(--surface);
  padding: 4rem 0;
}

.markets-inner {
  text-align: center;
}

.markets-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.market-tag {
  padding: 0.6rem 1.25rem;
  background: var(--surface-elevated);
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: 0.04em;
}

/* ─── Product specs ─── */
.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.75rem;
}

.spec-chip {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  background: var(--surface-muted);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 4px;
}

/* ─── FAQ ─── */
.faq { background: var(--surface-muted); }

.faq-list {
  max-width: 800px;
  margin: 2rem auto 0;
}

.faq-item {
  background: var(--surface);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 40, 24, 0.05);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--heading);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s;
}

.faq-question:hover { color: var(--accent); }

.faq-question .icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--icon-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease), background 0.3s;
}

.faq-question .icon .ico { width: 14px; height: 14px; }

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.faq-item { background: var(--surface-elevated); border: 1px solid var(--border); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-answer { max-height: 300px; }

/* ─── CTA band ─── */
.cta-band {
  background: var(--surface-muted);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--heading);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 1.75rem;
  font-size: 1rem;
}

.cta-band .btn-outline {
  color: var(--heading);
  border-color: var(--border);
}

.cta-band .btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.cta-band .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ─── WhatsApp float ─── */
.wa-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 1500;
  width: 58px;
  height: 58px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
}

.wa-float svg { width: 30px; height: 30px; fill: currentColor; }

.wa-float span {
  position: absolute;
  right: calc(100% + 12px);
  white-space: nowrap;
  background: var(--footer-bg);
  color: var(--heading);
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}

.wa-float:hover span {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Footer expanded ─── */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  text-align: left;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
}

.footer-grid h4 {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.footer-grid a,
.footer-grid p {
  display: block;
  font-size: 0.85rem;
  color: rgba(244, 241, 232, 0.65);
  margin-bottom: 0.5rem;
  transition: color 0.25s;
}

.footer-grid a:hover { color: var(--white); }

.site-footer {
  padding: 3rem 0 2rem;
  background: var(--footer-bg);
  text-align: center;
  transition: background 0.35s var(--ease);
}

.site-footer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer strong { color: var(--gold-light); }

/* ─── Responsive ─── */
@media (max-width: 992px) {
  .trade-grid,
  .mvv-grid,
  .origin-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .gallery-strip { grid-template-columns: repeat(2, 1fr); }
  .about-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --header-h: 110px;
    --logo-height: 64px;
  }

  .nav-desktop { display: none; }
  .nav-toggle { display: block; }
  .mvv-grid,
  .features-grid,
  .process-steps { grid-template-columns: 1fr; }
  .about-body { grid-template-columns: 1fr; padding: 1.5rem; }
  .about-body p:first-child { padding-left: 1rem; }
  .about-stats,
  .origin-list { grid-template-columns: 1fr; }
  section { padding: 3.5rem 0; }
  .hero-cta { flex-direction: column; align-items: center; }
  .hero-cta .btn { width: 100%; max-width: 280px; }
  .wa-float span { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
