
/* ========================================
   GREEN BOUNTY — style.css
   Theme: Lush Green Gradient
======================================== */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-400: #4ade80;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;
  --dark-bg:   #0d2818;
  --text-dark: #1a2e1a;
  --text-mid:  #374151;
  --text-light:#6b7280;
  --white:     #ffffff;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.28s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ========================================
   NAVBAR
======================================== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--green-100);
  height: 68px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-700);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green-600); }

.btn-nav {
  background: linear-gradient(135deg, var(--green-500), var(--green-700)) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  transition: var(--transition) !important;
}
.btn-nav:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(22,163,74,0.35) !important; }

/* ========================================
   BUTTONS
======================================== */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(22,163,74,0.4);
}

.btn-outline {
  display: inline-block;
  border: 2px solid rgba(255,255,255,0.6);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-large { padding: 1rem 2.5rem; font-size: 1.05rem; }
.btn-full { width: 100%; text-align: center; }

/* ========================================
   HERO
======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  background: linear-gradient(140deg, #0d2818 0%, #14532d 30%, #166534 55%, #15803d 75%, #16a34a 100%);
  display: flex;
  align-items: center;
  padding-top: 68px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(74,222,128,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(34,197,94,0.12) 0%, transparent 50%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2322c55e' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 780px;
  padding: 6rem 24px 8rem;
}

.hero-badge {
  display: inline-block;
  background: rgba(74,222,128,0.15);
  border: 1px solid rgba(74,222,128,0.4);
  color: var(--green-200);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.highlight {
  background: linear-gradient(135deg, #86efac, #4ade80);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0;
}
.hero-wave svg { display: block; }

/* ========================================
   SECTIONS
======================================== */
.section {
  padding: 6rem 0;
}
.section-alt {
  background: linear-gradient(180deg, #f0fdf4 0%, #dcfce7 100%);
}
.section-dark {
  background: linear-gradient(140deg, var(--dark-bg) 0%, #0f3d20 50%, #1a5c2e 100%);
  color: white;
}

.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.tag-light {
  background: rgba(74,222,128,0.2);
  color: var(--green-200);
  border: 1px solid rgba(74,222,128,0.3);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--green-900);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}
.title-light { color: white !important; }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  margin-bottom: 3rem;
}

.subsection-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 1.5rem;
  text-align: center;
}

/* ========================================
   CARDS (3-col)
======================================== */
.cards-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--green-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.card-green { border-top: 3px solid var(--green-500); }
.card-featured {
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  color: white;
  border: none;
}
.card-featured h3, .card-featured p { color: white; }

.card-dark {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: white;
}
.card-dark h3 { color: var(--green-200); }
.card-dark p { color: rgba(255,255,255,0.75); }

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.6rem;
}

.card p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ========================================
   MARKET STATS STRIP
======================================== */
.market-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  margin-bottom: 3rem;
  border: 1px solid var(--green-100);
}

.stat-card {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.3rem;
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  background: var(--green-50);
}
.stat-card-highlight {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
}
.stat-card-highlight .stat-num, .stat-card-highlight .stat-label { color: white; }

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--green-700);
  line-height: 1;
}

.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.stat-arrow {
  font-size: 1.25rem;
  color: var(--green-400);
  font-weight: 700;
}

/* ========================================
   BAR CHART
======================================== */
.chart-container {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
}

.chart-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 2rem;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Outer wrapper: y-axis + chart area side by side */
.bar-chart-wrap {
  display: flex;
  align-items: stretch;
  gap: 0.5rem;
}

/* Y-axis labels */
.bar-y-axis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2rem;
  min-width: 40px;
}
.bar-y-axis span {
  font-size: 0.72rem;
  color: var(--text-light);
  font-weight: 500;
  line-height: 1;
}

/* Chart area: grid lines + bars stacked */
.bar-chart-area {
  flex: 1;
  position: relative;
  height: 260px;
}

/* Grid lines */
.bar-grid {
  position: absolute;
  inset: 0;
  bottom: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  pointer-events: none;
}
.bar-gridline {
  width: 100%;
  height: 1px;
  background: var(--green-100);
}

/* Bars row */
.bar-columns {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding-bottom: 2rem;
  gap: 0.75rem;
}

.bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  gap: 0;
}

/* Value label on top of bar */
.bar-top-val {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green-700);
  margin-bottom: 4px;
  white-space: nowrap;
}

/* The actual bar */
.bar-fill {
  width: 100%;
  max-width: 72px;
  height: var(--bar-h);
  background: linear-gradient(180deg, var(--green-400) 0%, var(--green-700) 100%);
  border-radius: 6px 6px 0 0;
  transition: height 0.6s cubic-bezier(.4,0,.2,1);
}
.bar-fill:hover { filter: brightness(1.1); cursor: pointer; }
.bar-fill-peak {
  background: linear-gradient(180deg, #86efac 0%, var(--green-600) 100%);
}

/* X-axis year label */
.bar-x-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  margin-top: 6px;
  position: absolute;
  bottom: 0.25rem;
}

