:root {
  --pt: #c6cbd1;
  --pt-s: #f2f4f6;
  --ig: #009246;
  --ir: #ce2b37;

  --ink: #080808;
  --ink2: #0d0d0d;
  --ink3: #131313;
  --ink4: #181818;

  --ln: rgba(198, 203, 209, 0.18);
  --hr: rgba(255, 255, 255, 0.07);
  --tx: #e4e4e4;
  --mt: #8a8a8a;

  --sf: "Cormorant Garamond", serif;
  --ss: "Montserrat", sans-serif;
  --lb: "Oswald", sans-serif;

  --pd: clamp(1.25rem, 5vw, 4rem);
  --ch: linear-gradient(100deg, #5a5f65 0%, #e8ecf0 18%, #a0a8b0 36%, #ffffff 50%, #a0a8b0 64%, #e8ecf0 82%, #5a5f65 100%);
  --tf: linear-gradient(90deg, transparent 0%, var(--ig) 15% 33.33%, #ffffff 33.33% 66.66%, var(--ir) 66.66% 85%, transparent 100%);
  --tr: linear-gradient(90deg, var(--ig) 0 33.33%, #ffffff 33.33% 66.66%, var(--ir) 66.66% 100%);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--tx);
  font-family: var(--ss);
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
}

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

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

::selection {
  background: var(--pt);
  color: var(--ink);
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--ink);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, var(--ig) 33%, rgba(198, 203, 209, 0.5) 33% 66%, var(--ir) 66%);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 120;
  background: var(--ink2);
  color: var(--tx);
  border: 1px solid var(--ln);
  padding: 0.5rem 0.8rem;
  font-family: var(--lb);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0;
  z-index: 300;
  background: rgba(198, 203, 209, 0.45);
  pointer-events: none;
}

.ey {
  font-family: var(--lb);
  font-size: 0.65rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--pt);
  font-weight: 400;
  margin-bottom: 1.35rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.ey-tri,
.ey-tri-r {
  display: flex;
  flex-direction: row;
  gap: 0;
  flex-shrink: 0;
  overflow: hidden;
  height: 11px;
  width: 0;
  transition: width 0.85s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.ey-tri-r {
  transition-delay: 0.12s;
}

.ey-tri span,
.ey-tri-r span {
  display: block;
  flex: 1;
  min-width: 0;
}

.ey-tri span:nth-child(1) {
  background: var(--ig);
}

.ey-tri span:nth-child(2) {
  background: #ffffff;
}

.ey-tri span:nth-child(3) {
  background: var(--ir);
}

.ey-tri-r span:nth-child(1) {
  background: var(--ir);
}

.ey-tri-r span:nth-child(2) {
  background: #ffffff;
}

.ey-tri-r span:nth-child(3) {
  background: var(--ig);
}

.ey.tri-in .ey-tri,
.ey.tri-in .ey-tri-r {
  width: 42px;
}

.ey.c {
  justify-content: center;
}

.brand {
  font-family: var(--sf);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0;
  color: var(--tx);
  font-size: 1.25rem;
}

.brand-apex {
  font-weight: 600;
  color: var(--pt);
  letter-spacing: 0.22em;
}

.brand-sep {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  margin: 0 8px;
  flex-shrink: 0;
}

.brand-sep span {
  display: block;
  width: 3px;
  border-radius: 1px;
}

.brand-sep span:nth-child(1) {
  height: 5px;
  background: var(--ig);
}

.brand-sep span:nth-child(2) {
  height: 5px;
  background: #ffffff;
}

.brand-sep span:nth-child(3) {
  height: 5px;
  background: var(--ir);
}

.brand-excl {
  font-weight: 300;
  color: rgba(198, 203, 209, 0.42);
  letter-spacing: 0.22em;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem var(--pd);
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--ln);
}

.back-btn {
  font-family: var(--lb);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.4);
  border: 1px solid rgba(198, 203, 209, 0.14);
  padding: 0.55rem 1.2rem;
  transition: border-color 0.3s, color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.back-btn:hover {
  border-color: rgba(198, 203, 209, 0.28);
  color: var(--pt);
}

.back-btn svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.page-hero {
  position: relative;
  text-align: center;
  padding: 2.4rem var(--pd) 1.8rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(0,146,70,.04) 0%, transparent 55%), radial-gradient(ellipse at 70% 60%, rgba(206,43,55,.04) 0%, transparent 55%);
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tr);
  opacity: .55;
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
}

