/* Botanika Bharat LLP — Premium Sales Training Portal */
:root {
  --bg-deep: #0a0f0d;
  --bg: #0f1612;
  --bg-card: rgba(22, 32, 26, 0.85);
  --bg-glass: rgba(30, 48, 38, 0.55);
  --green-900: #0d2818;
  --green-700: #1b4332;
  --green-500: #2d6a4f;
  --green-400: #40916c;
  --green-300: #52b788;
  --gold: #e9c46a;
  --gold-bright: #f4d35e;
  --amber: #d4a017;
  --text: #edf2ef;
  --text-muted: #94a89e;
  --border: rgba(82, 183, 136, 0.2);
  --border-gold: rgba(233, 196, 106, 0.35);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --radius: 16px;
  --radius-sm: 10px;
  --font: 'DM Sans', system-ui, sans-serif;
  --font-display: 'Fraunces', Georgia, serif;
  --coffee-bg: linear-gradient(145deg, #1a1510 0%, #2d2218 50%, #1a1510 100%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--bg-deep);
  color: var(--text);
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(45, 106, 79, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(233, 196, 106, 0.06), transparent),
    radial-gradient(ellipse 50% 30% at 0% 80%, rgba(45, 106, 79, 0.12), transparent);
}

/* Justified paragraphs — all pages, all products */
p,
.acc-body,
.checklist .chk-detail {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}

.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.container-wide { max-width: 1280px; margin: 0 auto; padding: 0 1.25rem; }

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 13, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}
.site-logo {
  border-radius: 8px;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  padding: 3px;
}
.hero-logo {
  border-radius: 14px;
  margin-bottom: 1rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  background: #fff;
  padding: 6px;
}
.index-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
}
.index-layout-3 {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 1.25rem;
  align-items: start;
  padding-top: 0.5rem;
}
.index-aside-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: sticky;
  top: 4.5rem;
  align-self: start;
}
.coa-hub-layout { padding: 1.5rem 0 3rem; }
.coa-hub-layout .coa-hub-page { min-width: 0; }
@media (max-width: 1100px) {
  .index-layout-3 { grid-template-columns: 1fr; }
  .index-aside-col, .sidebar-left { position: static; max-height: none; }
}
@media (max-width: 960px) {
  .index-layout { grid-template-columns: 1fr; }
  .index-layout .coffee-donate { position: static; }
}
.logo-wrap .logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.logo-wrap:hover .logo { color: var(--gold-bright); }
.badge {
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: #1a1208;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.header-nav { display: flex; gap: 1rem; align-items: center; }
.header-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.header-nav a:hover { color: var(--green-300); }
.header-wa { color: var(--green-300) !important; font-weight: 600; }

.contact-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  background: rgba(45, 106, 79, 0.25);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.contact-bar-compact {
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  border-bottom: none;
}
.site-header .contact-bar-compact {
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.contact-bar a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-bar a:hover { color: var(--gold-bright); }
.contact-wa { font-weight: 600; color: var(--green-300) !important; }
.contact-email { color: var(--gold) !important; }
.product-hero .contact-bar {
  margin-top: 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.site-footer .contact-bar {
  margin: 0.75rem 0;
  border-radius: var(--radius-sm);
}

/* ── Hero (index) ── */
.hero-premium {
  padding: 3.5rem 0 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-premium::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(82, 183, 136, 0.15), transparent 60%);
  pointer-events: none;
}
.hero-premium h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--text) 0%, var(--green-300) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}
.hero-premium .subtitle {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 1.5rem;
}

/* Stats row */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.stat-card {
  padding: 1.25rem;
  text-align: center;
  border-radius: var(--radius-sm);
  background: var(--bg-glass);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}
.stat-card:hover { transform: translateY(-3px); border-color: var(--green-400); }
.stat-card .stat-num {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.stat-card .stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.25rem; }

