/* ==========================================================================
   JNN Bullion — stylesheet
   Fresh design system (not a retint) — cool stone/off-white + deep forest green + brass gold.
   ========================================================================== */

:root {
  --bg: #f5f4ef;
  --bg-alt: #ece9df;
  --surface: #ffffff;
  --forest: #16362b;
  --forest-deep: #0d241c;
  --gold: #b68a3e;
  --gold-deep: #8f6a2a;
  --gold-light: #d6ac68;
  --text: #20261f;
  --text-muted: #5b6259;
  --border: #dcd8cb;
  --success: #2f7a4d;
  --radius: 12px;
  --shadow: 0 14px 34px rgba(13, 36, 28, 0.14);
  --shadow-sm: 0 4px 16px rgba(13, 36, 28, 0.09);
  --max-width: 1180px;
  --font-serif: ui-serif, Georgia, Cambria, "Times New Roman", Times, serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--forest-deep);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: 2.6rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.2rem; }

p { color: var(--text-muted); }

section { padding: 72px 0; }

.bg-alt { background: var(--bg-alt); }

.section-heading {
  max-width: 660px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-heading p { margin-top: 10px; }

/* ---- Buttons ---- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #241804;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.btn-outline {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
}

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

.btn-block { width: 100%; }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ---- Header: slim static trust strip + single-row sticky nav (deliberately
   different from the two-tier utility-bar header on the source project) ---- */

.trust-strip {
  background: var(--forest-deep);
  color: #cfe3d8;
  font-size: 0.78rem;
  text-align: center;
  padding: 7px 0;
  letter-spacing: 0.01em;
}

.trust-strip strong { color: var(--gold-light); font-weight: 600; }

.site-header {
  background: var(--surface);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--forest-deep);
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo .mark {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.3);
}

.logo span { color: var(--gold-deep); }

.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-call {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-deep);
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--forest-deep);
  border-radius: 2px;
}

/* ---- Hero: full-bleed dark hero, centered copy, overlapping stat card
   (deliberately different from the source project's light asymmetric split) ---- */

.hero {
  background:
    radial-gradient(ellipse at 20% -10%, rgba(182,138,62,0.18), transparent 55%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-deep) 100%);
  padding: 84px 0 130px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(214,172,104,0.16);
  color: var(--gold-light);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

.hero h1 { color: #f6f2e6; margin: 0 auto 18px; max-width: 780px; }

.hero p.lead {
  color: #cbd8ce;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 30px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

.hero-actions .btn-outline { color: #f6f2e6; border-color: rgba(246,242,230,0.45); }
.hero-actions .btn-outline:hover { background: rgba(246,242,230,0.12); color: #f6f2e6; }

.stat-card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 920px;
  margin: -74px auto 0;
  padding: 30px 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  position: relative;
  z-index: 5;
}

.stat-card div { text-align: center; padding: 6px 8px; }

.stat-card div strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--forest-deep);
}

.stat-card div span { font-size: 0.8rem; color: var(--text-muted); }

.stat-card div + div { border-left: 1px solid var(--border); }

/* ---- Categories / feature grids (shared card patterns) ---- */

.categories-grid,
.features-grid,
.benefits-grid,
.steps-grid,
.faq-grid {
  display: grid;
  gap: 24px;
}

.categories-grid { grid-template-columns: repeat(4, 1fr); }
.features-grid { grid-template-columns: repeat(3, 1fr); }
.benefits-grid { grid-template-columns: repeat(4, 1fr); }
.steps-grid { grid-template-columns: repeat(4, 1fr); }
.faq-grid { grid-template-columns: repeat(2, 1fr); }

.category-card,
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.category-card:hover,
.feature-card:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }

.category-icon,
.feature-icon { font-size: 1.9rem; display: block; margin-bottom: 12px; }

.category-card h3,
.feature-card h3 { margin-bottom: 8px; font-size: 1.05rem; }

.category-card p,
.feature-card p { font-size: 0.9rem; }

/* ---- Our Story (founder) — new section, not present on the source project ---- */

.story-wrap {
  display: grid;
  grid-template-columns: 0.42fr 0.58fr;
  gap: 44px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

.founder-plate {
  background: linear-gradient(160deg, var(--forest), var(--forest-deep));
  border-radius: var(--radius);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.founder-initials {
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-deep));
  color: #241804;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 4px rgba(255,255,255,0.25);
}

