/* ===== Design tokens (from Figma theme.css) ===== */
:root {
  --background: #F3EADA;
  --foreground: #1C1008;
  --card: #FAF5EA;
  --card-foreground: #1C1008;
  --primary: #1C1008;
  --primary-foreground: #F3EADA;
  --secondary: #E8DDBF;
  --muted: #EDE4CC;
  --muted-foreground: #7A6144;
  --accent: #B8721E;
  --accent-foreground: #FAF5EA;
  --border: rgba(139, 101, 54, 0.18);

  --font-heading: 'Libre Baskerville', serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'DM Mono', monospace;
}

/* ===== Reset ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

.container {
  max-width: 80rem; /* 7xl */
  margin: 0 auto;
  padding: 0 1.5rem;
}

.icon { width: 1rem; height: 1rem; flex-shrink: 0; }
.icon-sm { width: 0.875rem; height: 0.875rem; }
.icon-md { width: 1.25rem; height: 1.25rem; }
.icon-lg { width: 1.75rem; height: 1.75rem; }
.icon-xl { width: 2.5rem; height: 2.5rem; }
.icon-amber { color: #fbbf24; }
.icon-amber-solid { color: var(--accent); }
.icon-bounce { animation: bounce 1.5s infinite; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow-amber { color: #fcd34d; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-amber { background: #d97706; color: #fff; }
.btn-amber:hover { background: #f59e0b; }
.btn-outline-light { border: 1px solid rgba(255,255,255,.4); color: #fff; }
.btn-outline-light:hover { border-color: #fff; }
.btn-dark { background: var(--foreground); color: var(--primary-foreground); font-size: 0.875rem; padding: 0.75rem 1.25rem; }
.btn-dark:hover { background: var(--accent); color: var(--accent-foreground); }
.btn-outline-dark { border: 1px solid var(--foreground); color: var(--foreground); font-size: 0.875rem; padding: 0.75rem 1.25rem; }
.btn-outline-dark:hover { background: var(--foreground); color: var(--primary-foreground); }

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(243, 234, 218, 0.95);
  backdrop-filter: blur(4px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.brand {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  letter-spacing: -0.01em;
}
.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--foreground); }
.nav-links a.active { color: var(--accent); }
.nav-cta { display: none; }
.nav-toggle { display: flex; color: var(--foreground); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 1rem;
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem 1.5rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a { font-size: 1rem; color: var(--foreground); }
.nav-mobile .btn { justify-content: center; margin-top: 0.5rem; }

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-color: #78350f;
  background-size: cover;
  background-position: center;
}
.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,.90), rgba(28,16,8,.50) 60%, rgba(28,16,8,.15));
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 10rem;
  padding-bottom: 6rem;
  width: 100%;
}
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
.hero-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 3rem;
  line-height: 1.05;
  margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; font-weight: 400; color: #fcd34d; }
.hero-eyebrow-mono {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(252, 211, 77, .8);
  margin-bottom: 1.5rem;
}
.hero-desc {
  font-size: 1.125rem;
  color: rgba(255,255,255,.75);
  max-width: 36rem;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-registered {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255,255,255,.35);
  letter-spacing: 0.02em;
  margin-top: 1.25rem;
}

.glance-card {
  background: rgba(28, 16, 8, .75);
  border: 1px solid rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 1.5rem;
}
.glance-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(252, 191, 73, .8);
  margin-bottom: 1rem;
}
.glance-rows { display: flex; flex-direction: column; gap: 0.75rem; }
.glance-row {
  display: flex;
  gap: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding-bottom: 0.75rem;
}
.glance-row:last-child { border-bottom: none; padding-bottom: 0; }
.glance-row-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  color: rgba(255,255,255,.4);
  width: 6rem;
  flex-shrink: 0;
  padding-top: 1px;
}
.glance-row-value { font-size: 0.875rem; color: rgba(255,255,255,.85); line-height: 1.4; }

.procurement-strip {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.procurement-cell { background: rgba(28,16,8,.6); padding: 1.25rem 1.5rem; }
.procurement-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fcd34d;
}
.procurement-label { font-size: 0.75rem; color: rgba(255,255,255,.55); margin-top: 0.25rem; }

