@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,600&family=Jost:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ===== CSS VARIABLES ===== */
:root {
  --dark:        #0d0905;
  --dark-2:      #161009;
  --dark-3:      #1f180c;
  --dark-4:      #2a2010;
  --light:       #f5f0e8;
  --light-2:     #ece7de;
  --light-3:     #e2ddd4;
  --accent:      #c9a84c;
  --accent-2:    #d4b55a;
  --accent-dim:  rgba(201, 168, 76, 0.18);
  --accent-bdr:  rgba(201, 168, 76, 0.32);
  --text-d:      #ecdeca;
  --text-d2:     #b8a888;
  --text-muted:  #7a6a4a;
  --text-l:      #1a1208;
  --text-l2:     #4a3e2a;
  --text-ml:     #7a6a50;
  --white:       #ffffff;
  --bdr-d:       rgba(255,255,255,0.07);
  --bdr-l:       rgba(0,0,0,0.09);
  --serif:       'Cormorant Garamond', Georgia, serif;
  --sans:        'Jost', system-ui, sans-serif;
  --nav-h:       76px;
  --ease:        0.28s ease;
  --ease-long:   0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  background: var(--dark);
  color: var(--text-d);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--sans); cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: var(--sans); }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 3px; }

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5 { font-family: var(--serif); font-weight: 500; line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.1rem; }
.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}
.section-subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.75;
  max-width: 580px;
  line-height: 1.8;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.8rem 1.8rem;
  border-radius: 3px;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--accent-2); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.btn-outline-light {
  border: 1px solid rgba(255,255,255,0.35);
  color: var(--text-d);
}
.btn-outline-light:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline-dark {
  border: 1px solid rgba(26,18,8,0.35);
  color: var(--text-l);
}
.btn-outline-dark:hover { border-color: var(--accent); color: var(--accent); }
.btn svg, .btn .arrow { font-size: 0.9rem; transition: transform var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ===== NAVIGATION ===== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(13, 9, 5, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--bdr-d);
  transition: box-shadow var(--ease);
}
#navbar.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.6); }
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}
.nav-logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.02em;
  font-family: var(--sans);
  flex-shrink: 0;
}
.nav-logo-text strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-d);
  line-height: 1.2;
  letter-spacing: 0.01em;
}
.nav-logo-text span {
  font-size: 0.6rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-d2);
  padding: 0.4rem 0.75rem;
  border-radius: 3px;
  transition: color var(--ease);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-d); }
.nav-links a.active { color: var(--accent); }