.page-hero h1 {
  font-family: var(--sf);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: .01em;
  margin-bottom: .65rem;
}

.page-hero h1 em {
  font-style: italic;
  background: var(--ch);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: csh 7s ease-in-out infinite;
  font-size: .88em;
  opacity: .85;
}

@keyframes csh {
  0% {
    background-position: 0% center;
  }
  50% {
    background-position: 100% center;
  }
  100% {
    background-position: 0% center;
  }
}

.hero-points {
  display: flex;
  justify-content: center;
  gap: .45rem;
  flex-wrap: wrap;
  margin-top: .9rem;
}

.hero-points span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .95rem;
  border: 1px solid rgba(198,203,209,.14);
  background: rgba(255,255,255,.04);
  font-family: var(--lb);
  font-size: .62rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(198,203,209,.55);
  border-radius: 0;
}

.hero-points span::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pt);
  opacity: .45;
  flex-shrink: 0;
}

.tri-div {
  height: 1px;
  background: var(--tf);
  opacity: 0.4;
  margin: 0 var(--pd);
}

.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 1.3rem var(--pd) 2.4rem;
}

.form-card,
.trust-item,
.ad-copy-block,
.ad-copy-card,
.ad-copy-text,
.fi,
select.fi,
.btn,
.copy-actions .btn,
.ad-copy-meta span,
.trust-strip {
  border-radius: 0 !important;
}

.form-card {
  background: rgba(11, 11, 11, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
  position: relative;
  overflow: visible;
  margin-bottom: 2rem;
}

.form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--tr);
  opacity: 0.45;
  z-index: 1;
}

.form-card::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ig), rgba(198, 203, 209, 0.35), var(--ir));
  opacity: 0.28;
}

.form-inner {
  padding: 1.8rem 1.75rem 1.5rem;
  position: relative;
  z-index: 1;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.12rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field-lbl {
  font-family: var(--lb);
  font-size: 0.56rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.32);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.field-help {
  font-size: 0.66rem;
  color: rgba(198, 203, 209, 0.22);
  font-family: var(--lb);
  letter-spacing: 0.05em;
  line-height: 1.55;
  margin-top: 0.05rem;
}

.fi {
  background: var(--ink3);
  border: 1px solid rgba(255,255,255,.08);
  color: var(--tx);
  font-family: var(--ss);
  font-size: 0.88rem;
  font-weight: 300;
  padding: 0.85rem 0.95rem;
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}

.fi:focus {
  background: var(--ink4);
  border-bottom-color: var(--pt);
}

.fi:hover {
  border-bottom-color: rgba(198, 203, 209, 0.22);
}

.fi::placeholder {
  color: rgba(198, 203, 209, 0.18);
}

select.fi {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%238a8a8a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  padding-right: 2.2rem;
}

.inline-summary {
  margin-top: 1rem;
  font-family: var(--lb);
  font-size: 0.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.35);
  border: 1px solid rgba(198, 203, 209, 0.16);
  padding: 0.62rem 0.75rem;
}

.form-feedback {
  margin-top: 0.55rem;
  border: 1px solid rgba(206, 43, 55, 0.35);
  background: rgba(206, 43, 55, 0.08);
  color: rgba(255, 210, 214, 0.92);
  padding: 0.55rem 0.75rem;
  font-family: var(--lb);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-feedback.success {
  border-color: rgba(0, 146, 70, 0.4);
  background: rgba(0, 146, 70, 0.08);
  color: rgba(180, 244, 207, 0.9);
}

.calc-btn {
  width: 100%;
  margin-top: 1.5rem;
  padding: 1.1rem;
  font-family: var(--lb);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: #f7f8f9;
  color: var(--ink);
  border: 1px solid rgba(198,203,209,.3);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border-radius: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.calc-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(198,203,209,.55);
  background: #ffffff;
}

.calc-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ch);
  background-size: 220% 100%;
  background-position: 100% 0;
  transform: translateY(101%);
  transition: transform 0.3s ease;
  z-index: 0;
}

