/* =========================================================================
   VIMSEN EXIM — brand stylesheet
   Design language: export-manifest / spec-sheet, grounded in the material
   itself — dried coconut husk fibre (browns, rust) and the living crop it
   feeds (moss green) — printed on kraft-toned paper.
   No CSS framework: hand-authored, mobile-first, ~fluid type scale.
   ========================================================================= */

:root{
  /* ---- colour tokens ---- */
  --ink:        #241811;   /* primary text */
  --ink-soft:   #5B4B3C;   /* secondary text */
  --husk:       #3A2718;   /* dark brown — header/footer/dark bands */
  --husk-2:     #2A1B10;   /* deeper brown for gradients/depth */
  --rust:       #A8532B;   /* primary accent — CTAs, links */
  --rust-dark:  #863F1F;   /* hover state */
  --moss:       #4F6B34;   /* secondary accent — QC / natural cues */
  --moss-dark:  #3C5227;
  --moss-tint:  #E9EFDD;   /* pale green fill */
  --kraft:      #F1E9D8;   /* warm section background */
  --kraft-line: #DCCBA9;   /* hairline rule on kraft */
  --paper:      #FBF8F2;   /* base page background */
  --white:      #FFFFFF;
  --line:       #E4D9C4;   /* hairline border on paper */
  --line-dark:  rgba(255,255,255,.14);

  /* ---- type scale (fluid) ---- */
  --fs-h1: clamp(2.1rem, 1.55rem + 2.4vw, 3.6rem);
  --fs-h2: clamp(1.65rem, 1.35rem + 1.3vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem);
  --fs-lead: clamp(1.05rem, 0.98rem + 0.3vw, 1.2rem);
  --fs-stat: clamp(2rem, 1.6rem + 1.6vw, 3rem);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "IBM Plex Sans", -apple-system, "Segoe UI", Roboto, sans-serif;

  --radius: 3px;
  --container: 1180px;
}