/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.nav-dropdown > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--text-d2);
  transition: transform var(--ease), border-color var(--ease);
}
.nav-dropdown:hover > a::after { border-top-color: var(--accent); transform: rotate(180deg); }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--dark-2);
  border: 1px solid var(--bdr-d);
  border-radius: 6px;
  min-width: 210px;
  padding: 0.5rem 0;
  opacity: 0;
  pointer-events: none;
  transition: all var(--ease);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1.2rem;
  font-size: 0.8rem;
  color: var(--text-d2) !important;
  transition: all var(--ease);
  border-radius: 0;
}
.dropdown-menu a:hover { color: var(--accent) !important; background: var(--accent-dim); padding-left: 1.5rem; }
.dropdown-menu a .dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-nav {
  background: var(--accent);
  color: var(--dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.55rem 1.3rem;
  border-radius: 3px;
  letter-spacing: 0.04em;
  transition: all var(--ease);
  white-space: nowrap;
}
.btn-nav:hover { background: var(--accent-2); box-shadow: 0 4px 18px rgba(201,168,76,0.4); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 22px; height: 2px;
  background: var(--text-d2);
  border-radius: 2px;
  transition: all var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--dark-2);
  border-bottom: 1px solid var(--bdr-d);
  padding: 1.5rem 2rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.25rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 0.9rem;
  color: var(--text-d2);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--bdr-d);
  transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn-nav { margin-top: 0.75rem; text-align: center; justify-content: center; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13,9,5,0.88) 0%, rgba(13,9,5,0.55) 60%, rgba(13,9,5,0.3) 100%);
}
.hero-overlay-full {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,9,5,0.7) 0%, rgba(13,9,5,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 2rem;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-block;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-weight: 600;
  color: var(--white);
  max-width: 700px;
  margin-bottom: 1.4rem;
  line-height: 1.12;
}
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--text-d2);
  font-weight: 300;
  max-width: 520px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.8rem 1.6rem;
  border-radius: 3px;
  transition: all var(--ease);
}
.wa-btn:hover { background: #1ebe5c; transform: translateY(-1px); }
.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-d2);
}
.hero-badge::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Page hero (shorter, centered) */
.page-hero {
  min-height: 38vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  padding-top: var(--nav-h);
}
.page-hero .hero-bg { filter: brightness(0.4); }
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 2rem 3.5rem;
  width: 100%;
}
.page-hero-content .section-eyebrow { margin-bottom: 0.5rem; }
.page-hero-content h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero-content p { color: var(--text-d2); margin-top: 0.6rem; font-size: 1rem; max-width: 520px; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-lg { padding: 7rem 0; }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-dark { background: var(--dark-2); }
.section-darker { background: var(--dark); }
.section-dark-3 { background: var(--dark-3); }
.section-light { background: var(--light); color: var(--text-l); }
.section-light-2 { background: var(--light-2); color: var(--text-l); }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }
.section-light .section-eyebrow, .section-light-2 .section-eyebrow { color: var(--accent); }
.section-light h2, .section-light-2 h2 { color: var(--text-l); }
.section-light .section-subtitle, .section-light-2 .section-subtitle { color: var(--text-l2); }

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--bdr-d);
  border-bottom: 1px solid var(--bdr-d);
  padding: 2rem 0;
}
.stats-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}
.stat-item {
  text-align: center;
  padding: 1rem 2rem;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: var(--bdr-d);
}
.stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ===== CARDS ===== */
/* Category cards (home & products) */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.cat-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.cat-card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.cat-card:hover .cat-card-img { transform: scale(1.04); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,9,5,0.88) 0%, rgba(13,9,5,0.3) 50%, transparent 100%);
}
.cat-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
}
.cat-card-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.cat-card h3 { color: var(--white); margin-bottom: 0.5rem; font-size: 1.35rem; }
.cat-card p { font-size: 0.82rem; color: var(--text-d2); margin-bottom: 1rem; line-height: 1.6; }
.cat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
  transition: gap var(--ease);
}
.cat-card:hover .cat-card-link { gap: 0.7rem; }

/* Advantage cards */
.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.adv-card {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: border-color var(--ease), transform var(--ease);
}
.adv-card:hover { border-color: var(--accent-bdr); transform: translateY(-3px); }
.adv-icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.15rem;
}
.adv-card h4 { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--text-d); margin-bottom: 0.6rem; }
.adv-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }
.section-light .adv-card, .section-light-2 .adv-card { background: var(--white); border-color: var(--bdr-l); }
.section-light .adv-card:hover, .section-light-2 .adv-card:hover { border-color: var(--accent); }
.section-light .adv-card h4, .section-light-2 .adv-card h4 { color: var(--text-l); }
.section-light .adv-card p, .section-light-2 .adv-card p { color: var(--text-ml); }

/* Process steps grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--bdr-l);
  border-radius: 6px;
  padding: 1.75rem;
  position: relative;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.process-step:hover { border-color: var(--accent); box-shadow: 0 6px 24px rgba(201,168,76,0.12); }
.step-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.6;
  line-height: 1;
  margin-bottom: 1rem;
}
.process-step h4 { font-family: var(--sans); font-weight: 600; font-size: 0.95rem; color: var(--text-l); margin-bottom: 0.5rem; }
.process-step p { font-size: 0.82rem; color: var(--text-ml); line-height: 1.75; }

/* Dark process steps */
.process-step.dark {
  background: var(--dark-3);
  border-color: var(--bdr-d);
}
.process-step.dark:hover { border-color: var(--accent-bdr); }
.process-step.dark h4 { color: var(--text-d); }
.process-step.dark p { color: var(--text-muted); }

