:root {
  --ink: #18201d;
  --muted: #53615a;
  --line: #dce8df;
  --paper: #f7faf7;
  --white: #ffffff;
  --green: #0f6b45;
  --green-dark: #0d4f36;
  --mint: #dff6ea;
  --sky: #d9efff;
  --sun: #f6c85f;
  --danger: #ba4a30;
  --shadow: 0 20px 60px rgba(9, 38, 24, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

input,
select,
textarea,
button {
  font: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(247, 250, 247, 0.92);
  border-bottom: 1px solid rgba(15, 107, 69, 0.14);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-size: 0.78rem;
}

.nav {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--green-dark);
}

.hero {
  position: relative;
  min-height: 660px;
  overflow: clip;
  padding: clamp(24px, 4vw, 52px) clamp(18px, 4vw, 54px);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 38, 23, 0.82) 0%, rgba(8, 38, 23, 0.52) 45%, rgba(8, 38, 23, 0.16) 100%),
    linear-gradient(0deg, rgba(15, 107, 69, 0.12), rgba(15, 107, 69, 0.12));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 460px);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1180px;
  min-height: 552px;
  margin: 0 auto;
}

.hero-copy {
  max-width: 650px;
  color: var(--white);
}

.eyebrow,
.mini-label {
  margin: 0 0 10px;
  color: var(--sun);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow.dark,
.mini-label {
  color: var(--green);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.25rem, 6vw, 4.35rem);
  line-height: 1;
}

h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  line-height: 1.1;
}

h3 {
  margin: 0 0 8px;
  font-size: 1.12rem;
  line-height: 1.2;
}

.lead {
  max-width: 620px;
  margin: 18px 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.02rem, 2vw, 1.24rem);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}

.calculator,
.result-card,
.metric,
.product-card,
.offer-card,
.panel,
.lead-box,
.tracking-box,
.ad-lab,
.ad-hooks article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.calculator {
  padding: clamp(18px, 4vw, 28px);
}

.form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.form-head h2 {
  margin-bottom: 0;
}

.badge {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

label,
fieldset {
  display: grid;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

fieldset {
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 9px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #cbd9d0;
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(15, 107, 69, 0.15);
}

.input-unit {
  position: relative;
}

.input-unit input {
  padding-right: 74px;
}

.input-unit span {
  position: absolute;
  top: 50%;
  right: 12px;
  color: var(--muted);
  transform: translateY(-50%);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.toggle-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.radio-pill {
  margin: 0;
}

.radio-pill input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio-pill span {
  display: grid;
  min-height: 44px;
  place-items: center;
  border: 1px solid #cbd9d0;
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.radio-pill input:checked + span {
  border-color: var(--green);
  background: var(--mint);
  color: var(--green-dark);
}

.results-band {
  display: grid;
  grid-template-columns: minmax(260px, 1.45fr) repeat(4, minmax(140px, 1fr));
  gap: 14px;
  max-width: 1180px;
  margin: -48px auto 0;
  padding: 0 clamp(18px, 4vw, 54px);
  position: relative;
  z-index: 2;
}

.result-card,
.metric {
  padding: 20px;
}

.main-result {
  background: var(--green-dark);
  color: var(--white);
}

.main-result .mini-label {
  color: var(--sun);
}

.main-result p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.86);
}

.metric {
  display: grid;
  align-content: center;
  min-height: 126px;
}

.metric span {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 850;
  line-height: 1;
}

.metric p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  max-width: 1180px;
  margin: 0 auto;
  padding: 86px clamp(18px, 4vw, 54px) 0;
}

.two-col,
.action-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(260px, 0.7fr);
  gap: clamp(18px, 4vw, 48px);
  align-items: end;
  margin-bottom: 22px;
}

.section p {
  color: var(--muted);
}

.recommendations {
  display: grid;
  gap: 14px;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.product-card p {
  margin: 0;
}

.compare-section {
  padding-top: 78px;
}

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

.offer-card {
  display: grid;
  gap: 16px;
  padding: 20px;
  box-shadow: none;
}

.offer-card.best {
  border-color: rgba(15, 107, 69, 0.42);
  background:
    linear-gradient(135deg, rgba(223, 246, 234, 0.92), rgba(255, 255, 255, 0.96)),
    var(--white);
}

.offer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.fit-score {
  display: inline-flex;
  min-width: 54px;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--green-dark);
  color: var(--white);
  font-weight: 850;
}