.calc-btn:hover::before {
  transform: translateY(0);
}

.calc-btn span {
  position: relative;
  z-index: 1;
}

.calc-btn.loading {
  opacity: 0.75;
  cursor: wait;
}

.reset-link {
  display: block;
  text-align: center;
  margin-top: 0.85rem;
  font-family: var(--lb);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.22);
  cursor: pointer;
  transition: color 0.3s;
  background: none;
  border: none;
  padding: 0;
  width: 100%;
}

.reset-link:hover {
  color: rgba(198, 203, 209, 0.5);
}

.empty-state {
  text-align: center;
  padding: 4rem 0 2rem;
}

.empty-tri {
  display: flex;
  justify-content: center;
  gap: 3px;
  margin-bottom: 1.75rem;
}

.empty-tri span {
  display: block;
  width: 2px;
  border-radius: 1px;
}

.empty-tri span:nth-child(1) {
  height: 16px;
  background: var(--ig);
  opacity: 0.4;
}

.empty-tri span:nth-child(2) {
  height: 24px;
  background: rgba(198, 203, 209, 0.28);
}

.empty-tri span:nth-child(3) {
  height: 16px;
  background: var(--ir);
  opacity: 0.4;
}

.empty-title {
  font-family: var(--sf);
  font-size: 1.25rem;
  font-style: italic;
  color: rgba(198, 203, 209, 0.2);
  margin-bottom: 0.5rem;
}

.empty-sub {
  font-size: 0.68rem;
  color: rgba(198, 203, 209, 0.13);
  letter-spacing: 0.1em;
  font-family: var(--lb);
}

.result-wrap {
  margin-top: 2px;
  display: block;
}

.result-wrap[hidden] {
  display: none;
}

.betalen-wrap {
  background: var(--ink2);
  border: 2px solid rgba(198, 203, 209, 0.35);
  position: relative;
  margin-bottom: 4px;
  overflow: hidden;
}

.betalen-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--ig), var(--pt), var(--ir));
}

.betalen-header {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 1.25rem;
  background: rgba(198, 203, 209, 0.04);
  border-bottom: 1px solid var(--ln);
}

.betalen-icon {
  width: 54px;
  height: 54px;
  flex-shrink: 0;
  background: var(--pt);
  color: var(--ink);
  font-family: var(--sf);
  font-size: 2.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
}

.betalen-content {
  flex: 1;
}

.betalen-lbl {
  font-family: var(--lb);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.45);
  margin-bottom: 0.35rem;
}

.betalen-val {
  font-family: var(--sf);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--pt);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.betalen-sub {
  font-size: 0.78rem;
  color: rgba(198, 203, 209, 0.5);
  font-family: var(--lb);
  letter-spacing: 0.06em;
  line-height: 1.55;
}

.betalen-kosten {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ln);
}

.betalen-kost {
  background: var(--ink3);
  padding: 0.78rem 0.95rem;
}

.betalen-kost-lbl {
  font-family: var(--lb);
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.28);
  margin-bottom: 0.25rem;
}

.betalen-kost-val {
  font-family: var(--sf);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--tx);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.betalen-kost-sub {
  font-size: 0.65rem;
  color: rgba(198, 203, 209, 0.28);
  font-family: var(--lb);
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.betalen-kost.bpm-kost .betalen-kost-val {
  color: var(--pt);
}

.result-main {
  background: var(--ink2);
  border: 1px solid var(--ln);
  position: relative;
  overflow: hidden;
  margin-bottom: 2px;
}

.result-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--tr);
  opacity: 0.55;
  z-index: 1;
}