/* Market cards */
.market-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.market-card {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: border-color var(--ease);
}
.market-card:hover { border-color: var(--accent-bdr); }
.market-flag { font-size: 2.5rem; margin-bottom: 1rem; }
.market-code {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.market-card h3 { font-size: 1.4rem; color: var(--text-d); margin-bottom: 0.75rem; }
.market-card p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.75; }

/* Credential cards */
.cred-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}
.cred-card {
  background: var(--white);
  border: 1px solid var(--bdr-l);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
}
.cred-icon {
  width: 52px; height: 52px;
  background: var(--dark);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}
.cred-card h4 { font-family: var(--sans); font-size: 0.9rem; font-weight: 600; color: var(--text-l); margin-bottom: 0.4rem; }
.cred-card p { font-size: 0.8rem; color: var(--text-ml); line-height: 1.7; }

/* ===== COMMITMENT CARDS ===== */
.commit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.commit-card {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 6px;
  padding: 2.5rem 2rem;
  transition: border-color var(--ease);
}
.commit-card:hover { border-color: var(--accent-bdr); }
.commit-num {
  font-family: var(--serif);
  font-size: 3rem;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 1rem;
}
.commit-card h4 { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--text-d); margin-bottom: 0.75rem; }
.commit-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.8; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--light);
  padding: 5rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--text-l); margin-bottom: 1rem; }
.cta-section p { color: var(--text-l2); max-width: 560px; margin: 0 auto 2rem; font-size: 1rem; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-contact-bar {
  margin-top: 2rem;
  font-size: 0.82rem;
  color: var(--text-ml);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cta-contact-bar a { color: var(--accent); }

/* ===== ABOUT SPECIFICS ===== */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.about-stat {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 6px;
  padding: 1.5rem;
}
.about-stat .num {
  display: block;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.about-stat .lbl { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); }
.map-placeholder {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; opacity: 0.6; }
.map-badge {
  position: absolute;
  bottom: 1.5rem; right: 1.5rem;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  letter-spacing: 0.05em;
}

/* ===== EXPORT DIRECT BANNER ===== */
.export-direct {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
  border-top: 1px solid var(--bdr-d);
  border-bottom: 1px solid var(--bdr-d);
}
.export-direct h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 1rem; }
.export-direct p { color: var(--text-d2); max-width: 680px; margin: 0 auto; font-size: 1rem; line-height: 1.85; }

/* ===== WHY CHOOSE - FULL DARK SECTION ===== */
.why-section { background: var(--dark-2); }

/* ===== PRODUCT DETAILS ===== */
.product-feature-bar {
  background: var(--dark-3);
  border-top: 1px solid var(--bdr-d);
  border-bottom: 1px solid var(--bdr-d);
  padding: 1.75rem 0;
}
.product-features {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}
.pf-icon {
  width: 36px; height: 36px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.pf-item h5 { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--text-d); margin-bottom: 0.2rem; }
.pf-item p { font-size: 0.76rem; color: var(--text-muted); line-height: 1.5; }

/* Product category detail cards */
.prod-cat-card {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: border-color var(--ease);
}
.prod-cat-card:hover { border-color: var(--accent-bdr); }
.prod-cat-img {
  width: 100%; height: 240px;
  object-fit: cover;
}
.prod-cat-body { padding: 2rem; }
.prod-cat-body .section-eyebrow { font-size: 0.62rem; }
.prod-cat-body h3 { margin-bottom: 0.6rem; font-size: 1.5rem; }
.prod-cat-body p { font-size: 0.83rem; color: var(--text-muted); margin-bottom: 1.25rem; line-height: 1.75; }
.sub-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.sub-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  background: var(--dark-4);
  border: 1px solid var(--bdr-d);
  color: var(--text-d2);
  padding: 0.3rem 0.7rem;
  border-radius: 3px;
}

