/* =============================================
   Gula Renceng — Design System
   Clean & Professional | Native CSS
   ============================================= */

/* ---- DESIGN TOKENS ---- */
:root {
  /* Brand */
  --green-50:  #f0fdf4;
  --green-100: #dcfce7;
  --green-200: #bbf7d0;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-700: #15803d;
  --green-800: #166534;
  --green-900: #14532d;

  /* Primary = Emerald */
  --primary:       #059669;
  --primary-hover: #047857;
  --primary-light: #d1fae5;
  --primary-faint: #ecfdf5;

  /* Neutral */
  --gray-50:  #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;

  /* Semantic */
  --color-danger:  #dc2626;
  --color-success: #16a34a;
  --color-warning: #d97706;
  --color-info:    #2563eb;

  /* Surfaces */
  --bg:      #ffffff;
  --bg-muted: #f9fafb;
  --border:  #e5e7eb;
  --border-focus: #059669;

  /* Text */
  --text:       #111827;
  --text-muted: #6b7280;
  --text-light: #9ca3af;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,.05);
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.05);
  --shadow-lg: 0 10px 15px rgba(0,0,0,.07), 0 4px 6px rgba(0,0,0,.04);
  --shadow-xl: 0 20px 25px rgba(0,0,0,.06), 0 8px 10px rgba(0,0,0,.04);
  --shadow-primary: 0 4px 14px rgba(5,150,105,.25);

  /* Shape */
  --radius-sm: 6px;
  --radius:    8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Motion */
  --ease: cubic-bezier(.4,0,.2,1);
  --duration: 180ms;

  /* Layout */
  --max-w: 1140px;
  --nav-h: 64px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  font-size: 1rem; line-height: 1.6; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea { font-family: inherit; }

/* ---- LAYOUT ---- */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 24px;
}
.section { padding: 80px 0; }
.section--muted { background: var(--bg-muted); }