.founder-plate .plate-caption {
  position: absolute;
  bottom: 18px;
  left: 0;
  right: 0;
  text-align: center;
  color: #cfe3d8;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
}

.story-copy h2 { margin-bottom: 4px; }
.story-copy .story-role { color: var(--gold-deep); font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 16px; display: block; }
.story-copy p { margin-bottom: 12px; }
.story-copy p:last-child { margin-bottom: 0; }

/* ---- Meet the Team ---- */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.team-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
}

.team-avatar {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  margin: 0 auto 14px;
  background: var(--bg-alt);
  color: var(--forest-deep);
  border: 2px solid var(--gold);
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card h3 { font-size: 1rem; margin-bottom: 2px; }
.team-role { color: var(--gold-deep); font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 10px; display: block; }
.team-card p { font-size: 0.88rem; }

/* ---- FAQ ---- */

.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.faq-item h3 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.9rem; }

/* ---- Price context / disclaimer callout ---- */

.price-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius);
  padding: 24px 28px;
  max-width: 780px;
  margin: 0 auto;
}

.price-note h3 { margin-bottom: 8px; }
.price-note p { font-size: 0.95rem; }
.price-note p + p { margin-top: 10px; }

/* ---- Products page: horizontal tab filter + grid (deliberately different
   from the source project's sidebar-filter layout) ---- */

.catalog-tabs {
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--border);
  margin-bottom: 36px;
}

.tab-btn {
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  padding: 12px 16px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.tab-btn:hover { color: var(--forest-deep); }

.tab-btn.active {
  color: var(--gold-deep);
  border-bottom-color: var(--gold-deep);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.product-media {
  background: linear-gradient(160deg, var(--bg-alt), var(--bg));
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-line-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--forest);
  color: #dcecdf;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

/* "Plaque" tile — squared engraved-line texture, used for house-brand rounds/bars */
.product-glyph {
  width: 104px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(13,36,28,0.62);
  font-size: 0.7rem;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 6px 16px rgba(13,36,28,0.16);
}

.product-glyph.plaque {
  border-radius: 6px;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.3) 0px 1px, transparent 1px 5px),
    linear-gradient(160deg, var(--gold-light) 0%, var(--gold) 48%, var(--gold-deep) 100%);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,0.2), inset 0 0 0 5px rgba(13,36,28,0.18), 0 6px 16px rgba(13,36,28,0.16);
}

/* Hexagonal cut — used for coin-style listings */
.product-glyph.hex {
  clip-path: polygon(50% 0%, 93% 25%, 93% 75%, 50% 100%, 7% 75%, 7% 25%);
  background:
    repeating-conic-gradient(from 0deg, rgba(255,255,255,0.28) 0deg 3deg, transparent 3deg 9deg),
    radial-gradient(circle at 32% 28%, var(--gold-light) 0%, var(--gold) 50%, var(--gold-deep) 85%, #6b4e1e 100%);
}

.product-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }

.product-body h3 { font-size: 1.02rem; }

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 4px 0 6px;
}

.spec-chip {
  background: var(--bg-alt);
  color: var(--forest-deep);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
}

.product-desc { font-size: 0.88rem; flex: 1; }

.product-footer { margin-top: 10px; }

.catalog-note {
  margin-top: 40px;
}

/* ---- Sell to Us page ---- */

.sell-hero {
  background: linear-gradient(150deg, var(--forest), var(--forest-deep));
  color: #dcecdf;
  padding: 64px 0;
  text-align: center;
}