/* Search */
.search-hero { max-width: 480px; margin: 1.5rem auto 0; position: relative; }
.search-hero input {
  width: 100%;
  padding: 0.9rem 1rem 0.9rem 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-glass);
  color: var(--text);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.search-hero input:focus {
  border-color: var(--green-400);
  box-shadow: 0 0 0 3px rgba(82, 183, 136, 0.2);
}
.search-hero input::placeholder { color: var(--text-muted); }
.search-hero::before {
  content: '🔍';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.7;
}

/* ── Mind map ── */
.mindmap-section { padding: 2rem 0; }
.mindmap-section h2 {
  font-family: var(--font-display);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--gold);
}
.mindmap {
  position: relative;
  width: min(420px, 100%);
  height: 420px;
  margin: 0 auto 2rem;
}
.mindmap-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-align: center;
  color: var(--gold);
  z-index: 2;
  box-shadow: 0 0 30px rgba(233, 196, 106, 0.3);
}
.hub-pulse { animation: pulse-hub 2.5s ease-in-out infinite; }
@keyframes pulse-hub {
  0%, 100% { box-shadow: 0 0 20px rgba(233, 196, 106, 0.25); }
  50% { box-shadow: 0 0 40px rgba(233, 196, 106, 0.5); }
}
.mindmap-ring { position: absolute; inset: 0; }
.mind-node {
  position: absolute;
  width: 88px;
  padding: 0.5rem 0.35rem;
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  line-height: 1.3;
}
.mind-node span { display: block; color: var(--gold); font-size: 0.85rem; margin-bottom: 0.15rem; }
.mind-node:hover {
  background: var(--green-700);
  border-color: var(--gold);
  transform: scale(1.08);
  color: #fff;
  z-index: 3;
}
.mind-node.n1 { top: 2%; left: 50%; transform: translateX(-50%); }
.mind-node.n2 { top: 18%; right: 2%; }
.mind-node.n3 { top: 50%; right: -2%; transform: translateY(-50%); }
.mind-node.n4 { bottom: 18%; right: 2%; }
.mind-node.n5 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.mind-node.n6 { bottom: 18%; left: 2%; }
.mind-node.n7 { top: 50%; left: -2%; transform: translateY(-50%); }
.mind-node.n8 { top: 18%; left: 2%; }
.mind-node.n1:hover, .mind-node.n5:hover { transform: translateX(-50%) scale(1.08); }
.mind-node.n3:hover, .mind-node.n7:hover { transform: translateY(-50%) scale(1.08); }
.mindmap-lines {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  color: var(--green-400);
  pointer-events: none;
}

/* Flow cards */
.flow-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin: 1.5rem 0;
}
.flow-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-card);
  transition: transform 0.2s;
}
.flow-card:hover { transform: translateY(-4px); }
.flow-card.fc-incoming { border-top: 3px solid var(--green-400); }
.flow-card.fc-followup { border-top: 3px solid var(--gold); }
.flow-card.fc-close { border-top: 3px solid #e76f51; }
.flow-icon { font-size: 1.75rem; margin-bottom: 0.5rem; }
.flow-card h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.75rem; }
.flow-card ul { list-style: none; font-size: 0.88rem; color: var(--text-muted); }
.flow-card li { padding: 0.35rem 0; padding-left: 1rem; position: relative; }
.flow-card li::before { content: '▸'; position: absolute; left: 0; color: var(--green-300); }

/* ── Product layout ── */
.product-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2rem;
  align-items: start;
  padding: 2rem 0 3rem;
}
@media (max-width: 960px) {
  .product-layout { grid-template-columns: 1fr; }
  .coffee-donate { order: -1; }
}