@media (min-width: 768px) {
  .hero-grid { grid-template-columns: 1fr 360px; }
  .procurement-strip { grid-template-columns: repeat(4, 1fr); }
}

.scroll-cue {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 10;
  color: rgba(255,255,255,.5);
  transition: color .15s ease;
}
.scroll-cue:hover { color: #fff; }

@media (min-width: 768px) {
  .hero-title { font-size: 4.5rem; }
}

/* ===== Stats section ===== */
.stats-section {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
.stat-card { background: var(--card); padding: 2rem 2.5rem; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.stat-line { font-size: 1rem; font-weight: 600; color: var(--foreground); margin-bottom: 0.25rem; }
.stat-sub { font-size: 0.875rem; color: var(--muted-foreground); }

@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Why Us ===== */
.why-us { background: var(--foreground); padding: 6rem 0; }
.section-head { margin-bottom: 3.5rem; }
.section-title {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--foreground);
}
.section-title.light { color: var(--primary-foreground); }
.section-title em { font-style: italic; font-weight: 400; color: #fcd34d; }

.advantages-grid {
  display: grid;
  gap: 1px;
  background: rgba(255,255,255,.1);
}
.advantage-card {
  background: var(--foreground);
  padding: 2rem;
  transition: background-color .15s ease;
}
.advantage-card:hover { background: #2E1C0D; }
.advantage-card svg { margin-bottom: 1.25rem; transition: color .15s ease; }
.advantage-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-foreground);
  margin-bottom: 0.75rem;
}
.advantage-card p { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.6; }

@media (min-width: 768px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(4, 1fr); }
}

.guarantee-strip {
  margin-top: 1px;
  background: #2E1C0D;
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.guarantee-strip p { font-size: 0.875rem; color: rgba(255,255,255,.6); }
.guarantee-strip p strong { color: #fcd34d; font-weight: 600; }
.guarantee-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(217, 145, 39, 0.4);
  color: #fcd34d;
  padding: 0.625rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease;
  width: fit-content;
}
.guarantee-cta:hover { background: #d97706; border-color: #d97706; color: #fff; }

@media (min-width: 768px) {
  .guarantee-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== CTA section ===== */
.cta-section { background: var(--card); padding: 5rem 0; }
.cta-section.cta-light { background: var(--background); }
.cta-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.cta-title { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; margin-bottom: 0.5rem; }
.cta-desc { font-size: 1rem; color: var(--muted-foreground); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; flex-shrink: 0; }

@media (min-width: 768px) {
  .cta-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== Footer ===== */
.site-footer { background: var(--foreground); color: var(--primary-foreground); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.5rem; }
.footer-tagline { font-size: 0.875rem; color: rgba(255,255,255,.6); line-height: 1.6; margin-bottom: 1.5rem; }
.footer-contact { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1rem; }
.footer-contact-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(255,255,255,.6); }
.footer-contact-item a:hover { color: #fff; }
.footer-legal { font-family: var(--font-mono); font-size: 0.75rem; color: rgba(255,255,255,.3); letter-spacing: 0.02em; }
.footer-col-title { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 1rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,.6); transition: color .15s ease; }
.footer-col a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,.4); }
.footer-mono { font-family: var(--font-mono); color: rgba(255,255,255,.3) !important; }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
  .footer-bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== Interior page header ===== */
.page-header {
  background: var(--foreground);
  padding: 8.5rem 0 5rem;
}
.page-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 3rem;
  line-height: 1.15;
}
.page-title em { font-style: italic; font-weight: 400; color: #fcd34d; }
.page-lead {
  font-size: 1.25rem;
  color: rgba(255,255,255,.65);
  margin-top: 1.5rem;
  max-width: 42rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .page-title { font-size: 3.75rem; }
}

/* generic eyebrow (non-hero, non-amber) used on light backgrounds */
.eyebrow:not(.eyebrow-amber) { color: var(--accent); font-size: 0.75rem; letter-spacing: 0.2em; }

/* ===== Product section ===== */
.product-section { background: var(--background); padding: 6rem 0; }
.product-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
.product-media {
  aspect-ratio: 4 / 3;
  background: var(--secondary);
  overflow: hidden;
  margin-bottom: 1.5rem;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; }

.product-notes {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  background: var(--muted);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.product-notes span { font-weight: 600; color: var(--foreground); }

.spec-download-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  transition: border-color .15s ease, color .15s ease;
}
.spec-download-link:hover { border-color: var(--accent); color: var(--accent); }

.product-info-col { padding-top: 0.5rem; }
.product-title {
  font-family: var(--font-heading);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.product-desc {
  font-size: 1rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.spec-table {
  border: 1px solid var(--border);
  margin-bottom: 2rem;
}
.spec-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.75rem 1rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
}
.spec-row:first-child { border-top: none; }
.spec-row-head {
  background: var(--muted);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted-foreground);
  border-top: none;
}
.spec-row-alt { background: var(--card); }
.spec-value { font-family: var(--font-mono); color: var(--accent); font-weight: 500; }

.callout {
  background: var(--secondary);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  margin-bottom: 2rem;
}
.callout-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.callout-body { font-size: 0.875rem; color: var(--foreground); line-height: 1.6; }

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Process section ===== */
.process-section { background: var(--card); padding: 6rem 0; }
.process-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
.process-card {
  background: var(--card);
  padding: 2rem;
  transition: background-color .15s ease;
}
.process-card:hover { background: var(--background); }
.process-num {
  font-family: var(--font-mono);
  font-size: 2.25rem;
  font-weight: 500;
  color: var(--border);
  transition: color .15s ease;
  margin-bottom: 1rem;
}
.process-card:hover .process-num { color: var(--secondary); }
.process-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}
.process-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

@media (min-width: 768px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Applications section ===== */
.applications-section { background: var(--background); padding: 6rem 0; }
.applications-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
.application-card {
  background: var(--card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color .15s ease;
}
.application-card:hover { background: var(--secondary); }
.application-head { display: flex; align-items: flex-start; gap: 1rem; }
.application-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--secondary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: background-color .15s ease;
}
.application-card:hover .application-icon { background: var(--card); }
.application-head h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
}
.application-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-top: 0.125rem;
}
.application-body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.application-examples {
  margin-top: auto;
  padding-top: 0.5rem;
  border-top: 1px solid var(--border);
}
.examples-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.application-examples ul { display: flex; flex-direction: column; gap: 0.25rem; }
.application-examples li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--foreground);
}
.application-examples .dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background: var(--accent);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .applications-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .applications-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Featured (2-col) + secondary (4-col) application rows, with images */
.applications-featured {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-bottom: 1px;
}
.applications-secondary {
  display: grid;
  gap: 1px;
  background: var(--border);
}
@media (min-width: 768px) {
  .applications-featured { grid-template-columns: repeat(2, 1fr); }
  .applications-secondary { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .applications-secondary { grid-template-columns: repeat(4, 1fr); }
}

.application-card-featured, .application-card-secondary {
  background: var(--card);
  display: flex;
  flex-direction: column;
  transition: background-color .15s ease;
}
.application-card-featured:hover, .application-card-secondary:hover { background: var(--secondary); }

.application-media { overflow: hidden; background: var(--secondary); }
.application-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
  transition: opacity .3s ease, transform .5s ease;
}
.application-card-featured:hover .application-media img,
.application-card-secondary:hover .application-media img { opacity: 1; transform: scale(1.02); }