/* Note below chart */
.chart-note {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--green-700);
  font-weight: 500;
}

@media (max-width: 480px) {
  .bar-top-val { font-size: 0.62rem; }
  .bar-fill { max-width: 44px; }
  .bar-x-label { font-size: 0.68rem; }
}

/* ========================================
   PIE SECTION
======================================== */
.pie-section {
  margin-top: 3rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--green-100);
  text-align: center;
}

.pie-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.pie-legend { display: flex; flex-direction: column; gap: 1rem; }

.legend-item {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.95rem; color: var(--text-mid);
}

.legend-dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ========================================
   EDGE GRID
======================================== */
.edge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.edge-card {
  background: linear-gradient(135deg, var(--green-50), white);
  border: 1px solid var(--green-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: var(--transition);
  border-left: 4px solid var(--green-500);
}
.edge-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.edge-icon { font-size: 2.2rem; margin-bottom: 1rem; }

.edge-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.6rem;
}

/* ========================================
   WHY CHOOSE US
======================================== */
.why-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.why-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-100);
  transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.why-num {
  flex-shrink: 0;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.why-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.4rem;
}

.why-item p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ========================================
   BLUEPRINT STATS
======================================== */
.blueprint-section { margin-top: 4rem; text-align: center; }

.blueprint-stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.bp-stat {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: var(--radius-md);
  padding: 2rem 2.5rem;
  max-width: 280px;
  text-align: center;
}

.bp-num {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--green-400);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.bp-label {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
}

/* ========================================
   PARTNERSHIP
======================================== */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.partner-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid var(--green-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.partner-card-center {
  background: linear-gradient(135deg, var(--green-600), var(--green-800));
  color: white;
  border: none;
  transform: scale(1.04);
}
.partner-card-center:hover { transform: scale(1.04) translateY(-4px); }
.partner-card-center h3, .partner-card-center p { color: white; }

.partner-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }

.partner-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.75rem;
}
.partner-card p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* ========================================
   CTA SECTION
======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--green-600) 0%, var(--green-900) 100%);
  padding: 6rem 0;
  text-align: center;
}

.cta-inner { max-width: 700px; margin: 0 auto; }

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

/* ========================================
   CONTACT
======================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 1.5rem;
}

.contact-list {
  list-style: none;
  display: flex; flex-direction: column; gap: 1rem;
  margin-bottom: 2rem;
}

.contact-list li {
  display: flex; flex-direction: column; gap: 0.2rem;
  font-size: 0.95rem;
  color: var(--text-mid);
}

.contact-label {
  font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.5px;
  color: var(--green-600);
}

.contact-list a {
  color: var(--green-600);
  font-weight: 500;
}
.contact-list a:hover { text-decoration: underline; }

.tagline {
  font-size: 1rem;
  color: var(--green-700);
  font-style: italic;
  border-left: 3px solid var(--green-400);
  padding-left: 1rem;
}

.contact-form {
  display: flex; flex-direction: column; gap: 1rem;
  background: var(--green-50);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--green-100);
}

.form-input, .form-textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  background: white;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
}
.form-textarea { resize: vertical; }

/* ========================================
   FOOTER
======================================== */
.footer {
  background: var(--green-900);
  padding: 3rem 0;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-400);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  font-style: italic;
  margin-bottom: 1rem;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  /* Nav: hide desktop links, show hamburger + always-visible lang toggle */
  .nav-links    { display: none; }
  .hamburger    { display: flex; }
  .mobile-menu  { display: block; }

  /* Ensure nav-controls stays on right */
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .nav-controls { margin-left: auto; }

  .hero-content h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }

  .market-stats { flex-direction: column; gap: 1rem; }
  .stat-arrow { transform: rotate(90deg); }

  .bar { width: 44px; }

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

  .blueprint-stats { flex-direction: column; align-items: center; }

  .partner-card-center { transform: scale(1); }

  /* Compliance section mobile */
  .reg-item { flex-direction: column; gap: 0.75rem; }
  .compliance-cta { padding: 2rem 1.5rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .case-grid  { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 0; }
  .bar-chart { gap: 0.5rem; }
  .bar-fill { max-width: 40px; }
  .bar-top-val { font-size: 0.6rem; }
  .bar-x-label { font-size: 0.65rem; }
  .hero-content { padding: 5rem 1rem 6rem; }
  .lang-toggle  { padding: 0 0.65rem; }
}

@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .bar-chart { gap: 0.75rem; }
  .bar { width: 36px; }
}


/* ========================================
   NAVBAR CONTROLS (lang toggle + hamburger)
======================================== */
.nav-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1rem;
}