.product-hero {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.5rem;
}
.product-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.product-hero .meta { color: var(--text-muted); font-size: 0.9rem; }
.product-hero .cat-pill {
  display: inline-block;
  background: var(--green-700);
  color: var(--green-300);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.section-nav {
  position: sticky;
  top: 4.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0.75rem;
  margin-bottom: 1.5rem;
  z-index: 50;
}
.sn-link {
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.2s;
}
.sn-link:hover, .sn-link.active {
  color: var(--gold);
  border-color: var(--border-gold);
  background: rgba(233, 196, 106, 0.1);
}

/* Cards */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
}
.card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.card h3 { color: var(--green-300); font-size: 1.05rem; margin: 1.25rem 0 0.75rem; }
.card p { margin-bottom: 0.75rem; color: var(--text-muted); }
.card p, .card li { color: #c5d4cc; }
.lead { font-size: 1.02rem; }
.alert {
  background: rgba(233, 196, 106, 0.12);
  border-left: 4px solid var(--gold);
  padding: 0.85rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-bottom: 1rem;
}

/* Journey track */
.journey-track { display: flex; flex-direction: column; gap: 0; position: relative; }
.journey-track::before {
  content: '';
  position: absolute;
  left: 23px; top: 24px; bottom: 24px;
  width: 2px;
  background: linear-gradient(180deg, var(--green-400), var(--gold));
  opacity: 0.4;
}
.journey-step {
  display: flex;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}
.journey-marker {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--green-700);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  color: var(--gold);
  z-index: 1;
}
.journey-body { flex: 1; padding: 1rem 1.25rem; }
.journey-body h4 { color: var(--green-300); margin-bottom: 0.75rem; font-size: 1rem; }
.pain-solution { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.75rem; align-items: start; }
@media (max-width: 700px) { .pain-solution { grid-template-columns: 1fr; } .pain-solution .arrow { display: none; } }
.pain, .solution { font-size: 0.88rem; }
.label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; display: block; margin-bottom: 0.35rem; }
.pain-label { color: #e76f51; }
.sol-label { color: var(--green-300); }
.pain-solution .arrow { color: var(--gold); font-size: 1.25rem; padding-top: 1.5rem; }

/* Accordion FAQ */
.acc-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 0.5rem;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}
.acc-item summary {
  padding: 0.85rem 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.92rem;
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  transition: background 0.2s;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary:hover { background: rgba(82, 183, 136, 0.08); }
.acc-item[open] summary { color: var(--gold); border-bottom: 1px solid var(--border); }
.acc-num { color: var(--gold); font-weight: 700; flex-shrink: 0; }
.acc-body { padding: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.acc-body p { margin: 0; }

.checklist { list-style: none; padding: 0; }
.checklist li {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
}
.checklist li:last-child { border-bottom: none; }
.checklist strong { color: var(--green-300); }

.script-box {
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  white-space: pre-wrap;
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
  color: #b8c9bf;
}

/* Coffee donate */
.coffee-donate { position: sticky; top: 5rem; }
.coffee-card {
  padding: 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--coffee-bg) !important;
  border-color: var(--border-gold) !important;
}
.coffee-glow {
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(233, 196, 106, 0.08), transparent 50%);
  pointer-events: none;
}
.coffee-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.coffee-card h3 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}
.coffee-price span { font-size: 1.5rem; font-weight: 700; color: var(--gold-bright); }
.coffee-note, .coffee-thanks { font-size: 0.8rem; color: var(--text-muted); margin: 0.5rem 0; }
.qr-frame {
  margin: 1rem auto;
  padding: 0.75rem;
  background: #fff;
  border-radius: var(--radius-sm);
  display: inline-block;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.qr-frame img { display: block; border-radius: 4px; }

/* Index product grid */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.policy-tile {
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
}
.policy-tile strong { color: var(--gold); display: block; margin-bottom: 0.35rem; font-size: 0.85rem; }
.policy-tile span { font-size: 0.85rem; color: var(--text-muted); }

.category-section { margin-bottom: 2.5rem; }
.category-section h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--green-300);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.category-section h2::before {
  content: '';
  width: 4px; height: 1.25rem;
  background: var(--gold);
  border-radius: 2px;
}
.product-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem;
}
.product-card {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-glass);
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s;
  position: relative;
  overflow: hidden;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-400), var(--gold));
  transform: scaleX(0);
  transition: transform 0.25s;
}
.product-card:hover {
  border-color: var(--green-400);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.product-card:hover::before { transform: scaleX(1); }
.product-card .pc-name { font-weight: 600; font-size: 0.92rem; }

/* Category tabs & segmented index */
.category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.85rem;
  margin-bottom: 1.5rem;
  position: sticky;
  top: 3.5rem;
  z-index: 90;
}
.cat-tab {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(0,0,0,0.25);
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font);
}
.cat-tab span {
  background: rgba(255,255,255,0.1);
  padding: 0.1rem 0.4rem;
  border-radius: 999px;
  margin-left: 0.25rem;
  font-size: 0.72rem;
}
.cat-tab:hover, .cat-tab.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(233, 196, 106, 0.12);
}