.application-card-featured .application-media { aspect-ratio: 16 / 7; }
.application-card-secondary .application-media { aspect-ratio: 4 / 3; }
.application-card-secondary .application-media img { opacity: 0.75; }
.application-card-secondary:hover .application-media img { opacity: 0.95; }

.application-card-featured .application-body-wrap { padding: 2rem; display: flex; flex-direction: column; gap: 1rem; flex: 1; }
.application-card-secondary .application-body-wrap { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }

.application-badge {
  font-family: var(--font-mono);
  font-size: 0.5625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.125rem 0.5rem;
  background: rgba(184, 114, 30, 0.1);
  color: var(--accent);
  border: 1px solid rgba(184, 114, 30, 0.2);
}
.application-card-secondary .application-head h3 { font-size: 1rem; }
.application-card-secondary .application-icon { width: 2rem; height: 2rem; }
.application-card-secondary .application-body { font-size: 0.75rem; }
.application-card-secondary .application-role { font-size: 0.625rem; }

/* ===== Certifications section ===== */
.certs-section { background: var(--background); padding: 6rem 0; }
.certs-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  margin-bottom: 3rem;
}
.cert-card {
  background: var(--card);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: background-color .15s ease;
}
.cert-card:hover { background: var(--secondary); }
.cert-card-top { display: flex; align-items: center; justify-content: space-between; }
.status-pill {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.625rem;
  border: 1px solid rgba(122, 97, 68, 0.3);
  color: var(--muted-foreground);
}
.cert-card h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.cert-sub { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); letter-spacing: 0.02em; }
.cert-detail { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

.cert-timeline {
  margin-top: auto;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}
.cert-timeline-label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(184, 114, 30, 0.7);
  margin-bottom: 0.125rem;
}
.cert-timeline-value { font-size: 0.75rem; color: var(--foreground); }

