/* ============ Got DAC — styles ============ */

:root {
  --ink: #10241a;
  --ink-soft: #40564a;
  --ink-muted: #6b7f73;
  --cream: #f7f6ef;
  --white: #ffffff;
  --dark: #0d2b1d;
  --dark-2: #0a2217;
  --green: #219653;
  --green-deep: #187c46;
  --green-bright: #7ac142;
  --green-soft: #e9f4e1;
  --amber: #f5b301;
  --chart-bad: #d03b3b;
  --chart-good: #0ca30c;
  --chart-grid: #e1e0d9;
  --chart-axis: #898781;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 10px 30px rgba(13, 43, 29, 0.10);
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; }

[id] { scroll-margin-top: 78px; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; }

.container {
  width: min(1120px, 100% - 48px);
  margin-inline: auto;
}
.container-narrow { width: min(780px, 100% - 48px); }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; letter-spacing: -0.01em; }

h1 { font-size: clamp(2rem, 4.4vw, 3.3rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.1rem; font-weight: 600; }

h1 em, h2 em { font-style: normal; color: var(--green); }
.section-dark h2 em { color: var(--green-bright); }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.eyebrow-light { color: var(--green-bright); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn-lg { padding: 15px 30px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--amber);
  color: #241a00;
  box-shadow: 0 6px 18px rgba(245, 179, 1, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(245, 179, 1, 0.45); }
.btn-ghost { border-color: rgba(13, 43, 29, 0.25); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 246, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(13, 43, 29, 0.08);
}
.nav-inner {
  width: min(1180px, 100% - 40px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
}
.brand-word em { font-style: normal; color: var(--green); }
.brand-mark { width: 30px; height: 30px; display: block; }
.nav-links { display: flex; gap: 22px; margin-left: auto; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 500;
  font-size: 0.92rem;
  transition: color 0.15s;
}
.nav-links a:hover { color: var(--green); }
.nav-cta { white-space: nowrap; }
.nav-menu-cta { display: none; }
.lang-toggle {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1.5px solid rgba(13, 43, 29, 0.25);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s;
}
.lang-toggle:hover { border-color: var(--green); color: var(--green); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 5px 0; border-radius: 2px; transition: 0.2s; }

/* ---------- Hero ---------- */
.hero { padding: 36px 0 88px; overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.hero-copy { max-width: 780px; margin: 0 auto; text-align: center; }
.hero-sub { margin: 0 auto 28px; font-size: 1.08rem; color: var(--ink-soft); max-width: 60ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.hero-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin-top: 26px;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 500;
}
.hero-points li::before { content: "✓ "; color: var(--green); font-weight: 700; }

/* Hero intro video */
.hero-video {
  position: relative;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #0d2b1d;
}
.hero-video iframe { border: 0; }

/* DAC panel (in How It Works) */
.how-panel { max-width: 540px; margin: 0 auto 44px; }
.hero-panel {
  background: var(--white);
  color: var(--ink);
  border: 1px solid rgba(13, 43, 29, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 24px;
}
.panel-head { display: flex; align-items: center; gap: 10px; font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); }
.panel-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--green-bright); box-shadow: 0 0 0 4px rgba(122, 193, 66, 0.22); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(122, 193, 66, 0.1); } }
.panel-live { margin-left: auto; font-size: 0.68rem; letter-spacing: 0.12em; color: var(--green); border: 1px solid var(--green); border-radius: 5px; padding: 2px 7px; }
.panel-demand { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 18px; }
.panel-kw { font-family: var(--font-display); font-size: 3.2rem; font-weight: 800; color: var(--ink); }
.panel-kw-unit { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--ink-muted); margin-left: 4px; }
.panel-kw-label { font-size: 0.8rem; color: var(--ink-muted); margin-top: -4px; }
.panel-limit-tag { text-align: right; font-size: 0.72rem; color: var(--ink-muted); line-height: 1.3; }
.panel-limit-tag strong { color: var(--ink); font-size: 0.95rem; }
.panel-bar { position: relative; height: 12px; background: var(--green-soft); border-radius: 999px; margin: 14px 0 20px; overflow: visible; }
.panel-bar-fill {
  position: absolute; inset: 0 auto 0 0;
  width: 62%;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  border-radius: 999px;
  transition: width 0.9s cubic-bezier(0.3, 0.8, 0.3, 1);
}
.panel-bar-limit {
  position: absolute; top: -5px; bottom: -5px; left: 88%;
  width: 3px; background: var(--ink); border-radius: 2px;
}
.panel-loads { list-style: none; display: grid; gap: 8px; }
.panel-loads li {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 9px 14px;
  font-size: 0.88rem;
}
.load-name { font-weight: 500; }
.load-status { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; padding: 3px 10px; border-radius: 999px; }
.load-status.is-on { background: rgba(12, 163, 12, 0.12); color: #0a6e0a; }
.load-status.is-hold { background: rgba(245, 179, 1, 0.18); color: #7a5a00; }
.panel-foot { margin-top: 16px; text-align: center; font-size: 0.75rem; color: var(--ink-muted); }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-cream { background: var(--cream); }
.section-white { background: var(--white); }
.section-dark { background: var(--dark); color: #eef4ef; }
.section-dark h2, .section-dark h3 { color: #ffffff; }
.section-dark .section-sub { color: #b9cdc0; }

.section-head { max-width: 720px; margin: 0 auto 52px; text-align: center; }
.section-sub { margin-top: 16px; color: var(--ink-soft); font-size: 1.02rem; }

/* ---------- Charts ---------- */
.charts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.chart-card {
  background: var(--white);
  border: 1px solid rgba(13, 43, 29, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.chart-head h3 { margin-top: 10px; font-size: 1.02rem; }
.chart-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
}
.chart-badge-bad { background: rgba(208, 59, 59, 0.12); color: #a02525; }
.chart-badge-good { background: rgba(12, 163, 12, 0.12); color: #0a6e0a; }
.chart-holder { position: relative; margin-top: 16px; }
.chart-holder svg { display: block; width: 100%; height: auto; }
.chart-foot { margin-top: 12px; font-size: 0.88rem; color: var(--ink-soft); }
.ink-bad { color: var(--chart-bad); }
.ink-good { color: #0a6e0a; }

.chart-tip {
  position: absolute;
  pointer-events: none;
  background: var(--ink);
  color: #fff;
  font-size: 0.75rem;
  line-height: 1.4;
  padding: 6px 10px;
  border-radius: 8px;
  transform: translate(-50%, -115%);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.12s;
  z-index: 5;
}
.chart-tip.is-visible { opacity: 1; }

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  list-style: none;
  counter-reset: step;
  margin-top: 8px;
}
.step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
  padding: 22px 18px;
}
.step-num {
  display: inline-grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--green-bright);
  color: #04170c;
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 12px;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.85rem; color: #b9cdc0; }

.tech-detail {
  margin-top: 40px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius);
}
.tech-detail summary {
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--green-bright);
  list-style: none;
}
.tech-detail summary::-webkit-details-marker { display: none; }
.tech-detail summary::after { content: " +"; float: right; }
.tech-detail[open] summary::after { content: " −"; }
.tech-detail-body { padding: 0 24px 22px; display: grid; gap: 14px; color: #cdddd2; font-size: 0.95rem; }

/* ---------- Load cards ---------- */
.loads-grid, .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.load-card, .result-card {
  background: var(--white);
  border: 1px solid rgba(13, 43, 29, 0.08);
  border-radius: var(--radius);
  padding: 26px 24px;
  box-shadow: 0 4px 14px rgba(13, 43, 29, 0.05);
}
.result-card { background: var(--cream); box-shadow: none; }
.load-icon, .result-icon { font-size: 1.7rem; display: block; margin-bottom: 12px; }
.load-card h3, .result-card h3 { margin-bottom: 8px; font-size: 1.02rem; }
.load-card p, .result-card p { font-size: 0.9rem; color: var(--ink-soft); }
.loads-note {
  margin-top: 34px;
  text-align: center;
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.loads-note strong { color: var(--green); }
.results-head { margin-top: 84px; }

/* ---------- Fit quiz ---------- */
.charts-cta { margin-top: 30px; text-align: center; color: var(--ink-soft); font-size: 0.95rem; }
.charts-cta a { color: var(--green); font-weight: 600; }

.quiz-card {
  background: var(--white);
  border: 1px solid rgba(13, 43, 29, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 30px 24px;
  max-width: 640px;
  margin-inline: auto;
}
.quiz-top { margin-bottom: 20px; }
.quiz-count {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.quiz-progress { height: 6px; background: var(--green-soft); border-radius: 999px; overflow: hidden; }
.quiz-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  border-radius: 999px;
  transition: width 0.35s ease;
}
.quiz-q { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; line-height: 1.3; }
.quiz-hint { margin-top: 8px; font-size: 0.88rem; color: var(--ink-muted); }
.quiz-opts { display: grid; gap: 10px; margin-top: 20px; }
.quiz-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid rgba(13, 43, 29, 0.12);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.12s, background 0.12s, transform 0.12s;
}
.quiz-opt:hover { border-color: var(--green); background: var(--green-soft); }
.quiz-opt:active { transform: scale(0.99); }
.quiz-opt .quiz-tick {
  flex: none;
  width: 20px; height: 20px;
  border: 2px solid rgba(13, 43, 29, 0.25);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  font-size: 0.7rem;
  color: transparent;
}
.quiz-opt.is-multi .quiz-tick { border-radius: 6px; }
.quiz-opt.is-selected { border-color: var(--green); background: var(--green-soft); }
.quiz-opt.is-selected .quiz-tick { background: var(--green); border-color: var(--green); color: #fff; }
.quiz-continue { margin-top: 18px; }
.quiz-counters { display: grid; gap: 8px; margin-top: 20px; }
.quiz-counter-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: var(--cream);
  border: 1.5px solid rgba(13, 43, 29, 0.12);
  border-radius: var(--radius-sm);
  padding: 10px 10px 10px 16px;
  transition: border-color 0.12s, background 0.12s;
}
.quiz-counter-row.has-count { border-color: var(--green); background: var(--green-soft); }
.quiz-counter-name { font-size: 0.95rem; font-weight: 500; }
.quiz-stepper { display: flex; align-items: center; gap: 2px; flex: none; }
.quiz-step-btn {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1.5px solid rgba(13, 43, 29, 0.18);
  background: var(--white);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: background 0.12s, border-color 0.12s;
}
.quiz-step-btn:hover { border-color: var(--green); background: var(--green-soft); }
.quiz-counter-val {
  min-width: 30px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
}
.quiz-back {
  margin-top: 18px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  padding: 4px 0;
}
.quiz-back:hover { color: var(--green); }

.quiz-result-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.badge-excellent { background: rgba(12, 163, 12, 0.14); color: #0a6e0a; }
.badge-strong { background: rgba(245, 179, 1, 0.2); color: #7a5a00; }
.badge-maybe { background: rgba(13, 43, 29, 0.08); color: var(--ink-soft); }
.quiz-result-notes { list-style: none; margin: 18px 0 4px; display: grid; gap: 10px; }
.quiz-result-notes li {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.quiz-result-notes li::before { content: "⚡ "; }
.quiz-score-meter { position: relative; height: 10px; background: var(--green-soft); border-radius: 999px; margin: 16px 0 6px; }
.quiz-score-fill {
  position: absolute; inset: 0 auto 0 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-bright), var(--green));
  transition: width 1s cubic-bezier(0.3, 0.8, 0.3, 1);
}
.quiz-score-label { font-size: 0.8rem; color: var(--ink-muted); margin-bottom: 6px; }

/* ---------- FAQ ---------- */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--white);
  border: 1px solid rgba(13, 43, 29, 0.08);
  border-radius: var(--radius-sm);
  padding: 0 22px;
}
.faq-item summary {
  cursor: pointer;
  padding: 17px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  position: relative;
  padding-right: 30px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 0; top: 50%;
  transform: translateY(-50%);
  color: var(--green);
  font-size: 1.3rem;
  font-weight: 400;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item p { padding: 0 0 18px; color: var(--ink-soft); font-size: 0.94rem; }

/* ---------- Quote / lead form ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}
.quote-points { list-style: none; margin-top: 24px; display: grid; gap: 10px; color: #cdddd2; font-size: 0.96rem; }
.quote-points li::before { content: "✓ "; color: var(--green-bright); font-weight: 700; }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px 28px;
  color: var(--ink);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label, .form-field legend {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
.optional { color: var(--ink-muted); font-weight: 400; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 11px 14px;
  border: 1.5px solid rgba(13, 43, 29, 0.15);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.15s;
}
.form-field select { appearance: none; -webkit-appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--ink-muted) 50%), linear-gradient(135deg, var(--ink-muted) 50%, transparent 50%); background-position: calc(100% - 20px) 50%, calc(100% - 14px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--green);
  background-color: var(--white);
}
.form-hint { margin-top: 8px; font-size: 0.8rem; color: var(--ink-muted); }
.quote-form .form-hint { color: var(--ink-soft); }
fieldset.form-field { border: none; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip input { position: absolute; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block;
  padding: 7px 14px;
  border: 1.5px solid rgba(13, 43, 29, 0.18);
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s;
  user-select: none;
}
.chip input:checked + span {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}
.chip input:focus-visible + span { outline: 2px solid var(--green); outline-offset: 2px; }
.form-note { margin-top: 12px; text-align: center; font-size: 0.78rem; color: var(--ink-muted); }
.form-status { margin-top: 14px; text-align: center; font-weight: 600; font-size: 0.95rem; }
.form-status.ok { color: #0a6e0a; }
.form-status.err { color: var(--chart-bad); }

/* ---------- Consent + legal ---------- */
.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 14px 0 14px;
  cursor: pointer;
}
.consent-check input {
  flex: none;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  accent-color: var(--green);
  cursor: pointer;
}
.consent-text {
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--ink-muted);
}
.consent-text a { color: var(--green); }

.legal h1 { font-size: 1.9rem; margin-bottom: 4px; }
.legal h2 { font-size: 1.12rem; margin: 26px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 12px; }
.legal ul { padding-left: 22px; margin-bottom: 14px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--green); }
.legal-date { font-size: 0.85rem; color: var(--ink-muted); margin-bottom: 26px; }
.legal-divider { margin: 52px 0; border: none; border-top: 1px solid rgba(13, 43, 29, 0.15); }
.legal-back { margin-left: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--dark-2); color: #b9cdc0; padding: 44px 0; }
.footer-inner { display: grid; justify-items: center; gap: 8px; text-align: center; }
.footer .brand { color: #fff; }
.footer .brand-word em { color: var(--green-bright); }
.footer-tag { font-size: 0.85rem; letter-spacing: 0.06em; }
.footer-legal { font-size: 0.82rem; display: flex; gap: 10px; }
.footer-legal a, .footer-link { color: #b9cdc0; text-decoration: underline; text-underline-offset: 3px; }
.footer-legal a:hover, .footer-link:hover { color: var(--green-bright); }
.footer-disclaim { font-size: 0.72rem; color: #7e948a; max-width: 46ch; }
.footer-copy { font-size: 0.78rem; color: #7e948a; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { gap: 36px; }
  .charts-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .loads-grid, .results-grid { grid-template-columns: repeat(2, 1fr); }
  .quote-grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .hero { padding: 48px 0 64px; }
  .container, .container-narrow { width: min(1120px, 100% - 36px); }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    border-bottom: 1px solid rgba(13, 43, 29, 0.1);
    flex-direction: column;
    gap: 0;
    padding: 8px 0;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 12px 24px; }
  .nav-toggle { display: block; margin-left: auto; }
  .nav-cta { display: none; }
  .nav-menu-cta.btn { display: block; margin: 10px 24px 8px; text-align: center; }
  .steps { grid-template-columns: 1fr; }
  .loads-grid, .results-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  /* 16px inputs stop iOS Safari from auto-zooming on focus */
  .form-field input, .form-field textarea, .form-field select { font-size: 16px; }
  .lang-toggle { margin-left: auto; }
  .nav-toggle { margin-left: 0; }
  .quiz-step-btn { width: 42px; height: 42px; }
  .quiz-card { padding: 22px 18px 20px; }
  .chart-card { padding: 18px 14px; }
  .panel-kw { font-size: 2.7rem; }
  .hero-points { gap: 10px 18px; }
}