.category-group {
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.category-group.hidden { display: none; }
.group-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.group-icon { font-size: 2rem; line-height: 1; }
.group-header h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 0.35rem;
}
.group-desc { font-size: 0.88rem; color: var(--text-muted); max-width: 640px; }

.segment-block {
  margin-bottom: 1.75rem;
  scroll-margin-top: 6rem;
}
.segment-title {
  font-size: 1.05rem;
  color: var(--green-300);
  margin-bottom: 0.35rem;
  padding-left: 0.75rem;
  border-left: 3px solid var(--green-400);
}
.segment-seo-desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.85rem;
  padding-left: 0.9rem;
}

.seg-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-bottom: 0.4rem;
}
.seg-organic { background: rgba(82,183,136,0.25); color: #95d5b2; }
.seg-spice { background: rgba(233,196,106,0.2); color: var(--gold); }
.seg-frozen { background: rgba(100,180,255,0.2); color: #90caf9; }
.seg-dehydrated { background: rgba(255,183,77,0.2); color: #ffcc80; }
.seg-agri { background: rgba(188,170,120,0.25); color: #d4c4a0; }
.seg-oil { background: rgba(186,104,200,0.2); color: #ce93d8; }
.seg-powder { background: rgba(255,138,101,0.2); color: #ffab91; }

.product-card.hidden { display: none; }
.seg-pill { background: rgba(233,196,106,0.15); color: var(--gold); margin-left: 0.35rem; }
.segment-block.empty { display: none; }


.breadcrumb { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--green-300); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* Expert team & philosophy */
.philosophy-banner {
  margin: 2rem 0;
  padding: 2rem 2.25rem;
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.45), rgba(13, 40, 24, 0.6));
}
.philosophy-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.philosophy-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  color: var(--gold-bright);
  margin-bottom: 1rem;
}
.philosophy-lead { color: var(--text); margin-bottom: 0.85rem; font-size: 1.02rem; }
.philosophy-points {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.65rem;
  margin-top: 1.25rem;
}
.philosophy-points li {
  padding: 0.55rem 0.85rem;
  background: rgba(0,0,0,0.25);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  font-size: 0.92rem;
}

.expert-team { margin: 2.5rem 0; }
.experts-header { text-align: center; margin-bottom: 2rem; }
.experts-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  color: var(--gold-bright);
}
.experts-sub { color: var(--text-muted); margin-top: 0.5rem; }

.expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
}
.expert-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-color: var(--border-gold);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.expert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(233, 196, 106, 0.12);
}
.expert-photo-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #0a0f0d;
}
.expert-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.expert-badge {
  position: absolute;
  bottom: 0.75rem;
  left: 0.75rem;
  background: linear-gradient(135deg, var(--amber), var(--gold));
  color: #1a1510;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}
.expert-body { padding: 1.35rem 1.5rem 1.5rem; flex: 1; }
.expert-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  margin-bottom: 0.35rem;
}
.expert-role { color: var(--gold); font-weight: 600; font-size: 0.9rem; margin-bottom: 0.25rem; }
.expert-creds { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 0.85rem; }
.expert-body > p { font-size: 0.92rem; color: var(--text-muted); margin-bottom: 1rem; }
.expert-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.expert-tags li {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: rgba(45, 106, 79, 0.35);
  color: var(--green-300);
  border: 1px solid var(--border);
}