.coa-callout {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.coa-icon { flex-shrink: 0; }
.coa-body h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.25rem;
}
.coa-body p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }
.coa-cta { flex-shrink: 0; white-space: nowrap; align-self: flex-start; }

@media (min-width: 768px) {
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .coa-callout { flex-direction: row; align-items: center; }
  .coa-cta { align-self: center; }
}
@media (min-width: 1024px) {
  .certs-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Honesty / transparency section ===== */
.honesty-section { background: var(--card); padding: 5rem 0; }
.honesty-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
.honesty-p { font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.text-link { color: var(--accent); }
.text-link:hover { text-decoration: underline; }
.honesty-list { display: flex; flex-direction: column; gap: 1rem; padding-top: 0.5rem; }
.honesty-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  border: 1px solid var(--border);
  background: var(--background);
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: var(--foreground);
}
.dot-lg {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 999px;
  background: var(--accent);
  margin-top: 0.375rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .honesty-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== About page ===== */
.about-section { background: var(--card); padding: 6rem 0; }
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: start;
}
.about-copy { display: flex; flex-direction: column; gap: 1rem; font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; }
.about-checklist { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 0.75rem; }
.about-check-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.about-check-item svg { margin-top: 0.125rem; }
.about-check-item span { font-size: 0.875rem; color: var(--foreground); }

.about-media-wrap { position: relative; }
.about-media {
  aspect-ratio: 4 / 5;
  background: var(--secondary);
  overflow: hidden;
  position: relative;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,16,8,.3), transparent);
}
.about-media-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--background);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  max-width: 15rem;
}
.badge-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 0.25rem;
}
.badge-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--foreground);
}
.badge-sub { font-family: var(--font-body); color: var(--muted-foreground); font-weight: 400; font-size: 0.75rem; }

@media (min-width: 768px) {
  .about-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Approach section ===== */
.approach-section { background: var(--background); padding: 6rem 0; }
.approach-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
}
.approach-card { background: var(--card); padding: 2.5rem; }
.approach-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}
.approach-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

@media (min-width: 768px) {
  .approach-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===== Contact page ===== */
.contact-section { background: var(--background); padding: 6rem 0; }
.contact-grid {
  display: grid;
  gap: 4rem;
}
.contact-lead { font-size: 1rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 2.5rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-detail-item { display: flex; align-items: flex-start; gap: 1rem; }
.detail-title { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.detail-sub { font-size: 0.875rem; color: var(--muted-foreground); }
.detail-link { font-size: 0.875rem; color: var(--foreground); transition: color .15s ease; }
.detail-link:hover { color: var(--accent); }

.expect-box { border: 1px solid var(--border); background: var(--card); padding: 1.5rem; }
.expect-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}
.expect-list { display: flex; flex-direction: column; gap: 0.75rem; }
.expect-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.expect-item svg { margin-top: 0.125rem; }
.expect-item span { font-size: 0.875rem; color: var(--foreground); }

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 3rem;
  text-align: center;
  height: 100%;
}
.contact-success svg { margin-bottom: 1rem; }
.contact-success h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.contact-success p { font-size: 0.875rem; color: var(--muted-foreground); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.botcheck-field { display: none; }
.form-error {
  font-size: 0.8125rem;
  color: var(--destructive);
  text-align: center;
}
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form-field { display: flex; flex-direction: column; }
.form-field label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted-foreground);
  margin-bottom: 0.375rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  padding: 0.625rem 1rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--foreground);
  transition: border-color .15s ease;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-field textarea { resize: none; }