/* ---- TYPOGRAPHY ---- */
.label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 10px;
}
.heading-xl { font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.15; }
.heading-lg { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.25; }
.heading-md { font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.heading-sm { font-size: 1rem; font-weight: 700; line-height: 1.4; }
.text-lead  { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }
.text-sm    { font-size: .875rem; color: var(--text-muted); }
.text-xs    { font-size: .78rem; color: var(--text-light); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-danger  { color: var(--color-danger); }

/* ---- SECTION HEADER ---- */
.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; }
.section-head--center .text-lead { max-width: 540px; margin: 10px auto 0; }
.section-head .text-lead { margin-top: 10px; max-width: 560px; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 11px 24px; border-radius: var(--radius-full);
  font-size: .9rem; font-weight: 600; border: 1.5px solid transparent;
  transition: background var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              box-shadow var(--duration) var(--ease),
              transform var(--duration) var(--ease);
  white-space: nowrap; user-select: none;
}
.btn:active { transform: scale(.98); }
.btn--sm { padding: 7px 16px; font-size: .825rem; gap: 5px; }
.btn--lg { padding: 14px 32px; font-size: 1rem; }

.btn--primary { background: var(--primary); color: #fff; }
.btn--primary:hover { background: var(--primary-hover); box-shadow: var(--shadow-primary); }

.btn--outline { background: transparent; border-color: var(--primary); color: var(--primary); }
.btn--outline:hover { background: var(--primary); color: #fff; }

.btn--ghost { background: transparent; border-color: var(--border); color: var(--text-muted); }
.btn--ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-faint); }

.btn--white { background: #fff; color: var(--primary); border-color: #fff; }
.btn--white:hover { background: var(--green-50); }

.btn--white-outline { background: transparent; border-color: rgba(255,255,255,.4); color: #fff; }
.btn--white-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ---- BADGE ---- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 12px; border-radius: var(--radius-full);
  font-size: .75rem; font-weight: 600;
}
.badge--primary { background: var(--primary); color: #fff; }
.badge--success { background: var(--green-100); color: var(--green-800); }
.badge--outline { border: 1.5px solid var(--border); color: var(--text-muted); }

/* ---- DIVIDER ---- */
.divider { height: 1px; background: var(--border); margin: 0; }

/* ===========================
   NAVBAR
   =========================== */
:root { --nav-h: 68px; }

.navbar {
  position: sticky; top: 0; z-index: 1000; height: var(--nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 32px;
}
.navbar-menu {
  display: flex; align-items: center; gap: 0; flex: 1;
}

/* --- Brand / Logo --- */
.navbar-brand {
  display: flex; align-items: center; gap: 11px; flex-shrink: 0;
  color: var(--text); text-decoration: none;
}
.brand-mark {
  width: 34px; height: 34px; border-radius: 9px; flex-shrink: 0;
  background: var(--primary); display: grid; place-items: center;
  box-shadow: 0 1px 3px rgba(5,150,105,.25);
}
.brand-mark svg { display: block; }
.brand-wordmark { line-height: 1; }
.brand-name    { font-size: .975rem; font-weight: 700; letter-spacing: -.01em; color: var(--text); display: block; }
.brand-tagline { font-size: .65rem; font-weight: 500; color: var(--text-muted); display: block; margin-top: 2px; letter-spacing: .02em; text-transform: uppercase; }

/* --- Nav separator --- */
.navbar-sep {
  width: 1px; height: 20px; background: var(--border); flex-shrink: 0;
}

/* --- Nav links --- */
.navbar-links {
  display: flex; align-items: center; gap: 0; flex: 1;
}
.navbar-links a {
  position: relative; padding: 0 15px; height: var(--nav-h);
  display: inline-flex; align-items: center;
  font-size: .875rem; font-weight: 500; color: var(--text-muted);
  transition: color var(--duration) var(--ease);
  white-space: nowrap;
}
.navbar-links a::after {
  content: ''; position: absolute; bottom: 0; left: 15px; right: 15px;
  height: 2px; background: var(--primary); border-radius: 2px 2px 0 0;
  transform: scaleX(0); transform-origin: center;
  transition: transform var(--duration) var(--ease);
}
.navbar-links a:hover { color: var(--text); }
.navbar-links a.active { color: var(--primary); font-weight: 600; }
.navbar-links a.active::after,
.navbar-links a:hover::after { transform: scaleX(1); }

/* --- Actions --- */
.navbar-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.btn--nav-login {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 14px; border-radius: var(--radius-full);
  font-size: .825rem; font-weight: 500; color: var(--text-muted);
  border: 1.5px solid var(--border); background: transparent;
  transition: color var(--duration) var(--ease),
              border-color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.btn--nav-login:hover { color: var(--primary); border-color: var(--primary); background: var(--primary-faint); }
.btn--nav-login svg { flex-shrink: 0; }

/* --- Mobile toggle --- */
.nav-toggle {
  display: none; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--radius);
  background: none; border: 1.5px solid var(--border);
  cursor: pointer; flex-shrink: 0;
  transition: border-color var(--duration) var(--ease);
}
.nav-toggle:hover { border-color: var(--primary); }
.nav-toggle svg { pointer-events: none; }
/* hamburger bars animate to X */
.nav-toggle .bar { transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease); transform-origin: center; }
.navbar-menu.open ~ * .nav-toggle .bar-1,
.nav-toggle.open .bar-1 { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open .bar-2 { opacity: 0; transform: scaleX(0); }
.nav-toggle.open .bar-3 { transform: translateY(-6px) rotate(-45deg); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding: 96px 0 80px;
  background: linear-gradient(160deg, var(--primary-faint) 0%, #fff 55%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 75% 20%, rgba(5,150,105,.06) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(22,101,52,.04) 0%, transparent 40%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.hero-eyebrow-divider { width: 32px; height: 2px; background: var(--primary); border-radius: 2px; }
.hero-title { font-size: clamp(2.1rem, 4.5vw, 3rem); font-weight: 800; line-height: 1.15; letter-spacing: -.02em; }
.hero-title em { font-style: normal; color: var(--primary); }
.hero-desc { margin-top: 16px; font-size: 1.05rem; color: var(--text-muted); max-width: 460px; line-height: 1.7; }
.hero-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-metrics { margin-top: 48px; display: flex; gap: 36px; padding-top: 32px; border-top: 1px solid var(--border); }
.hero-metric-value { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.hero-metric-label { display: block; font-size: .78rem; color: var(--text-muted); margin-top: 3px; }

/* Hero visual — clean card without absolute positioned elements */
.hero-visual { display: flex; flex-direction: column; gap: 12px; }
.hero-product-card {
  background: #fff; border-radius: var(--radius-lg); padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 20px;
}
.hero-product-icon {
  width: 72px; height: 72px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--primary-faint); display: grid; place-items: center; font-size: 2.2rem;
}
.hero-product-name { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.hero-product-meta { font-size: .83rem; color: var(--text-muted); }
.hero-product-price {
  margin-left: auto; font-size: .9rem; font-weight: 700;
  color: var(--primary); white-space: nowrap;
}
.hero-info-row { display: flex; gap: 12px; }
.hero-info-chip {
  flex: 1; background: var(--bg-muted); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
}
.hero-info-chip strong { display: block; font-size: 1rem; font-weight: 800; color: var(--text); }
.hero-info-chip span { font-size: .75rem; color: var(--text-muted); }

/* ===========================
   STRIPS / STATS
   =========================== */
.stats-strip { background: var(--primary); padding: 40px 0; }
.stats-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-block {
  padding: 0 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,.2);
}
.stat-block:last-child { border-right: none; }
.stat-block strong { display: block; font-size: 1.9rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-block span   { font-size: .8rem; color: rgba(255,255,255,.75); margin-top: 5px; display: block; }

/* ===========================
   FEATURE CARDS
   =========================== */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.feature-card {
  background: #fff; border-radius: var(--radius-md); padding: 24px;
  border: 1px solid var(--border);
  transition: box-shadow var(--duration) var(--ease), border-color var(--duration) var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); border-color: var(--primary); }
.feature-icon {
  width: 48px; height: 48px; border-radius: var(--radius);
  background: var(--primary-faint); display: grid; place-items: center;
  font-size: 1.4rem; margin-bottom: 14px;
}
.feature-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   PRODUCT CARDS
   =========================== */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 20px; }
.product-card {
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--border); display: flex; flex-direction: column;
  transition: box-shadow var(--duration) var(--ease);
}
.product-card:hover { box-shadow: var(--shadow-lg); }
.product-thumb {
  background: var(--primary-faint); padding: 36px 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4rem; position: relative;
}
.product-unit-badge {
  position: absolute; top: 12px; right: 12px;
  background: var(--green-800); color: #fff;
  font-size: .68rem; font-weight: 700; padding: 3px 9px;
  border-radius: var(--radius-full); letter-spacing: .04em; text-transform: uppercase;
}
.product-body { padding: 18px 20px; flex: 1; }
.product-code { font-size: .7rem; color: var(--text-light); font-weight: 600; letter-spacing: .06em; }
.product-name { font-size: .98rem; font-weight: 700; margin: 5px 0 6px; line-height: 1.3; }
.product-desc { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }
.product-footer {
  padding: 14px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.product-price { font-size: 1.1rem; font-weight: 800; color: var(--primary); }
.product-unit-label { font-size: .72rem; color: var(--text-muted); margin-top: 1px; }
.product-availability { font-size: .78rem; font-weight: 600; }
.product-availability--ok  { color: var(--color-success); }
.product-availability--out { color: var(--color-danger); }

/* ===========================
   PRODUCTS TOOLBAR
   =========================== */
.products-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 28px; flex-wrap: wrap;
}
.filter-tabs { display: flex; gap: 6px; flex-wrap: wrap; }
.filter-tab {
  padding: 6px 16px; border-radius: var(--radius-full); font-size: .845rem;
  font-weight: 600; border: 1.5px solid var(--border); background: #fff;
  color: var(--text-muted); cursor: pointer;
  transition: border-color var(--duration) var(--ease),
              color var(--duration) var(--ease),
              background var(--duration) var(--ease);
}
.filter-tab.active, .filter-tab:hover {
  border-color: var(--primary); color: var(--primary); background: var(--primary-faint);
}

/* ===========================
   WHY-US / TWO-COL
   =========================== */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.why-item { display: flex; gap: 14px; align-items: flex-start; }
.why-icon {
  width: 40px; height: 40px; min-width: 40px; border-radius: var(--radius);
  background: var(--primary-faint); display: grid; place-items: center; font-size: 1.1rem;
}
.why-item h4 { font-weight: 700; font-size: .9rem; margin-bottom: 2px; }
.why-item p  { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }
.why-visual {
  background: linear-gradient(135deg, var(--primary-faint), var(--green-100));
  border-radius: var(--radius-lg); display: grid; place-items: center;
  min-height: 320px; font-size: 5rem; border: 1px solid var(--green-200);
}

/* ===========================
   SPEC CARDS (produk page)
   =========================== */
.specs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; max-width: 900px; margin: 0 auto; }
.spec-card {
  background: var(--bg-muted); border-radius: var(--radius); padding: 18px 20px;
  border: 1px solid var(--border); display: flex; gap: 14px; align-items: flex-start;
}
.spec-icon { font-size: 1.4rem; min-width: 28px; }
.spec-label { font-size: .85rem; font-weight: 700; margin-bottom: 3px; }
.spec-value { font-size: .82rem; color: var(--text-muted); line-height: 1.55; }

/* ===========================
   CONTACT PAGE
   =========================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-info-list { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.info-card {
  background: var(--bg-muted); border-radius: var(--radius); padding: 18px 20px;
  display: flex; gap: 14px; align-items: flex-start; border: 1px solid var(--border);
}
.info-card-icon {
  min-width: 28px; width: 28px; color: var(--primary); flex-shrink: 0; margin-top: 2px;
  display: flex; align-items: flex-start;
}
.info-card-icon svg { display: block; }
.info-card h4  { font-size: .9rem; font-weight: 700; margin-bottom: 4px; }
.info-card p   { font-size: .83rem; color: var(--text-muted); line-height: 1.6; }
.info-card a   { font-size: .83rem; color: var(--text-muted); }
.info-card a:hover { color: var(--primary); }
.info-card .link-whatsapp { color: var(--color-success); font-weight: 600; }

.contact-map {
  background: var(--bg-muted); border: 1px solid var(--border); border-radius: var(--radius);
  height: 160px; margin-top: 12px; display: grid; place-items: center;
  font-size: 2.5rem; color: var(--text-light); gap: 8px;
}
.contact-map p { font-size: .8rem; color: var(--text-light); }

/* FORM */
.form-card { background: #fff; border-radius: var(--radius-lg); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow-sm); }
.form-card h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.form-card > p { font-size: .875rem; color: var(--text-muted); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-label {
  display: block; font-size: .82rem; font-weight: 600; margin-bottom: 5px;
  color: var(--gray-700);
}
.form-required { color: var(--color-danger); margin-left: 2px; }
.form-control {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--border); border-radius: var(--radius);
  font-size: .9rem; font-family: inherit; background: #fff; color: var(--text);
  transition: border-color var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
  appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(5,150,105,.12);
}
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 6px; }
.form-success {
  display: none; align-items: center; gap: 8px; margin-top: 14px;
  background: var(--green-100); border: 1px solid var(--green-200);
  border-radius: var(--radius); padding: 12px 16px;
  color: var(--green-800); font-size: .875rem; font-weight: 600;
}

/* ===========================
   FAQ
   =========================== */
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.faq-question {
  width: 100%; text-align: left; padding: 16px 20px;
  font-weight: 600; font-size: .9rem; background: none; border: none;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  color: var(--text);
  transition: background var(--duration) var(--ease);
}
.faq-question:hover { background: var(--bg-muted); }
.faq-arrow {
  font-size: .75rem; color: var(--text-light); flex-shrink: 0;
  transition: transform var(--duration) var(--ease);
}
.faq-answer {
  display: none; padding: 0 20px 16px;
  font-size: .875rem; color: var(--text-muted); line-height: 1.7;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); }

/* ===========================
   STEPS (cara pemesanan)
   =========================== */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.step-card {
  background: #fff; border-radius: var(--radius-md); padding: 24px;
  border: 1px solid var(--border); position: relative;
}
.step-number {
  width: 36px; height: 36px; border-radius: var(--radius-full);
  background: var(--primary); color: #fff; font-size: .85rem; font-weight: 800;
  display: grid; place-items: center; margin-bottom: 14px;
}
.step-icon { font-size: 1.6rem; margin-bottom: 10px; }
.step-card h3 { font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.step-card p  { font-size: .85rem; color: var(--text-muted); line-height: 1.65; }

/* ===========================
   PAGE HEADER (sub-pages — uniform)
   =========================== */
.page-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 40px 0 36px;
}
.page-header-inner { display: flex; align-items: flex-start; gap: 20px; }
.page-header-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md); flex-shrink: 0;
  background: var(--primary-faint); border: 1px solid var(--primary-light);
  display: grid; place-items: center; margin-top: 4px;
}
.page-header-icon svg { color: var(--primary); }
.page-header-body { flex: 1; }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: .775rem; color: var(--text-light); margin-bottom: 10px; font-weight: 500;
}
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb-sep { color: var(--text-light); font-size: .7rem; }
.breadcrumb-current { color: var(--text-muted); }
.page-header h1 {
  font-size: clamp(1.5rem, 3.5vw, 2.1rem); font-weight: 800;
  letter-spacing: -.02em; line-height: 1.2;
}
.page-header-desc { color: var(--text-muted); margin-top: 6px; font-size: .9rem; line-height: 1.6; }
.page-header-meta {
  display: flex; align-items: center; gap: 16px; margin-top: 14px; flex-wrap: wrap;
}
.page-header-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: .75rem; font-weight: 600; color: var(--primary);
  background: var(--primary-faint); padding: 3px 10px; border-radius: var(--radius-full);
}