/* ---------------------------------------------------------------------- */
/* Reset + base */
/* ---------------------------------------------------------------------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul, ol{ margin: 0; padding: 0; }
button{ font: inherit; cursor: pointer; }
h1,h2,h3,h4{
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.14;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
h1{ font-size: var(--fs-h1); }
h2{ font-size: var(--fs-h2); }
h3{ font-size: var(--fs-h3); }
p{ margin: 0 0 1.1em; }
.lead{ font-size: var(--fs-lead); color: var(--ink-soft); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

:focus-visible{ outline: 3px solid var(--rust); outline-offset: 2px; }

/* ---------------------------------------------------------------------- */
/* Layout helpers */
/* ---------------------------------------------------------------------- */
.wrap{ max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.wrap-narrow{ max-width: 780px; margin: 0 auto; padding: 0 20px; }
section{ padding: 64px 0; }
@media (min-width: 800px){ section{ padding: 96px 0; } }
.bg-paper{ background: var(--paper); }
.bg-kraft{ background: var(--kraft); }
.bg-husk{ background: var(--husk); color: #EFE6D6; }
.bg-husk h1, .bg-husk h2, .bg-husk h3{ color: var(--white); }
.bg-white{ background: var(--white); }
.rule{ border: 0; border-top: 1px solid var(--line); margin: 0; }
.bg-husk .rule{ border-top: 1px solid var(--line-dark); }

.grid{ display: grid; gap: 32px; }
@media (min-width: 780px){
  .grid-2{ grid-template-columns: 1fr 1fr; }
  .grid-3{ grid-template-columns: repeat(3, 1fr); }
  .grid-4{ grid-template-columns: repeat(4, 1fr); }
}

.section-head{ max-width: 640px; margin: 0 0 40px; }
.section-head.center{ margin-left: auto; margin-right: auto; text-align: center; }
.kicker{
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--rust);
  margin-bottom: 10px;
  border-bottom: 2px solid var(--rust);
  padding-bottom: 3px;
}

/* ---------------------------------------------------------------------- */
/* Buttons */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-weight: 600;
  font-size: 1rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary{ background: var(--rust); color: var(--white); }
.btn-primary:hover{ background: var(--rust-dark); }
.btn-outline{ background: transparent; border-color: currentColor; color: inherit; }
.btn-outline:hover{ background: rgba(0,0,0,.05); }
.bg-husk .btn-outline{ border-color: #C9B79A; color: #F1E9D8; }
.bg-husk .btn-outline:hover{ background: rgba(255,255,255,.08); }
.btn-whatsapp{ background: #25D366; color: #06210F; }
.btn-whatsapp:hover{ background: #1DAE54; }
.btn-block{ width: 100%; justify-content: center; }
.btn svg{ width: 20px; height: 20px; flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Header / nav */
/* ---------------------------------------------------------------------- */
.site-header{
  position: sticky; top: 0; z-index: 50;
  background: var(--husk);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.site-header .wrap{ display: flex; align-items: center; justify-content: space-between; height: 84px; }
.wordmark{ display: flex; align-items: center; gap: 12px; line-height: 1; color: var(--white); }
.wordmark-icon{ flex-shrink: 0; display: block; }
.wordmark-text{ display: flex; flex-direction: column; }
.wordmark strong{ font-family: var(--font-display); font-size: 1.55rem; font-weight: 600; letter-spacing: .01em; }
.wordmark-text span{ font-size: .68rem; color: #C9B79A; margin-top: 4px; letter-spacing: .04em; }

.main-nav{ display: none; align-items: center; gap: 4px; }
@media (min-width: 940px){ .main-nav{ display: flex; } }
.main-nav a{
  color: #E6D9C0;
  font-size: .94rem;
  font-weight: 500;
  padding: 10px 14px;
  border-bottom: 2px solid transparent;
  transition: color .15s ease, border-color .15s ease;
}
.main-nav a:hover{ color: var(--white); }
.main-nav a[aria-current="page"]{ color: var(--white); border-color: var(--rust); }

.header-cta{ display: none; }
@media (min-width: 940px){ .header-cta{ display: inline-flex; } }

.menu-btn{
  background: transparent; border: none; color: var(--white);
  padding: 8px; display: inline-flex;
}
@media (min-width: 940px){ .menu-btn{ display: none; } }
.menu-btn svg{ width: 28px; height: 28px; }

.mobile-nav{
  display: none;
  background: var(--husk-2);
  border-top: 1px solid rgba(255,255,255,.08);
}
.mobile-nav.open{ display: block; }
.mobile-nav a{
  display: block;
  padding: 14px 20px;
  color: #E6D9C0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.mobile-nav a[aria-current="page"]{ color: var(--white); }
.mobile-nav .mob-cta{ padding: 16px 20px; }
@media (min-width: 940px){ .mobile-nav{ display: none !important; } }

/* ---------------------------------------------------------------------- */
/* Breadcrumb */
/* ---------------------------------------------------------------------- */
.breadcrumb{ font-size: .82rem; color: var(--ink-soft); padding: 16px 0; }
.breadcrumb a:hover{ color: var(--rust); }
.breadcrumb .sep{ margin: 0 6px; color: var(--kraft-line); }

/* ---------------------------------------------------------------------- */
/* Hero (manifest style)                                                  */
/* ---------------------------------------------------------------------- */
.hero{ padding: 48px 0 64px; position: relative; overflow: hidden; }
@media (min-width: 800px){ .hero{ padding: 64px 0 88px; } }
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: radial-gradient(var(--kraft-line) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: .35;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
  pointer-events: none;
}
.hero-inner{ position: relative; display: grid; gap: 40px; }
@media (min-width: 960px){ .hero-inner{ grid-template-columns: 1.15fr .85fr; align-items: center; } }
.hero h1{ margin-bottom: .4em; }
.hero-actions{ display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero-photo{
  aspect-ratio: 4/3;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--kraft);
}
.hero-photo img{ width: 100%; height: 100%; object-fit: cover; }

.manifest{
  border: 1px solid var(--line);
  background: var(--white);
  padding: 4px;
}
.manifest-row{
  display: grid; grid-template-columns: 1fr auto;
  gap: 12px; align-items: baseline;
  padding: 16px 18px;
  border-bottom: 1px dashed var(--kraft-line);
}
.manifest-row:last-child{ border-bottom: none; }
.manifest-row .label{ font-size: .84rem; color: var(--ink-soft); }
.manifest-row .value{ font-family: var(--font-display); font-weight: 600; font-size: 1.3rem; color: var(--husk); text-align: right; }
.manifest-title{
  font-size: .78rem; font-weight: 600; letter-spacing: .03em; color: var(--white);
  background: var(--rust); padding: 10px 18px;
}

/* Stat strip */
.stat-strip{ display: grid; gap: 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
@media (min-width: 700px){ .stat-strip{ grid-template-columns: repeat(4, 1fr); } }
.stat{
  padding: 28px 24px;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 700px){
  .stat{ border-bottom: none; border-right: 1px solid var(--line); }
  .stat:last-child{ border-right: none; }
}
.stat .num{ font-family: var(--font-display); font-size: var(--fs-stat); font-weight: 600; color: var(--rust); line-height: 1; }
.stat .cap{ font-size: .88rem; color: var(--ink-soft); margin-top: 8px; }

/* ---------------------------------------------------------------------- */
/* Cards / tiles (used sparingly, restrained styling) */
/* ---------------------------------------------------------------------- */
.tile{
  background: var(--white);
  border: 1px solid var(--line);
  padding: 30px;
}
.tile-link{ display: block; transition: border-color .15s ease; }
.tile-link:hover{ border-color: var(--rust); }
.tile img{ width: calc(100% + 60px); aspect-ratio: 1; object-fit: cover; margin: -30px -30px 24px; }
.icon-box{
  width: 46px; height: 46px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--moss-tint); color: var(--moss-dark);
  margin-bottom: 16px;
}
.icon-box svg{ width: 24px; height: 24px; }

/* ---------------------------------------------------------------------- */
/* Process timeline (genuine sequence -> numbered, justified) */
/* ---------------------------------------------------------------------- */
.timeline{ position: relative; }
.timeline-item{
  position: relative;
  display: grid; grid-template-columns: 64px 1fr; gap: 22px;
  padding-bottom: 44px;
}
.timeline-item:last-child{ padding-bottom: 0; }
.timeline-item::before{ /* connecting line */
  content:"";
  position: absolute; left: 31px; top: 60px; bottom: 0;
  width: 1px; background: var(--kraft-line);
}
.timeline-item:last-child::before{ display: none; }
.tl-num{
  width: 64px; height: 64px;
  border: 1px solid var(--husk);
  color: var(--husk);
  font-family: var(--font-display); font-weight: 600; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--paper);
  z-index: 1;
}
.tl-body h3{ margin-bottom: 6px; }
.tl-qc{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: .82rem; color: var(--moss-dark); font-weight: 600;
  margin-top: 10px;
}
.tl-qc svg{ width: 15px; height: 15px; flex-shrink: 0; }

/* ---------------------------------------------------------------------- */
/* Spec tables (data-sheet feel, not cards) */
/* ---------------------------------------------------------------------- */
.spec-table{ width: 100%; border-collapse: collapse; font-size: .92rem; }
.spec-table caption{ text-align: left; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; margin-bottom: 14px; color: var(--husk); }
.spec-table th, .spec-table td{ text-align: left; padding: 13px 16px; border: 1px solid var(--line); }
.spec-table thead th{ background: var(--husk); color: var(--white); font-weight: 600; font-size: .82rem; }
.spec-table tbody tr:nth-child(even){ background: var(--kraft); }
.spec-table td.num, .spec-table th.num{ white-space: nowrap; }

.spec-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); margin: 28px 0; }
@media (min-width: 640px){ .spec-grid{ grid-template-columns: repeat(4,1fr); } }
.spec-cell{ background: var(--white); padding: 18px; }
.spec-cell .k{ font-size: .78rem; color: var(--ink-soft); display: block; margin-bottom: 6px; }
.spec-cell .v{ font-weight: 600; color: var(--husk); font-size: 1.05rem; }

/* ---------------------------------------------------------------------- */
/* Product blocks */
/* ---------------------------------------------------------------------- */
.product-block{ border: 1px solid var(--line); background: var(--white); margin-bottom: 40px; }
.product-media{ background: var(--kraft); aspect-ratio: 4/3; overflow: hidden; }
.product-media img{ width: 100%; height: 100%; object-fit: cover; }
.product-body{ padding: 32px; }
@media (min-width: 780px){
  .product-block{ display: grid; grid-template-columns: 1fr 1fr; }
  .product-body{ padding: 44px; }
}
.eyebrow-tag{ display: inline-block; background: var(--moss-tint); color: var(--moss-dark); font-size: .8rem; font-weight: 600; padding: 4px 10px; margin-bottom: 12px; }

/* ---------------------------------------------------------------------- */
/* FAQ accordion */
/* ---------------------------------------------------------------------- */
.faq-item{ border: 1px solid var(--line); background: var(--white); margin-bottom: 12px; }
.faq-btn{
  width: 100%; text-align: left; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--husk);
}
.faq-btn svg{ width: 20px; height: 20px; color: var(--rust); flex-shrink: 0; transition: transform .25s ease; }
.faq-btn[aria-expanded="true"] svg{ transform: rotate(180deg); }
.faq-panel{ padding: 0 22px 20px; color: var(--ink-soft); max-width: 68ch; }
.faq-panel[hidden]{ display: none; }

/* ---------------------------------------------------------------------- */
/* Form */
/* ---------------------------------------------------------------------- */
.field{ margin-bottom: 20px; }
.field label{ display: block; font-size: .88rem; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.field .req{ color: var(--rust); }
.field input, .field select, .field textarea{
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  border-radius: var(--radius);
}
.field input:focus, .field select:focus, .field textarea:focus{ outline: 3px solid var(--rust); outline-offset: 1px; border-color: var(--rust); }
.field-row{ display: grid; gap: 20px; }
@media (min-width: 620px){ .field-row{ grid-template-columns: 1fr 1fr; } }
.form-card{ background: var(--white); padding: 32px; border: 1px solid var(--line); }
@media (min-width: 700px){ .form-card{ padding: 40px; } }
.form-note{ font-size: .82rem; color: var(--ink-soft); margin-top: 14px; }

/* ---------------------------------------------------------------------- */
/* Contact info list */
/* ---------------------------------------------------------------------- */
.info-list{ list-style: none; }
.info-list li{ display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line-dark); }
.info-list li:last-child{ border-bottom: none; }
.bg-white .info-list li, .bg-paper .info-list li, .bg-kraft .info-list li{ border-bottom-color: var(--line); }
.info-list .ic{ width: 22px; height: 22px; flex-shrink: 0; color: var(--rust); margin-top: 2px; }
.info-list h4{ font-family: var(--font-body); font-size: .95rem; font-weight: 600; margin: 0 0 3px; }

/* ---------------------------------------------------------------------- */
/* Certification / trust strip */
/* ---------------------------------------------------------------------- */
.trust-row{ display: flex; flex-wrap: wrap; gap: 32px; align-items: flex-start; }
.trust-item{ display: flex; gap: 14px; max-width: 240px; }
.trust-item .ic{ width: 30px; height: 30px; color: var(--rust); flex-shrink: 0; }
.trust-item h4{ font-family: var(--font-body); font-weight: 600; margin: 0 0 4px; color: var(--white); font-size: .95rem; }
.trust-item p{ margin: 0; font-size: .84rem; color: #C9B79A; }

/* ---------------------------------------------------------------------- */
/* Footer */
/* ---------------------------------------------------------------------- */
.site-footer{ background: var(--husk-2); color: #C9B79A; padding: 56px 0 28px; }
.footer-grid{ display: grid; gap: 40px; margin-bottom: 40px; }
@media (min-width: 780px){ .footer-grid{ grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; } }
.site-footer h4{ color: var(--white); font-family: var(--font-body); font-weight: 600; font-size: .92rem; margin-bottom: 14px; }
.site-footer ul{ list-style: none; }
.site-footer li{ margin-bottom: 9px; font-size: .92rem; }
.site-footer a:hover{ color: var(--white); }
.footer-bottom{ border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; font-size: .82rem; display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between; }

/* ---------------------------------------------------------------------- */
/* WhatsApp floating button */
/* ---------------------------------------------------------------------- */
.wa-float{
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 58px; height: 58px;
  background: #25D366; color: #06210F;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 18px rgba(0,0,0,.25);
  border-radius: 50%;
  transition: transform .15s ease;
}
.wa-float:hover{ transform: scale(1.06); }
.wa-float svg{ width: 30px; height: 30px; }

/* ---------------------------------------------------------------------- */
/* Modal (datasheet preview) */
/* ---------------------------------------------------------------------- */
.modal-backdrop{
  display: none;
  position: fixed; inset: 0; background: rgba(20,13,8,.6);
  z-index: 70; align-items: center; justify-content: center; padding: 20px;
}
.modal-backdrop.open{ display: flex; }
.modal-box{
  background: var(--white); max-width: 720px; width: 100%;
  max-height: 85vh; overflow-y: auto; padding: 32px; position: relative;
}
.modal-close{ position: absolute; top: 18px; right: 18px; background: none; border: none; color: var(--ink-soft); }
.modal-close svg{ width: 24px; height: 24px; }

/* ---------------------------------------------------------------------- */
/* Utility */
/* ---------------------------------------------------------------------- */
.mt-0{ margin-top: 0; } .mb-0{ margin-bottom: 0; }
.center{ text-align: center; }
.max-prose{ max-width: 68ch; }
.hide-mobile{ display: none; } @media (min-width:780px){ .hide-mobile{ display: block; } }
.sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }
.skip-link{
  position: absolute; left: -999px; top: 0; background: var(--rust); color: #fff; padding: 12px 18px; z-index: 100;
}
.skip-link:focus{ left: 10px; top: 10px; }

/* ---------------------------------------------------------------------- */
/* Tabs (Process & Quality combined page)                                 */
/* ---------------------------------------------------------------------- */
.tab-bar{
  display: flex; flex-wrap: wrap; gap: 6px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.tab-btn{
  background: none; border: none;
  padding: 14px 20px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.02rem;
  color: var(--ink-soft);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.tab-btn:hover{ color: var(--husk); }
.tab-btn[aria-selected="true"]{ color: var(--husk); border-bottom-color: var(--rust); }
.tab-panel[hidden]{ display: none; }

/* ---------------------------------------------------------------------- */
/* Mini process flow (icon row with arrows)                               */
/* ---------------------------------------------------------------------- */
.flow-row{ display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: center; gap: 4px; }
.flow-step{ display: flex; flex-direction: column; align-items: center; width: 100px; text-align: center; }
.flow-step .icon-box{ margin-bottom: 10px; }
.flow-step span{ font-size: .82rem; font-weight: 600; color: var(--ink); line-height: 1.25; }
.flow-arrow{ color: var(--kraft-line); flex-shrink: 0; margin-top: 22px; }
.flow-arrow svg{ width: 20px; height: 20px; }
@media (max-width: 700px){ .flow-arrow{ display: none; } }

/* ---------------------------------------------------------------------- */
/* Crop cards (Crop Solutions tab)                                        */
/* ---------------------------------------------------------------------- */
.crop-card{ background: var(--white); border: 1px solid var(--line); overflow: hidden; }
.crop-card img{ width: 100%; height: 160px; object-fit: cover; }
.crop-card-body{ padding: 20px; }
.crop-card-body h3{ font-size: 1.1rem; margin-bottom: 8px; }
.crop-card-body p{ font-size: .9rem; color: var(--ink-soft); margin-bottom: 10px; }
.crop-card-body .rec{ font-size: .82rem; font-weight: 600; color: var(--moss-dark); }

/* ---------------------------------------------------------------------- */
/* Product detail pages                                                   */
/* ---------------------------------------------------------------------- */
.product-hero{ padding: 48px 0; border-bottom: 1px solid var(--line); background: var(--paper); }
.product-hero-grid{ display: grid; gap: 32px; }
@media (min-width: 900px){ .product-hero-grid{ grid-template-columns: 1.1fr .9fr; align-items: center; } }
.product-hero-photo{ aspect-ratio: 1/1; overflow: hidden; border: 1px solid var(--line); background: var(--kraft); }
.product-hero-photo img{ width: 100%; height: 100%; object-fit: cover; }
.product-hero-text .eyebrow-tag{ margin-bottom: 10px; }
.product-hero-text h1{ margin-bottom: 14px; }

.app-icon-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; align-items: start; }
@media (min-width: 640px){ .app-icon-grid{ grid-template-columns: repeat(4,1fr); } }
.app-icon-item{ text-align: center; display: flex; flex-direction: column; align-items: stretch; }
.app-icon-item img{ display: block; width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; margin: 0 0 10px; border: 1px solid var(--line); background: var(--kraft, #EFE7D9); }
.app-icon-item span{ font-size: .88rem; font-weight: 600; line-height: 1.35; margin-top: auto; }

.feature-icon-grid{ display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
@media (min-width: 640px){ .feature-icon-grid{ grid-template-columns: repeat(3,1fr); } }
.feature-icon-item{ text-align: center; }
.feature-icon-item .icon-box{ margin: 0 auto 12px; }
.feature-icon-item span{ font-size: .9rem; font-weight: 600; display: block; }

/* ---------------------------------------------------------------------- */
/* Certificate display                                                    */
/* ---------------------------------------------------------------------- */
.cert-card{ background: var(--white); border: 1px solid var(--line); padding: 12px; text-align: center; }
.cert-card img{ width: 100%; border: 1px solid var(--line); margin-bottom: 12px; cursor: zoom-in; }
.cert-card h4{ font-family: var(--font-body); font-size: .92rem; font-weight: 600; margin: 0; }

/* ---- Language & market bar ---- */
.locale-bar{background:#241811;color:#C9B79A;font-size:.82rem;}
.locale-bar .wrap{display:flex;flex-wrap:wrap;align-items:center;gap:10px;padding-top:8px;padding-bottom:8px;}
.locale-bar-label{opacity:.7;text-transform:uppercase;letter-spacing:.08em;font-size:.7rem;}
.locale-bar a{color:#E8DCC8;text-decoration:none;padding:2px 6px;border-radius:4px;}
.locale-bar a:hover{background:rgba(255,255,255,.12);}
.locale-bar a.on{background:rgba(255,255,255,.16);font-weight:600;}
.locale-bar-sep{flex:0 0 1px;height:14px;background:rgba(255,255,255,.25);margin:0 4px;}
.locale-select{background:#2f2015;color:#E8DCC8;border:1px solid rgba(255,255,255,.25);border-radius:4px;padding:3px 24px 3px 8px;font-size:.82rem;font-family:inherit;line-height:1.3;cursor:pointer;-webkit-appearance:none;-moz-appearance:none;appearance:none;background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23E8DCC8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");background-repeat:no-repeat;background-position:right 6px center;background-size:13px;}
.locale-select:hover{background-color:#3a2818;}
.locale-select:focus{outline:2px solid rgba(255,255,255,.4);outline-offset:1px;}
.locale-select option{background:#241811;color:#E8DCC8;}
@media(max-width:640px){.locale-bar .wrap{gap:6px;}.locale-bar-sep{display:none;}}