.result-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ln);
}

.rn-card {
  background: var(--ink3);
  padding: 1rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.rn-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  opacity: 0.35;
}

.rn-card:nth-child(1)::before {
  background: var(--ig);
}

.rn-card:nth-child(2)::before {
  background: var(--pt);
}

.rn-card:nth-child(3)::before {
  background: var(--ir);
}

.rn-lbl {
  font-family: var(--lb);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.28);
  margin-bottom: 0.45rem;
}

.rn-val {
  font-family: var(--sf);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 300;
  color: var(--tx);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.rn-sub {
  font-size: 0.7rem;
  color: rgba(198, 203, 209, 0.32);
  line-height: 1.45;
}

.result-footnote {
  padding: 0.95rem 1.75rem;
  border-top: 1px solid var(--ln);
  font-family: var(--lb);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  color: rgba(198, 203, 209, 0.28);
  background: rgba(255, 255, 255, 0.02);
}

.ad-copy-block {
  margin-top: 2px;
  background: var(--ink2);
  border: 1px solid var(--ln);
  padding: 1rem 1.1rem;
  border-radius: 0;
}

.ad-copy-block .section-lbl {
  margin-bottom: 1rem;
}

.ad-copy-card {
  background: rgba(19, 19, 19, 0.98);
  border: 1px solid rgba(198, 203, 209, 0.14);
  padding: 1rem 1rem 1.1rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02);
}

.ad-copy-card h3 {
  font-family: var(--sf);
  font-weight: 300;
  font-size: 1.84rem;
  line-height: 1.12;
  margin-bottom: 0.7rem;
  color: var(--tx);
}

.ad-copy-card p,
.ad-copy-text {
  color: var(--mt);
  font-size: 0.84rem;
  line-height: 1.85;
  white-space: pre-wrap;
}

.ad-copy-text {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(198, 203, 209, 0.12);
  border-radius: 0;
  padding: 1.25rem;
  min-height: 180px;
  margin-top: 0.3rem;
  font-family: var(--ss);
  overflow-x: hidden;
}

.ad-copy-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.ad-copy-meta span {
  font-family: var(--lb);
  font-size: 0.53rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(198, 203, 209, 0.16);
  padding: 0.38rem 0.62rem;
  color: rgba(198, 203, 209, 0.55);
}

  .copy-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.1rem;
  }
  
  .copy-actions .btn {
    min-width: 170px;
  }

  .copy-status {
    margin-top: 0.9rem;
    font-family: var(--lb);
    font-size: 0.72rem;
    color: rgba(198, 203, 209, 0.55);
  }
  
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.95rem;
    margin-top: 1.5rem;
  }
  
  .trust-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(198, 203, 209, 0.1);
    padding: 1.1rem 1.15rem;
    border-radius: 0;
    font-size: 0.78rem;
    line-height: 1.5;
  }
  
  .trust-item svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    stroke: var(--pt);
    stroke-width: 1.5;
    fill: none;
    opacity: 0.88;
    margin-top: 3px;
  }

  .copy-btn {
    border-color: var(--pt);
    color: var(--ink);
    background: linear-gradient(120deg, #f5f7f9 0%, #d6dbe0 100%);
  }

  .copy-btn:hover {
    color: var(--ink);
  }

  .marktplaats-btn {
    border-color: rgba(255, 255, 255, 0.16);
    color: #bbbbbb;
    background: rgba(255, 255, 255, 0.05);
  }

  .marktplaats-btn:hover {
    color: var(--ink);
    background: rgba(255, 255, 255, 0.16);
  }

.offers-section {
  padding: 1rem 1.1rem;
}

.offers-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-lbl {
  font-family: var(--lb);
  font-size: 0.55rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.28);
  margin-bottom: 0;
}

.sort-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--lb);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.35);
}

.sort-select {
  border: 1px solid var(--hr);
  background: var(--ink3);
  color: var(--tx);
  font-family: var(--lb);
  font-size: 0.56rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.5rem 0.7rem;
  outline: none;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--ln);
}