.submit-btn {
  width: 100%;
  background: var(--foreground);
  color: var(--primary-foreground);
  padding: 0.875rem 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  transition: background-color .15s ease, color .15s ease;
}
.submit-btn:hover { background: var(--accent); color: var(--accent-foreground); }
.form-footnote { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; }

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== FAQ page ===== */
.faq-section { background: var(--background); padding: 6rem 0; }
.faq-container {
  max-width: 56rem; /* 4xl */
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.faq-list .faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  text-align: left;
}
.faq-question span {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--foreground);
  transition: color .15s ease;
}
.faq-question:hover span { color: var(--accent); }
.faq-chevron {
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform .2s ease;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  display: none;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
  padding-bottom: 1.25rem;
}
.faq-item.open .faq-answer { display: block; }

/* ===== Spec sheet (standalone printable document) ===== */
.spec-body { background: var(--background); min-height: 100vh; }

.spec-toolbar { background: var(--foreground); padding: 1rem 1.5rem; }
.spec-toolbar-inner {
  max-width: 56rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.spec-toolbar-inner span { font-size: 0.875rem; color: rgba(255,255,255,.7); }
.print-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background-color .15s ease;
}
.print-btn:hover { background: #f59e0b; }

.spec-sheet {
  max-width: 56rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

.spec-header {
  border-bottom: 2px solid var(--foreground);
  padding-bottom: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.spec-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.25rem;
}
.spec-title { font-family: var(--font-heading); font-size: 1.875rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.spec-subtitle { font-size: 0.875rem; color: var(--muted-foreground); }
.spec-header-right { text-align: right; flex-shrink: 0; }
.spec-header-right p { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); }
.spec-header-gap { margin-top: 0.25rem; }

.spec-block { margin-bottom: 2rem; }
.spec-h2 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid var(--border);
}

.spec-identity-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem 2rem;
}
.spec-row-pair { display: flex; gap: 0.5rem; }
.spec-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--muted-foreground);
  width: 10rem;
  flex-shrink: 0;
  padding-top: 0.125rem;
}
.spec-val { font-size: 0.875rem; color: var(--foreground); }

@media (min-width: 640px) {
  .spec-identity-grid:not(.spec-identity-grid-single) { grid-template-columns: repeat(2, 1fr); }
}

.spec-footnote { font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.5rem; }

.spec-dot-list { display: flex; flex-direction: column; gap: 0.375rem; }
.spec-dot-list li { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.875rem; color: var(--foreground); }
.spec-dot-list li .dot-lg { margin-top: 0.375rem; }

.spec-app-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
}
.spec-dot-item { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.75rem; color: var(--foreground); }
.spec-dot-item .dot-lg { margin-top: 0.375rem; }

@media (min-width: 640px) {
  .spec-app-grid { grid-template-columns: repeat(2, 1fr); }
}

.spec-footer {
  border-top: 2px solid var(--foreground);
  padding-top: 1.5rem;
  margin-top: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2rem;
}
.spec-footer-note { font-size: 0.75rem; color: var(--muted-foreground); }
.spec-footer-right { text-align: right; flex-shrink: 0; }
.spec-footer-brand { font-family: var(--font-heading); font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.spec-footer-copyright { font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted-foreground); }