.offer-meta {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.offer-meta strong {
  color: var(--ink);
}

.deal-note {
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  background: rgba(217, 239, 255, 0.62);
  color: var(--green-dark);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 16px;
  border: 0;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
}

.button:hover {
  background: var(--green-dark);
}

.button.secondary {
  border: 1px solid rgba(15, 107, 69, 0.22);
  background: var(--mint);
  color: var(--green-dark);
  white-space: nowrap;
}

.button.secondary:hover {
  background: #c8efdb;
}

.button.light {
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.button.light:hover {
  background: rgba(255, 255, 255, 0.25);
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding-top: 42px;
}

.info-strip article,
.source-box,
.disclaimer-box,
.placeholder-product {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.info-strip article {
  padding: 18px;
}

.info-strip strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.04rem;
}

.info-strip p {
  margin: 8px 0 0;
}

.panel,
.lead-box {
  padding: clamp(20px, 4vw, 30px);
}

.steps {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
  padding-left: 22px;
}

.steps li {
  color: var(--muted);
}

.steps strong {
  color: var(--ink);
}

.lead-box {
  background:
    linear-gradient(135deg, rgba(223, 246, 234, 0.9), rgba(217, 239, 255, 0.7)),
    var(--white);
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.link-button {
  margin-top: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  cursor: pointer;
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: var(--green-dark);
  font-weight: 700;
}

.tracking-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
  padding: 20px;
  box-shadow: none;
}

.tracking-box p {
  margin: 0;
}

.ad-section {
  padding-bottom: 86px;
}

.ad-hooks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.ad-hooks article {
  box-shadow: none;
  padding: 20px;
}

.ad-hooks strong {
  display: block;
  color: var(--green-dark);
  font-size: 1.05rem;
}

.ad-hooks p {
  margin-bottom: 0;
}

.ad-lab {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(18px, 4vw, 42px);
  margin-top: 18px;
  padding: clamp(20px, 4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(223, 246, 234, 0.72)),
    var(--white);
}

.compact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.compact-form label {
  margin: 0;
}

.mini-metrics {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.mini-metrics div {
  min-height: 94px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.mini-metrics span {
  display: block;
  color: var(--green-dark);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 850;
  line-height: 1;
}

.mini-metrics p {
  margin: 8px 0 0;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 8px;
  font-weight: 800;
}

.footer-links a {
  color: var(--green-dark);
  text-decoration: none;
}

.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 64px clamp(18px, 4vw, 54px);
}

.legal-card {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.legal-card h1 {
  color: var(--green-dark);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.legal-card h2 {
  margin-top: 30px;
}

.placeholder-box {
  padding: 16px;
  border: 1px dashed rgba(15, 107, 69, 0.45);
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
}

.guide-cta,
.source-box,
.disclaimer-box {
  margin: 22px 0;
  padding: 18px;
}

.guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(15, 107, 69, 0.24);
  border-radius: 8px;
  background: var(--mint);
}

.guide-cta h2,
.guide-cta p {
  margin: 0;
}

.guide-list {
  display: grid;
  gap: 10px;
  padding-left: 21px;
}

.source-box {
  display: grid;
  gap: 8px;
  background: #f9fcf9;
  color: var(--muted);
}

.source-box.compact {
  max-width: 760px;
}

.source-box strong,
.disclaimer-box strong {
  color: var(--green-dark);
}

.disclaimer-box {
  background: rgba(246, 200, 95, 0.16);
  color: #4d442e;
  font-weight: 650;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.faq-list details {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.faq-list summary {
  color: var(--green-dark);
  font-weight: 850;
  cursor: pointer;
}

.wizard-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 54px clamp(18px, 4vw, 54px) 84px;
}

.wizard-hero {
  max-width: 840px;
  margin-bottom: 26px;
}

.wizard-hero h1 {
  color: var(--green-dark);
  font-size: clamp(2.05rem, 5vw, 4rem);
}

.wizard-hero p {
  color: var(--muted);
  font-size: 1.08rem;
}

.wizard-shell,
.wizard-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.wizard-shell {
  padding: clamp(18px, 4vw, 30px);
}

.wizard-progress {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--green-dark);
  font-weight: 850;
}

.progress-track {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6eee8;
}

.progress-track span {
  display: block;
  width: 12%;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
  transition: width 0.2s ease;
}

.wizard-form fieldset {
  margin: 0;
}

.wizard-form legend {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 850;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.option-card {
  margin: 0;
}

.option-card input {
  position: absolute;
  inline-size: 1px;
  block-size: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.option-card span {
  display: grid;
  min-height: 76px;
  align-items: center;
  padding: 16px;
  border: 1px solid #cbd9d0;
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.option-card input:checked + span {
  border-color: var(--green);
  background: var(--mint);
  color: var(--green-dark);
  box-shadow: inset 0 0 0 2px rgba(15, 107, 69, 0.12);
}

.single-input {
  max-width: 520px;
}

.wizard-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 24px;
}

.wizard-actions button:disabled {
  opacity: 0.48;
  cursor: not-allowed;
}

.wizard-result {
  margin-top: 24px;
  padding: clamp(18px, 4vw, 30px);
}

.result-grid {
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 1fr));
  gap: 14px;
}

.result-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 14px;
}

.inline-section {
  padding: 42px 0 0;
}

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

.placeholder-product {
  padding: 18px;
  background: var(--paper);
}

.placeholder-product p:last-child {
  margin-bottom: 0;
}

code {
  padding: 2px 5px;
  border-radius: 5px;
  background: rgba(15, 107, 69, 0.1);
  color: var(--green-dark);
  font-size: 0.92em;
}

.dashboard-main {
  max-width: 1120px;
}

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

.status-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.status-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: var(--white);
  font-weight: 850;
}

.status-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 12px 0 28px;
}

.quick-links a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid rgba(15, 107, 69, 0.2);
  border-radius: 8px;
  background: var(--mint);
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.guide-main .legal-card {
  display: grid;
  gap: 4px;
}

.guide-list {
  display: grid;
  gap: 10px;
  padding-left: 22px;
  color: var(--muted);
}

.guide-list strong {
  color: var(--ink);
}

.guide-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  margin: 22px 0;
  padding: 20px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(223, 246, 234, 0.95), rgba(217, 239, 255, 0.66)),
    var(--white);
}