.offer-card {
  background: var(--ink3);
  padding: 0.78rem 0.84rem;
  border: 1px solid transparent;
  position: relative;
}

.offer-card.best-cheap {
  border-color: rgba(0, 146, 70, 0.35);
}

.offer-card.best-overall {
  border-color: rgba(198, 203, 209, 0.35);
}

.offer-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
}

.offer-name {
  font-family: var(--sf);
  font-size: 1.15rem;
  font-weight: 300;
  line-height: 1.15;
}

.offer-tag {
  border: 1px solid rgba(198, 203, 209, 0.25);
  padding: 0.18rem 0.38rem;
  font-family: var(--lb);
  font-size: 0.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.5);
}

.offer-tag.cheap {
  border-color: rgba(0, 146, 70, 0.35);
  color: rgba(123, 214, 166, 0.85);
}

.offer-tag.premium {
  border-color: rgba(198, 203, 209, 0.4);
  color: rgba(225, 231, 238, 0.86);
}

.offer-stats {
  margin-top: 0.75rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hr);
}

.stat {
  background: var(--ink2);
  padding: 0.52rem;
}

.stat-lbl {
  font-family: var(--lb);
  font-size: 0.5rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.28);
  margin-bottom: 0.15rem;
}

.stat-val {
  font-family: var(--sf);
  font-size: 0.96rem;
  line-height: 1.15;
}

.offer-foot {
  margin-top: 0.75rem;
  font-family: var(--lb);
  font-size: 0.56rem;
  letter-spacing: 0.06em;
  color: rgba(198, 203, 209, 0.36);
  line-height: 1.5;
}

.insight-strip {
  padding: 1.1rem 1.55rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background-image: linear-gradient(var(--ln), var(--ln));
}

.insight-item {
  background: var(--ink3);
  padding: 0.85rem;
}

.insight-lbl {
  display: block;
  font-family: var(--lb);
  font-size: 0.5rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.25);
  margin-bottom: 0.25rem;
}

.insight-val {
  display: block;
  font-family: var(--sf);
  font-size: 1.05rem;
  color: var(--tx);
}

.detail-section {
  border-top: none;
  padding: 1rem 1.1rem;
}

.detail-section .section-lbl {
  margin-bottom: 1.1rem;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem 1.75rem;
}

.di-lbl {
  display: block;
  font-family: var(--lb);
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.22);
  margin-bottom: 0.3rem;
}

.di-val {
  font-size: 0.84rem;
  color: var(--tx);
  line-height: 1.5;
  font-weight: 300;
}

.disclaimer {
  border-top: none;
  padding: 1.1rem 1.55rem;
  font-family: var(--lb);
  font-size: 0.58rem;
  letter-spacing: 0.06em;
  color: rgba(198, 203, 209, 0.2);
  line-height: 1.65;
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.disclaimer::before {
  content: "⚠";
  font-size: 0.78rem;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.other-tools {
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.other-tools-lbl {
  font-family: var(--lb);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.28);
}

.other-tools-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.tool-link-sm {
  font-family: var(--lb);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.38);
  border-bottom: 1px solid rgba(198, 203, 209, 0.14);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}

.tool-link-sm:hover {
  color: var(--pt);
  border-color: rgba(198, 203, 209, 0.35);
}

.cta-wrap {
  padding: 1.5rem 1.2rem;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.cta-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--tr);
  opacity: 0.42;
}

.cta-wrap h3 {
  font-family: var(--sf);
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0.6rem;
}

.cta-wrap h3 em {
  font-style: italic;
  color: rgba(198, 203, 209, 0.4);
}

.cta-wrap p {
  font-size: 0.82rem;
  color: var(--mt);
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.75;
}

.cta-btns {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.85rem 1.75rem;
  font-family: var(--lb);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 1px solid var(--pt);
  color: var(--pt);
  font-weight: 400;
  background: transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: color 0.4s;
  white-space: nowrap;
  border-radius: 0;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ch);
  background-size: 220% 100%;
  background-position: 100% 0;
  transform: translateY(101%);
  transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.3, 1);
  z-index: -1;
}