/* ===== PROCESS DETAILED ===== */
.process-detailed {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.pd-step {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  transition: border-color var(--ease);
}
.pd-step:hover { border-color: var(--accent-bdr); }
.pd-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.7;
  line-height: 1;
  flex-shrink: 0;
  min-width: 44px;
}
.pd-step h4 { font-family: var(--sans); font-weight: 600; color: var(--text-d); margin-bottom: 0.5rem; }
.pd-step p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.75; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 780px; }
.faq-item {
  border-bottom: 1px solid var(--bdr-l);
  overflow: hidden;
}
.section-light .faq-item { border-color: var(--bdr-l); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 1.3rem 0;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-l);
  cursor: pointer;
  gap: 1rem;
  background: none;
  border: none;
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 26px; height: 26px;
  border: 1px solid var(--bdr-l);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  flex-shrink: 0;
  transition: all var(--ease);
  color: var(--text-ml);
}
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); color: var(--dark); transform: rotate(45deg); }
.faq-answer {
  font-size: 0.88rem;
  color: var(--text-ml);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.2rem; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 5rem;
  align-items: start;
}
.contact-info-items { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.ci-icon {
  width: 42px; height: 42px;
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.ci-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem; }
.ci-value { font-size: 0.9rem; color: var(--text-d); }
.ci-value a { color: var(--accent); }

/* ===== FORMS ===== */
.form-card {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 8px;
  padding: 2.5rem;
}
.form-card.light {
  background: var(--white);
  border-color: var(--bdr-l);
}
.form-section-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
  display: block;
}
.form-section-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.form-card.light .form-section-desc { color: var(--text-ml); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1.25rem; }
.form-row.single { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; margin-bottom: 1.25rem; }
.form-group label {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-d2);
}
.form-card.light .form-group label { color: var(--text-l2); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-4);
  border: 1px solid var(--bdr-d);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-size: 0.85rem;
  color: var(--text-d);
  transition: border-color var(--ease);
  outline: none;
  width: 100%;
}
.form-card.light .form-group input,
.form-card.light .form-group select,
.form-card.light .form-group textarea {
  background: var(--light-2);
  border-color: var(--bdr-l);
  color: var(--text-l);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}
.form-card.light .form-group input::placeholder,
.form-card.light .form-group textarea::placeholder {
  color: var(--text-ml);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238a7a5a' fill='none' stroke-width='1.5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.form-note { font-size: 0.76rem; color: var(--text-muted); text-align: center; margin-top: 1rem; }
.form-card.light .form-note { color: var(--text-ml); }
.btn-submit {
  width: 100%;
  background: var(--accent);
  color: var(--dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.95rem 2rem;
  border-radius: 4px;
  transition: all var(--ease);
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
}
.btn-submit:hover { background: var(--accent-2); box-shadow: 0 6px 24px rgba(201,168,76,0.35); }
.form-section-divider { border: none; border-top: 1px solid var(--bdr-d); margin: 2rem 0; }
.form-card.light .form-section-divider { border-color: var(--bdr-l); }

/* Quote sidebar */
.quote-layout {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3rem;
  align-items: start;
}
.next-steps-card {
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  border-radius: 8px;
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 1.5rem);
}
.nsc-header {
  background: var(--dark-4);
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--bdr-d);
}
.nsc-header h4 { font-family: var(--sans); font-size: 0.95rem; font-weight: 600; color: var(--text-d); margin-bottom: 0.25rem; }
.nsc-header p { font-size: 0.78rem; color: var(--text-muted); }
.nsc-steps { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1.25rem; }
.nsc-step { display: flex; gap: 1rem; align-items: flex-start; }
.nsc-num {
  width: 28px; height: 28px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-bdr);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}