.footer-note { font-size: 0.8rem; margin-top: 0.35rem; opacity: 0.85; }

/* 3-column product layout */
.product-layout-3 {
  display: grid;
  grid-template-columns: 240px 1fr 320px;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0 3rem;
}
.product-main-col { min-width: 0; }
.product-aside-col { display: flex; flex-direction: column; gap: 1rem; }
.compact-mindmap { margin-bottom: 1rem; padding: 1rem; }
.compact-mindmap .mindmap { height: 280px; transform: scale(0.85); transform-origin: center top; }
.compact-mindmap h2 { font-size: 1rem; margin-bottom: 0.5rem; }

@media (max-width: 1100px) {
  .product-layout-3 { grid-template-columns: 1fr; }
  .sidebar-left { order: 2; }
  .product-aside-col { order: 3; }
  .product-main-col { order: 1; }
}

/* Left procurement sidebar */
.sidebar-left, .sidebar-coa {
  padding: 1rem;
  position: sticky;
  top: 4.5rem;
  max-height: calc(100vh - 4rem);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--green-500) transparent;
}
.sidebar-deep-v2 { font-size: 0.78rem; }
.sidebar-extra, .glass-inner {
  margin-top: 0.85rem;
  padding: 0.65rem 0.75rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.sidebar-extra h4 {
  font-size: 0.82rem;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.proc-discipline { list-style: none; font-size: 0.72rem; color: var(--text-muted); }
.proc-discipline li { padding: 0.2rem 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.proc-deep-block { margin-bottom: 0.65rem; }
.proc-summary { color: var(--text-muted); margin-top: 0.2rem; font-size: 0.72rem; }
.proc-deep {
  margin: 0.45rem 0 0 1.5rem;
  padding: 0.5rem 0.55rem;
  background: rgba(13, 40, 24, 0.5);
  border-left: 2px solid var(--green-400);
  border-radius: 0 6px 6px 0;
}
.proc-deep p { color: var(--text-muted); line-height: 1.45; margin-bottom: 0.35rem; }
.proc-label {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--green-300);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0.35rem 0 0.2rem;
}
.proc-asks, .coa-blockers {
  list-style: none;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  padding-left: 0.25rem;
}
.proc-asks li::before, .coa-blockers li::before { content: '• '; color: var(--amber); }
.proc-move { font-size: 0.72rem; color: var(--text); font-style: italic; }
.proc-close-line {
  font-size: 0.7rem;
  color: var(--gold-bright);
  margin-top: 0.35rem;
  padding: 0.35rem;
  background: rgba(233, 196, 106, 0.08);
  border-radius: 4px;
  line-height: 1.4;
}
.coa-import-ctx, .coa-walk {
  font-size: 0.72rem;
  color: var(--text-muted);
  line-height: 1.45;
  margin-bottom: 0.4rem;
}
.coa-close-tip {
  font-size: 0.7rem;
  color: var(--gold);
  margin-top: 0.4rem;
  padding: 0.35rem;
  background: rgba(233, 196, 106, 0.06);
  border-radius: 4px;
  line-height: 1.4;
}
.coa-nation-list-index .coa-nation-item { margin-bottom: 0.35rem; }

/* Market varieties section */
.varieties-section .lead { margin-bottom: 1rem; }
.variety-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
  margin-top: 1.25rem;
}
.variety-card { padding: 1rem; }
.variety-head {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.65rem;
}
.variety-head h3 {
  font-size: 0.95rem;
  color: var(--gold-bright);
  line-height: 1.3;
}
.variety-badge {
  flex-shrink: 0;
  font-size: 0.62rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  letter-spacing: 0.04em;
}
.var-fresh { background: #1b5e3a; color: #a8e6cf; }
.var-frozen { background: #1a3a5c; color: #90caf9; }
.var-dehydrated { background: #5c3d1a; color: #ffcc80; }
.var-powder { background: #4a3728; color: #d7ccc8; }
.var-paste { background: #4a2c4a; color: #e1bee7; }
.var-oil { background: #3d4a1a; color: #dce775; }
.var-whole { background: var(--green-900); color: var(--green-300); }
.var-organic { background: #1a3d20; color: #81c784; }
.var-conv { background: #333; color: #bbb; }
.variety-body { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.5rem; }
.variety-meta { font-size: 0.72rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.variety-markets h4 {
  font-size: 0.75rem;
  color: var(--green-300);
  margin: 0.5rem 0 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.market-demand-list {
  list-style: none;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.market-demand-list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  line-height: 1.4;
}
.mkt-demand {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.1rem 0.35rem;
  border-radius: 3px;
  margin-right: 0.35rem;
  text-transform: uppercase;
}
.mkt-high { background: rgba(82, 183, 136, 0.3); color: var(--green-300); }
.mkt-medium { background: rgba(233, 196, 106, 0.2); color: var(--gold); }
.mkt-low { background: rgba(255,255,255,0.08); color: var(--text-muted); }
.mkt-why { font-size: 0.68rem; opacity: 0.85; }
.variety-tip {
  font-size: 0.72rem;
  color: var(--gold);
  margin-top: 0.5rem;
  padding: 0.4rem;
  background: rgba(233, 196, 106, 0.06);
  border-radius: 4px;
}
.sidebar-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold-bright);
  margin-bottom: 0.35rem;
}
.sidebar-lead { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.85rem; }
.proc-visual {
  position: relative;
  width: 100%;
  height: 130px;
  margin-bottom: 0.65rem;
}
.proc-visual .proc-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 54px;
  height: 54px;
  z-index: 2;
  box-shadow: 0 0 20px rgba(233, 196, 106, 0.25);
}
.proc-ring { position: absolute; inset: 0; }
.proc-ring-node {
  position: absolute;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--green-700);
  border: 1px solid var(--border-gold);
  color: var(--gold);
  font-size: 0.55rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.proc-ring-node.pn1 { top: 2%; left: 50%; transform: translateX(-50%); }
.proc-ring-node.pn2 { top: 12%; right: 18%; }
.proc-ring-node.pn3 { top: 38%; right: 2%; }
.proc-ring-node.pn4 { bottom: 12%; right: 18%; }
.proc-ring-node.pn5 { bottom: 2%; left: 50%; transform: translateX(-50%); }
.proc-ring-node.pn6 { bottom: 12%; left: 18%; }
.proc-ring-node.pn7 { top: 38%; left: 2%; }
.proc-ring-node.pn8 { top: 12%; left: 18%; }
.proc-mindmap { position: relative; }
.proc-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}
.proc-link:hover { background: rgba(82, 183, 136, 0.08); }
.proc-hub {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--gold);
  background: var(--green-900);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 0.75rem;
  line-height: 1.1;
}
.proc-flow { list-style: none; }
.proc-node {
  font-size: 0.72rem;
  padding: 0.45rem 0;
  border-left: 2px solid var(--green-500);
  padding-left: 0.55rem;
  margin-left: 0.35rem;
  margin-bottom: 0.35rem;
}
.proc-num {
  display: inline-block;
  background: var(--gold);
  color: #1a1510;
  font-size: 0.6rem;
  font-weight: 800;
  width: 1.1rem; height: 1.1rem;
  border-radius: 50%;
  text-align: center;
  line-height: 1.1rem;
  margin-right: 0.25rem;
}
.proc-node strong { color: var(--green-300); display: block; font-size: 0.74rem; }
.proc-node p { color: var(--text-muted); margin-top: 0.15rem; line-height: 1.35; }
.sidebar-cta {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}
.sidebar-cta:hover { text-decoration: underline; }

/* COA nation sidebar */
.coa-nation-item { margin-bottom: 0.35rem; border-radius: var(--radius-sm); overflow: hidden; }
.coa-nation-item summary {
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.45rem 0.5rem;
  background: rgba(0,0,0,0.2);
  list-style: none;
}
.coa-nation-item summary::-webkit-details-marker { display: none; }
.coa-flag { margin-right: 0.25rem; }
.coa-nation-body { padding: 0.5rem; font-size: 0.7rem; color: var(--text-muted); }
.coa-lines { margin-bottom: 0.35rem; }
.coa-checks { list-style: none; padding-left: 0; }
.coa-checks li { padding: 0.2rem 0; padding-left: 0.65rem; position: relative; }
.coa-checks li::before { content: '✓'; position: absolute; left: 0; color: var(--green-300); font-size: 0.65rem; }
.coa-download-box { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid var(--border); }
.coa-download-box p { font-size: 0.75rem; margin-bottom: 0.5rem; }

.btn-coa, .btn-coa-secondary, .btn-coa-link {
  display: block;
  text-align: center;
  padding: 0.45rem 0.65rem;
  border-radius: var(--radius-sm);
  font-size: 0.72rem;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 0.35rem;
}
.btn-coa { background: linear-gradient(135deg, var(--amber), var(--gold)); color: #1a1510; }
.btn-coa-secondary { background: rgba(45,106,79,0.4); color: var(--text); border: 1px solid var(--border); }
.btn-coa-link { color: var(--green-300); font-weight: 600; }
.btn-coa:hover, .btn-coa-secondary:hover { opacity: 0.9; }

.coa-inline-badge {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.75rem 1rem;
  margin-top: 1rem;
  border-color: var(--border-gold);
}
.coa-badge-icon { font-size: 1.5rem; }
.coa-inline-badge strong { color: var(--gold); font-size: 0.88rem; }
.coa-inline-badge p { font-size: 0.8rem; color: var(--text-muted); margin: 0.2rem 0; }
.coa-badge-links { display: flex; gap: 0.75rem; }
.coa-badge-links a { font-size: 0.78rem; color: var(--green-300); font-weight: 600; }

/* Partner CTA below QR */
.partner-cta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-gold);
  text-align: left;
}
.partner-cta h4 { font-size: 0.9rem; color: var(--gold-bright); margin-bottom: 0.5rem; }
.partner-cta p { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.45rem; line-height: 1.45; }
.partner-benefits {
  list-style: none;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin: 0.35rem 0 0.75rem;
  padding: 0;
}
.partner-benefits li { padding: 0.15rem 0; }
.partner-benefits li::before { content: '✓ '; color: var(--green-300); font-weight: 700; }
.coa-nation-flags, .coa-hub-stat {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  line-height: 1.4;
}
.coa-product-note {
  font-size: 0.72rem;
  color: var(--text);
  margin-bottom: 0.4rem;
  line-height: 1.4;
  padding: 0.35rem 0.45rem;
  background: rgba(45, 106, 79, 0.2);
  border-radius: 6px;
}
.btn-partner, .btn-partner-outline {
  display: block;
  text-align: center;
  padding: 0.5rem;
  border-radius: var(--radius-sm);
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  margin-top: 0.35rem;
}
.btn-partner { background: var(--green-500); color: #fff; }
.btn-partner-outline { border: 1px solid var(--border-gold); color: var(--gold); }

/* Hide legacy main-body philosophy / expert blocks */
.philosophy-banner,
.expert-team { display: none !important; }

/* Footer philosophy */
.footer-philosophy {
  margin-bottom: 1.75rem;
  padding: 1.35rem 1.5rem;
  border-color: var(--border-gold);
  background: linear-gradient(135deg, rgba(27, 67, 50, 0.45), rgba(13, 40, 24, 0.6));
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.footer-philosophy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  color: var(--gold-bright);
  margin: 0.5rem 0 0.75rem;
}
.footer-philosophy-lead {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 0.85rem;
}
.footer-philosophy-points {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.footer-philosophy-points li {
  font-size: 0.72rem;
  padding: 0.35rem 0.65rem;
  background: rgba(0,0,0,0.25);
  border-radius: 999px;
  border-left: none;
  border: 1px solid var(--border);
}

/* Hide legacy large expert block if ever regenerated */
.site-footer-rich { text-align: left; padding: 2.5rem 0 1.5rem; }
.footer-experts { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.footer-experts-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--gold-bright);
  text-align: center;
  margin-bottom: 0.35rem;
}
.footer-experts-sub { text-align: center; font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.footer-expert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  max-width: 720px;
  margin: 0 auto;
}
.footer-expert-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.footer-expert-photo-bg {
  flex-shrink: 0;
  background: #ffffff;
  border-radius: 10px;
  padding: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}
.footer-expert-photo {
  width: 56px;
  height: 70px;
  object-fit: cover;
  object-position: center top;
  border-radius: 6px;
  display: block;
}
.footer-expert-info h3 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.2rem; }
.footer-expert-role { font-size: 0.72rem; color: var(--gold); font-weight: 600; margin-bottom: 0.35rem; }
.footer-expert-info p { font-size: 0.75rem; color: var(--text-muted); line-height: 1.4; }

.footer-coa-map { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--border); }
.footer-coa-map h3 { font-size: 1rem; color: var(--gold); margin-bottom: 0.35rem; text-align: center; }
.footer-coa-intro { text-align: center; font-size: 0.82rem; margin-bottom: 0.75rem; }
.footer-coa-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  justify-content: center;
}
.footer-coa-grid-all {
  max-height: 320px;
  overflow-y: auto;
  padding: 0.5rem;
  background: rgba(0,0,0,0.2);
  border-radius: var(--radius-sm);
}
.footer-coa-grid a {
  font-size: 0.72rem;
  padding: 0.3rem 0.55rem;
  background: rgba(45,106,79,0.3);
  border-radius: 999px;
  border: 1px solid var(--border);
}
.footer-coa-hub-link { display: block; text-align: center; margin-top: 0.75rem; font-weight: 600; }
.footer-bottom { text-align: center; }

/* COA Hub page */
.coa-hub-page { padding: 2rem 0 3rem; }
.coa-hub-hero { text-align: center; margin-bottom: 2rem; }
.coa-hub-hero h1 { font-family: var(--font-display); color: var(--gold-bright); font-size: 2rem; }
.coa-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.coa-hub-card { padding: 1.15rem; }
.coa-hub-card h3 { font-size: 1rem; margin-bottom: 0.35rem; }
.coa-hub-card h3 a { color: var(--text); text-decoration: none; }
.coa-hub-card h3 a:hover { color: var(--gold); }
.coa-hub-nations { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.coa-hub-actions { display: flex; flex-direction: column; gap: 0.35rem; }

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0;
  margin-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
}
.site-footer a { color: var(--green-300); text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.footer-links { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.75rem; }

/* Animations */
.fade-in { animation: fadeIn 0.6s ease forwards; opacity: 0; }
@keyframes fadeIn { to { opacity: 1; } }
.card { animation: fadeIn 0.5s ease forwards; }

@media (max-width: 600px) {
  .mindmap { height: 360px; transform: scale(0.9); }
  .mind-node { width: 72px; font-size: 0.58rem; }
  .card { padding: 1.15rem; }
}