.guide-cta h2,
.guide-cta p {
  margin-bottom: 0;
}

.creative-main {
  max-width: 1180px;
  margin: 0 auto;
  padding: 64px clamp(18px, 4vw, 54px);
}

.creative-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.ad-creative {
  aspect-ratio: 9 / 16;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 560px;
  padding: 28px;
  border-radius: 8px;
  color: var(--white);
  overflow: hidden;
  position: relative;
}

.ad-creative::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 44, 27, 0.2), rgba(6, 44, 27, 0.86)),
    url("./assets/balkonstrom-hero.png") center / cover;
  z-index: -2;
}

.ad-creative::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 107, 69, 0.26);
  z-index: -1;
}

.creative-renter::after {
  background: rgba(20, 84, 96, 0.36);
}

.creative-storage::after {
  background: rgba(54, 76, 35, 0.38);
}

.creative-brand {
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 850;
}

.ad-creative h2 {
  margin-top: auto;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}

.ad-creative p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

.creative-meter {
  display: grid;
  gap: 4px;
  padding: 16px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
}

.creative-meter span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.creative-meter strong {
  font-size: 1.45rem;
}

.ad-creative a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--sun);
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--mint);
  color: var(--green-dark);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

td {
  color: var(--muted);
}

td a {
  color: var(--green-dark);
  font-weight: 800;
}

.footer {
  display: grid;
  gap: 4px;
  padding: 28px clamp(18px, 4vw, 54px);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.footer p {
  margin: 0;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .two-col,
  .section-head,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 0;
  }

  .results-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 0;
    padding-top: 18px;
  }

  .main-result {
    grid-column: 1 / -1;
  }

  .offer-grid,
  .ad-lab,
  .status-grid,
  .creative-grid,
  .info-strip,
  .result-grid,
  .result-detail-grid,
  .placeholder-products {
    grid-template-columns: 1fr;
  }

  .guide-cta {
    grid-template-columns: 1fr;
  }

  .option-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mini-metrics {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .topbar {
    position: static;
    align-items: flex-start;
  }

  .nav {
    display: none;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(8, 38, 23, 0.78), rgba(8, 38, 23, 0.48)),
      linear-gradient(90deg, rgba(8, 38, 23, 0.42), rgba(8, 38, 23, 0.22));
  }

  .hero-copy {
    padding-top: 4px;
  }

  .split,
  .toggle-row,
  .results-band,
  .product-card,
  .tracking-box,
  .compact-form,
  .mini-metrics,
  .ad-hooks,
  .option-grid {
    grid-template-columns: 1fr;
  }

  .product-card .button,
  .tracking-box .button,
  .hero-actions .button,
  .wizard-actions .button {
    width: 100%;
  }

  .wizard-page {
    padding-top: 34px;
  }

  .wizard-actions {
    flex-direction: column-reverse;
  }

  .section {
    padding-top: 58px;
  }
}