.nsc-step h5 { font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: var(--text-d); margin-bottom: 0.25rem; }
.nsc-step p { font-size: 0.78rem; color: var(--text-muted); line-height: 1.65; }
.nsc-wa {
  margin: 0 1.75rem 1.75rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 6px;
  padding: 1.25rem;
}
.nsc-wa h5 { font-size: 0.82rem; font-weight: 600; color: #25D366; margin-bottom: 0.3rem; }
.nsc-wa p { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.75rem; }
.nsc-wa .wa-btn { font-size: 0.78rem; padding: 0.55rem 1.1rem; }
.nsc-learn { padding: 1.25rem 1.75rem; border-top: 1px solid var(--bdr-d); }
.nsc-learn h5 { font-size: 0.82rem; font-weight: 600; color: var(--text-d); margin-bottom: 0.3rem; }
.nsc-learn p { font-size: 0.76rem; color: var(--text-muted); margin-bottom: 0.6rem; }
.nsc-learn a { font-size: 0.78rem; color: var(--accent); display: inline-flex; align-items: center; gap: 0.35rem; }

/* ===== FEATURE BULLETS ===== */
.feature-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 1rem;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--text-d2);
}
.feature-item::before {
  content: '';
  width: 16px; height: 16px;
  border: 1.5px solid rgba(201,168,76,0.5);
  border-radius: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23c9a84c' fill='none' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}
.section-light .feature-item { color: var(--text-l2); }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid var(--bdr-d);
  padding: 4rem 0 0;
}
.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}
.footer-flags { display: flex; gap: 0.5rem; }
.footer-flag {
  font-size: 0.68rem;
  color: var(--text-muted);
  background: var(--dark-3);
  border: 1px solid var(--bdr-d);
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-d);
  margin-bottom: 1.2rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.82rem; color: var(--text-muted); transition: color var(--ease); }
.footer-links a:hover { color: var(--accent); }
.footer-contact-items { display: flex; flex-direction: column; gap: 1rem; }
.fci {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.fci-icon { font-size: 0.9rem; margin-top: 2px; flex-shrink: 0; }
.fci-text { font-size: 0.8rem; color: var(--text-muted); line-height: 1.5; }
.fci-text strong { display: block; color: var(--text-d2); font-weight: 500; font-size: 0.82rem; }
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(37,211,102,0.12);
  border: 1px solid rgba(37,211,102,0.25);
  color: #4ade80;
  font-size: 0.78rem;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  margin-top: 0.5rem;
  transition: all var(--ease);
}
.footer-wa:hover { background: rgba(37,211,102,0.2); }
.footer-bottom {
  border-top: 1px solid var(--bdr-d);
  padding: 1.25rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: var(--text-muted); }
.footer-bottom span { font-size: 0.72rem; color: var(--text-muted); font-style: italic; }