/* LANGUAGE TOGGLE — now a <button> for reliable touch support */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  background: var(--green-50);
  border: 1.5px solid var(--green-200);
  border-radius: 50px;
  /* Minimum 44x44px touch target */
  min-height: 44px;
  padding: 0 0.85rem;
  cursor: pointer;
  user-select: none;
  transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.lang-toggle:hover, .lang-toggle:focus-visible {
  border-color: var(--green-500);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.15);
  outline: none;
}
.lang-toggle:active {
  transform: scale(0.96);
}

.lang-opt {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-light);
  padding: 0.2rem 0.35rem;
  border-radius: 50px;
  transition: var(--transition);
  line-height: 1;
}

.lang-opt.lang-active {
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  padding: 0.2rem 0.6rem;
}

.lang-divider {
  font-size: 0.7rem;
  color: var(--green-200);
  font-weight: 300;
}

/* ========================================
   HAMBURGER BUTTON (mobile only)
======================================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1.5px solid var(--green-200);
  border-radius: var(--radius-sm);
  background: var(--green-50);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  flex-shrink: 0;
}
.hamburger:hover { border-color: var(--green-500); }
.hamburger:active { transform: scale(0.94); }

.hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--green-700);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ========================================
   MOBILE MENU DRAWER
======================================== */
.mobile-menu {
  display: none;
  position: absolute;
  top: 68px;
  left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--green-100);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  padding: 1rem 0 1.5rem;
  z-index: 998;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.25s cubic-bezier(.4,0,.2,1),
              opacity 0.25s cubic-bezier(.4,0,.2,1);
}

.mobile-menu.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.mobile-nav-links a {
  display: block;
  padding: 0.9rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-mid);
  border-bottom: 1px solid var(--green-50);
  transition: var(--transition);
  min-height: 44px;
}

.mobile-nav-links a:hover,
.mobile-nav-links a:active {
  background: var(--green-50);
  color: var(--green-700);
  padding-left: 2rem;
}

/* The last item (Contact Us) gets special styling */
.mobile-nav-links li:last-child a {
  margin: 0.75rem 1.5rem 0;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  text-align: center;
  font-weight: 600;
  padding-left: 1.5rem;
}
.mobile-nav-links li:last-child a:hover {
  opacity: 0.9;
  padding-left: 1.5rem;
}

/* Bilingual location (always shows both EN + VN) */
.location-bilingual {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.8;
}


/* ========================================
   IMPORT COMPLIANCE SECTION
======================================== */

/* Regulation banners */
.reg-banner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.reg-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: white;
  border-radius: var(--radius-md);
  padding: 1.5rem;
  border-left: 4px solid var(--green-500);
  box-shadow: var(--shadow-sm);
}

.reg-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.7rem;
  border-radius: 50px;
  white-space: nowrap;
}

.reg-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--green-800);
  margin-bottom: 0.35rem;
}

.reg-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin: 0;
}

/* Steps grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.step-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--green-100);
  transition: var(--transition);
}
.step-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.step-num {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green-500), var(--green-700));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.step-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-800);
  margin-bottom: 0.6rem;
}

.step-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1rem;
}

/* HS code mini-table */
.hs-table {
  border: 1px solid var(--green-100);
  border-radius: var(--radius-sm);
  overflow: hidden;
  font-size: 0.82rem;
}

.hs-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid var(--green-50);
}
.hs-row:last-child { border-bottom: none; }

.hs-header {
  background: var(--green-50);
  font-weight: 700;
  color: var(--green-800);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.hs-code {
  background: var(--green-100);
  color: var(--green-800);
  font-weight: 700;
  font-family: monospace;
  font-size: 0.82rem;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  white-space: nowrap;
}

.hs-row span:last-child { color: var(--text-mid); }

/* Document checklist */
.doc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.doc-list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  padding-left: 0.25rem;
}

/* Case studies grid */
.case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.5rem;
}

.case-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--green-100);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.case-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }

.case-logo {
  font-size: 2rem;
}

.case-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-800);
  margin: 0;
}

.case-origin {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--green-600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.case-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
}

.case-tag {
  display: inline-block;
  background: var(--green-50);
  border: 1px solid var(--green-200);
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 50px;
  line-height: 1.4;
}

/* Compliance CTA box */
.compliance-cta {
  margin-top: 3rem;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
}

.compliance-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1rem;
}

.compliance-cta p {
  font-size: 0.98rem;
  color: rgba(255,255,255,0.8);
  max-width: 680px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

@media (max-width: 768px) {
  .reg-item { flex-direction: column; gap: 0.75rem; }
  .compliance-cta { padding: 2rem 1.5rem; }
}
.reg-link {
  color: var(--green-700);
  text-decoration: underline;
  text-decoration-color: var(--green-300);
  text-underline-offset: 3px;
  font-weight: 700;
  transition: var(--transition);
}
.reg-link:hover {
  color: var(--green-500);
  text-decoration-color: var(--green-500);
}
.reg-link::after {
  content: ' ↗';
  font-size: 0.7em;
  opacity: 0.7;
}