.sell-hero h1 { color: #f6f2e6; max-width: 720px; margin: 0 auto 16px; }
.sell-hero p { color: #cbd8ce; max-width: 640px; margin: 0 auto; }

.sell-hero .hero-actions { margin-top: 26px; }

.process-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.process-step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 20px;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #241804;
  font-weight: 700;
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.process-step h3 { margin-bottom: 6px; }
.process-step p { font-size: 0.9rem; }

.checklist {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 640px;
  margin: 0 auto;
}

.checklist ul { margin-top: 12px; }

.checklist li {
  display: flex;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.checklist li:last-child { border-bottom: none; }
.checklist li .tick { color: var(--success); font-weight: 700; }

/* ---- Forms ---- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-info-card {
  background: var(--forest);
  color: #dcecdf;
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-card h3 { color: #f6f2e6; margin-bottom: 18px; }

.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  align-items: flex-start;
}

.contact-info-item strong { display: block; color: #f6f2e6; margin-bottom: 2px; }
.contact-info-item a, .contact-info-item p { color: #cbd8ce; font-size: 0.92rem; }

.social-row { display: flex; gap: 10px; margin-top: 8px; }
.social-row a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
}
.social-row a:hover { background: var(--gold); color: #241804; }

.map-embed { margin-top: 22px; border-radius: 8px; overflow: hidden; }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--forest-deep);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.15s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.form-note { font-size: 0.78rem; margin-top: 6px; color: var(--text-muted); }

.intent-toggle {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.intent-toggle label {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px;
  text-align: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: border-color 0.15s ease, color 0.15s ease, background 0.15s ease;
}

.intent-toggle input { display: none; }

.intent-toggle input:checked + span {
  color: var(--gold-deep);
}

.intent-toggle label:has(input:checked) {
  border-color: var(--gold);
  background: rgba(182,138,62,0.1);
  color: var(--gold-deep);
}

.form-success {
  display: none;
  background: rgba(47,122,77,0.12);
  color: var(--success);
  border: 1px solid rgba(47,122,77,0.3);
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 20px;
  font-size: 0.92rem;
  font-weight: 600;
}

.form-success.visible { display: block; }

/* ---- Legal page ---- */

.legal-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.legal-nav a {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--forest-deep);
}

.legal-nav a:hover { background: var(--bg-alt); }

.legal-section {
  max-width: 760px;
  margin: 0 auto 56px;
}

.legal-section h2 { margin-bottom: 14px; }
.legal-section h3 { margin: 20px 0 8px; font-size: 1.05rem; }
.legal-section p { margin-bottom: 12px; }
.legal-section ul { margin: 0 0 12px 20px; list-style: disc; }
.legal-section li { color: var(--text-muted); margin-bottom: 6px; }

/* ---- CTA band ---- */

.cta-band {
  background: linear-gradient(150deg, var(--forest), var(--forest-deep));
  color: #dcecdf;
  border-radius: var(--radius);
  padding: 40px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-band h2 { color: #f6f2e6; margin-bottom: 6px; }
.cta-band p { color: #cbd8ce; }

/* ---- Footer (3-column, deliberately different from the source project's 4-column) ---- */

.site-footer {
  background: var(--forest-deep);
  color: #b9c9bd;
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .logo { margin-bottom: 12px; color: #f6f2e6; }
.footer-brand .logo span { color: var(--gold-light); }
.footer-brand p { color: #9fb2a5; font-size: 0.9rem; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem;
}
.footer-social a:hover { background: var(--gold); color: #241804; }

.footer-col h4 {
  color: #f6f2e6;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}

.footer-col li { margin-bottom: 10px; font-size: 0.9rem; color: #9fb2a5; }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: #7c8d81;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  .stat-card { grid-template-columns: repeat(2, 1fr); }
  .stat-card div:nth-child(3) { border-left: 1px solid var(--border); }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .process-track { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(3, 1fr); }
  .story-wrap { grid-template-columns: 1fr; }
  .founder-plate { max-width: 320px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .trust-strip { font-size: 0.7rem; padding: 6px 12px; }

  .navbar { padding: 12px 20px; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 16px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.12);
    border-bottom: 1px solid var(--border);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    padding: 12px 4px;
    border-bottom: 1px solid var(--border);
  }

  .nav-call { display: none; }
  .nav-cta .btn-primary { display: none; }

  .nav-toggle { display: flex; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero { padding: 56px 0 100px; }
  .stat-card { grid-template-columns: 1fr; margin-top: -60px; }
  .stat-card div { border-left: none !important; border-top: 1px solid var(--border); padding: 14px 8px; }
  .stat-card div:first-child { border-top: none; }

  .categories-grid,
  .features-grid,
  .benefits-grid,
  .steps-grid,
  .faq-grid,
  .process-track,
  .products-grid,
  .team-grid { grid-template-columns: 1fr; }

  .cta-band { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