.btn:hover {
  color: var(--ink);
}

.btn:hover::before {
  transform: translateY(0);
}

.btn.gh {
  border-color: rgba(255, 255, 255, 0.16);
  color: #bbbbbb;
}

.btn.gh::before {
  background: rgba(255, 255, 255, 0.92);
}

.btn.gh:hover {
  color: var(--ink);
}

.methodology {
  padding: 1.1rem 1.55rem;
  font-size: 0.8rem;
  color: var(--mt);
  line-height: 1.7;
}

.methodology .section-lbl {
  margin-bottom: 0.55rem;
}

footer {
  text-align: center;
  padding: 2.5rem var(--pd);
  border-top: 1px solid var(--hr);
  background: var(--ink);
  position: relative;
}

footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--tf);
  opacity: 0.3;
}

.ft-tri {
  display: flex;
  gap: 2px;
  justify-content: center;
  margin-bottom: 0.85rem;
}

.ft-tri span {
  display: block;
  height: 1px;
}

.ft-tri span:nth-child(1) {
  width: 20px;
  background: var(--ig);
  opacity: 0.5;
}

.ft-tri span:nth-child(2) {
  width: 20px;
  background: rgba(198, 203, 209, 0.35);
}

.ft-tri span:nth-child(3) {
  width: 20px;
  background: var(--ir);
  opacity: 0.5;
}

.ft-copy {
  font-family: var(--lb);
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(198, 203, 209, 0.18);
}

.ft-copy a {
  color: rgba(198, 203, 209, 0.22);
  transition: color 0.3s;
}

.ft-copy a:hover {
  color: rgba(198, 203, 229, 0.5);
}

.rv {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.7, 0.3, 1), transform 0.8s cubic-bezier(0.2, 0.7, 0.3, 1);
}

.rv,
.ey {
  opacity: 1;
  transform: none;
}

.result-wrap.reveal > * {
  animation: fadeUpR 0.55s ease;
}

.result-wrap.reveal .offer-card {
  opacity: 0;
  transform: translateY(10px);
  animation: offerRise 0.48s ease forwards;
  animation-delay: calc(var(--stagger, 0) * 50ms);
}

@keyframes fadeUpR {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes offerRise {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .betalen-kosten,
  .result-top,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .offers-grid,
  .insight-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  header {
    padding: 1rem var(--pd);
  }

  .page-hero {
    padding: 2.5rem var(--pd) 1.8rem;
  }

  .page-hero-inner {
    padding: 0 1rem;
  }

  .page-hero h1 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    line-height: 1.05;
  }

  .hero-note {
    max-width: 100%;
    font-size: 0.75rem;
    padding: 0.65rem 0.9rem;
  }

  .hero-points {
    justify-content: center;
    gap: 0.65rem;
  }

  .hero-points span {
    min-width: auto;
    font-size: 0.68rem;
    padding: 0.5rem 0.8rem;
  }

  .wrap {
    padding: 1.4rem var(--pd) 2.5rem;
  }

  .form-inner {
    padding: 1.2rem 1rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .copy-actions {
    flex-direction: column;
  }

  .copy-actions .btn {
    width: 100%;
  }

  .ad-copy-text {
    min-height: 170px;
  }
}

  .form-grid {
    grid-template-columns: 1fr;
  }

  .betalen-header {
    padding: 1.35rem 1.2rem;
  }

  .betalen-kosten {
    grid-template-columns: 1fr 1fr;
  }

  .result-top,
  .offers-grid,
  .insight-strip,
  .detail-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
  }

  .hero-points {
    justify-content: flex-start;
  }

  .offers-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 380px) {
  .betalen-kosten,
  .detail-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .rv {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .ey-tri,
  .ey-tri-r {
    width: 42px !important;
    transition: none;
  }

  .page-hero h1 em {
    animation: none;
    background-position: 35% center;
  }

  .result-wrap.reveal > *,
  .result-wrap.reveal .offer-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}