/* ===== SOURCING SECTION ===== */
.sourcing-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.sourcing-image {
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.sourcing-image img { width: 100%; height: 380px; object-fit: cover; }

/* ===== DONT SEE SECTION ===== */
.dont-see {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--light);
}
.section-light .dont-see { background: transparent; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .adv-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .about-split { gap: 3rem; }
  .sourcing-split { gap: 3rem; }
  .contact-grid { gap: 3rem; }
}
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 4rem 1.5rem; }
  .cat-grid { grid-template-columns: 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .market-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .commit-grid { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; }
  .sourcing-split { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .process-detailed { grid-template-columns: 1fr; }
  .product-features { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { border-bottom: 1px solid var(--bdr-d); }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 1.25rem; }
  .section { padding: 3.5rem 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .product-features { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}

/* ══════════════════════════════════════════════════
   V3 FIXES: logo, hamburger, mobile nav, images
   ══════════════════════════════════════════════════ */

/* ── LOGO ICON: bigger + white background ── */



/* ── HAMBURGER: direct child of nav-inner, visible on mobile ── */
.nav-inner > .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.nav-inner > .hamburger span {
  width: 24px;
  height: 2.5px;
  background: #e8d8b8;
  border-radius: 2px;
  transition: all 0.28s ease;
  display: block;
}
.nav-inner > .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-inner > .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-inner > .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ── MOBILE BREAKPOINT ── */
@media (max-width: 768px) {
  .nav-links  { display: none !important; }
  .nav-cta    { display: none !important; }
  .nav-inner > .hamburger { display: flex !important; }

  /* Mobile slide-down nav */
  .mobile-nav {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: #161009;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    z-index: 998;
    flex-direction: column;
    padding: 0;
    box-shadow: 0 8px 32px rgba(0,0,0,0.6);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .mobile-nav.open { display: flex !important; }

  .mobile-nav a {
    font-size: 0.9rem;
    color: #b8a888;
    padding: 0.9rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.2s, background 0.2s;
    display: block;
  }
  .mobile-nav a:hover,
  .mobile-nav a.active { color: #c9a84c; background: rgba(201,168,76,0.06); }

  /* "Get a Quote" button in mobile nav */
  .mobile-nav .btn-nav {
    display: block !important;
    margin: 1rem 1.5rem;
    text-align: center;
    background: #c9a84c;
    color: #0d0905;
    font-weight: 600;
    border-radius: 4px;
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
}

/* ── HERO BG: ensure image covers properly ── */
.hero-bg {
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* ── CAT CARD IMG: fix sizing for both img and div ── */
.cat-card-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.cat-card { position: relative; overflow: hidden; }
.cat-card:hover .cat-card-img { transform: scale(1.05); }

/* ── PROD BIG CARD IMG ── */
.prod-big-card-img {
  width: 100% !important;
  height: 260px !important;
  object-fit: cover !important;
  display: block !important;
}

/* ══════════════════════════════════════════════════
   V4 FINAL FIXES
   ══════════════════════════════════════════════════ */

/* ── LOGO: match PDF size, clean display ── */
.nav-logo-icon {
    width: 92px;
    height: 52px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: scale(1.6);
}

/* ── MOBILE HAMBURGER: keep nav-cta visible, hide only btn-nav ── */
@media (max-width: 768px) {

  /* Nav links hidden */
  .nav-links { display: none !important; }

  /* nav-cta: keep container but hide the "Get a Quote" button */
  .nav-cta { display: flex !important; align-items: center !important; }
  .nav-cta .btn-nav { display: none !important; }

  /* Hamburger lines: show on mobile */
  .hamburger {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 5px !important;
    width: 36px !important;
    height: 36px !important;
    background: none !important;
    border: none !important;
    cursor: pointer !important;
    padding: 4px !important;
    border-radius: 4px !important;
    transition: background 0.2s !important;
  }
  .hamburger:hover { background: rgba(201,168,76,0.12) !important; }

  .hamburger span {
    display: block !important;
    width: 22px !important;
    height: 2px !important;
    background: #e8d8b8 !important;
    border-radius: 2px !important;
    transition: all 0.28s ease !important;
  }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg) !important;
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0 !important;
    transform: scaleX(0) !important;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg) !important;
  }

  /* Mobile dropdown menu */
  .mobile-nav {
    position: fixed !important;
    top: var(--nav-h) !important;
    left: 0 !important; right: 0 !important;
    background: #161009 !important;
    border-bottom: 1px solid rgba(255,255,255,0.07) !important;
    z-index: 999 !important;
    flex-direction: column !important;
    box-shadow: 0 8px 32px rgba(0,0,0,0.7) !important;
    max-height: calc(100vh - var(--nav-h)) !important;
    overflow-y: auto !important;
    padding: 0 !important;
  }
  .mobile-nav.open { display: flex !important; }

  .mobile-nav a {
    display: block !important;
    padding: 0.85rem 1.5rem !important;
    font-size: 0.88rem !important;
    color: #b8a888 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    transition: color 0.2s, background 0.2s !important;
  }
  .mobile-nav a:hover { color: #c9a84c !important; background: rgba(201,168,76,0.06) !important; }
  .mobile-nav a.active { color: #c9a84c !important; }

  .mobile-nav .btn-nav {
    display: block !important;
    margin: 1rem 1.5rem 1.25rem !important;
    text-align: center !important;
    background: #c9a84c !important;
    color: #0d0905 !important;
    font-weight: 600 !important;
    border-radius: 4px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.85rem !important;
    border: none !important;
  }
}