/* ===========================
   CTA BANNER
   =========================== */
.cta-section { background: var(--green-800); padding: 64px 0; text-align: center; }
.cta-section h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; color: #fff; }
.cta-section p  { color: rgba(255,255,255,.75); margin: 12px auto 28px; max-width: 480px; font-size: .95rem; }
.cta-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   FOOTER
   =========================== */
footer { background: var(--gray-900); color: var(--gray-400); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand-name { display: flex; align-items: center; gap: 9px; color: #fff; font-weight: 700; font-size: 1.05rem; }
.footer-about { font-size: .845rem; line-height: 1.7; margin-top: 14px; }
.footer-col h4 { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col li { margin-bottom: 8px; }
.footer-col a  { font-size: .845rem; color: var(--gray-400); transition: color var(--duration) var(--ease); }
.footer-col a:hover { color: var(--green-400, #4ade80); }
.social-row { display: flex; gap: 8px; margin-top: 16px; }
.social-btn {
  width: 34px; height: 34px; border-radius: var(--radius); background: var(--gray-800);
  display: grid; place-items: center; font-size: .9rem;
  transition: background var(--duration) var(--ease);
}
.social-btn:hover { background: var(--primary); }
.footer-bottom {
  border-top: 1px solid var(--gray-800); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; flex-wrap: wrap; gap: 8px;
}

/* ===========================
   EMPTY STATE
   =========================== */
.empty-state { text-align: center; padding: 60px 24px; color: var(--text-muted); grid-column: 1 / -1; }
.empty-state-icon { font-size: 3rem; margin-bottom: 12px; }
.empty-state p { font-size: .9rem; }

/* ===========================
   TOAST
   =========================== */
.toast {
  position: fixed; bottom: 20px; right: 20px; z-index: 9999;
  background: var(--gray-900); color: #fff; padding: 12px 18px;
  border-radius: var(--radius); font-size: .875rem; box-shadow: var(--shadow-lg);
  transform: translateY(20px); opacity: 0;
  transition: transform var(--duration) var(--ease), opacity var(--duration) var(--ease);
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast--success { background: var(--color-success); }

/* ===========================
   SCROLL ANIMATION
   =========================== */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; transform: translateY(16px); }
.reveal.visible {
  animation: fadeInUp .45s var(--ease) both;
}
.reveal-d1 { animation-delay: .08s; }
.reveal-d2 { animation-delay: .16s; }
.reveal-d3 { animation-delay: .24s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 960px) {
  .nav-toggle { display: flex; }
  .navbar-sep  { display: none; }
  .navbar-menu {
    display: none; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); padding: 8px 16px 16px;
  }
  .navbar-menu.open { display: block; }
  .navbar-links { flex-direction: column; align-items: stretch; gap: 0; }
  .navbar-links a {
    height: 44px; padding: 0 12px; border-radius: var(--radius);
    font-size: .9rem;
  }
  .navbar-links a::after { bottom: 4px; left: 12px; right: 12px; }
  .navbar-actions { display: flex; gap: 8px; padding: 8px 4px 4px; border-top: 1px solid var(--border); margin-top: 8px; }
  .navbar-actions .btn { flex: 1; justify-content: center; }
  .page-header-inner { gap: 14px; }
  .page-header-icon { width: 40px; height: 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { order: -1; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-block { border-right: none; padding: 12px 0; }
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .why-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .container { padding: 0 16px; }
  .section { padding: 56px 0; }
  .hero { padding: 64px 0 52px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-metrics { gap: 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-strip-inner { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ---- UTILITY SPACING ---- */
.mt-2 { margin-top: 8px; }
.mt-3 { margin-top: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-7 { margin-top: 28px; }
.mt-9 { margin-top: 36px; }
.section-head h2 { margin-top: 6px; }
.two-col-content h2 { margin-top: 8px; }
.two-col-content .text-lead { margin-top: 10px; }
.section-cta { margin-top: 36px; text-align: center; }
.why-cta { margin-top: 28px; }
.hero-eyebrow-label { margin-bottom: 0; }
.two-col-content h2 { margin-top: 8px; }