@media print {
  .no-print { display: none !important; }
  body { background: #fff; }
  @page { margin: 1.5cm; }
}

/* ===== 404 page ===== */
.notfound-page {
  min-height: calc(100vh - 4rem);
  background: var(--foreground);
  display: flex;
  flex-direction: column;
}
.notfound-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.notfound-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 28vw;
  line-height: 1;
  color: rgba(255,255,255,.03);
  user-select: none;
  pointer-events: none;
}
.notfound-eyebrow { position: relative; font-size: 0.625rem; letter-spacing: 0.3em; color: rgba(251,191,36,.7); }
.notfound-title {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1rem;
}
.notfound-subline {
  position: relative;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  color: #fcd34d;
  margin-bottom: 1.5rem;
}
.notfound-desc {
  position: relative;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  max-width: 28rem;
  line-height: 1.6;
  margin-bottom: 3rem;
}
.notfound-actions {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.notfound-quicknav {
  position: relative;
  width: 100%;
  max-width: 42rem;
  border: 1px solid rgba(255,255,255,.1);
}
.quicknav-label {
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  text-align: left;
}
.quicknav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
  text-align: left;
  transition: background-color .15s ease;
}
.quicknav-item:hover { background: rgba(255,255,255,.05); }
.quicknav-item-last { border-bottom: none; }
.quicknav-title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,.8);
  transition: color .15s ease;
}
.quicknav-item:hover .quicknav-title { color: #fcd34d; }
.quicknav-sub { font-size: 0.75rem; color: rgba(255,255,255,.3); margin-left: 0.75rem; }
.quicknav-arrow { color: rgba(255,255,255,.2); flex-shrink: 0; transition: color .15s ease; }
.quicknav-item:hover .quicknav-arrow { color: #fbbf24; }

.notfound-footer-strip {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 80rem;
  margin: 0 auto;
  width: 100%;
}
.notfound-footer-brand {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}
.notfound-footer-contact {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(255,255,255,.25);
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .notfound-title { font-size: 3.75rem; }
  .notfound-footer-strip { flex-direction: row; align-items: center; justify-content: space-between; }
}

/* ===== WhatsApp button ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #25D366;
  color: #fff;
  padding: 0.75rem 1rem;
  box-shadow: 0 10px 15px -3px rgba(0,0,0,.1);
  transition: background-color .15s ease;
}
.whatsapp-btn:hover { background: #1ebe5d; }
.whatsapp-btn span { display: none; font-size: 0.875rem; font-weight: 500; }

@media (min-width: 768px) {
  .whatsapp-btn span { display: inline; }
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: #fff;
  color: var(--foreground);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-top: 3px solid var(--accent);
  box-shadow: 0 -8px 28px rgba(28,16,8,.15);
}
.cookie-banner-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}
.cookie-banner-text {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.65;
  max-width: 52rem;
}
.cookie-banner-text + .cookie-banner-text { margin-top: 0.5rem; }
.cookie-banner-text a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }
.cookie-banner-text a:hover { color: var(--foreground); }
.cookie-banner-actions {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}
.cookie-banner .btn { padding: 0.75rem 1.75rem; font-size: 0.9375rem; }
.cookie-banner .btn-outline-light { border-color: var(--border); color: var(--foreground); }
.cookie-banner .btn-outline-light:hover { border-color: var(--foreground); background: var(--secondary); }

@media (min-width: 768px) {
  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.75rem 2.5rem;
    gap: 2.5rem;
  }
}

/* ===== Legal document pages ===== */
.legal-section { background: var(--background); padding: 4rem 0 6rem; }
.legal-content { max-width: 46rem; margin: 0 auto; }
.legal-updated {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}
.legal-content h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 2.75rem;
  margin-bottom: 1rem;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--foreground);
  margin-top: 1.75rem;
  margin-bottom: 0.5rem;
}
.legal-content p {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.legal-content ul {
  margin: 0 0 1.25rem 0;
  padding-left: 1.25rem;
  list-style: disc;
}
.legal-content li {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
  line-height: 1.7;
  margin-bottom: 0.5rem;
}
.legal-content a { color: var(--accent); text-decoration: underline; text-underline-offset: 0.15em; }
.legal-content a:hover { color: var(--foreground); }
.legal-content strong { color: var(--foreground); font-weight: 600; }

.legal-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  margin: 0.5rem 0 1.5rem;
}
.legal-table th, .legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  font-size: 0.8125rem;
  color: var(--muted-foreground);
}
.legal-table th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted-foreground);
  background: var(--muted);
}
.legal-table tr:last-child td { border-bottom: none; }
